₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,002 members, 8,419,883 topics. Date: Thursday, 04 June 2026 at 06:16 AM

Toggle theme

Efelico's Posts

Nairaland ForumEfelico's ProfileEfelico's Posts

1 2 3 4 (of 4 pages)

ProgrammingRe: My Take On CHATGPT On The Web Development World From The Aspect Of A Junior Dev by efelico: 10:54pm On Mar 24, 2023
airsaylongcome:
We've integrated ChatGPT into our workflow and our COO has encouraged everyone to learn how to get the best from ChatGPT. I have no fear for it whatsoever.
Sir. Do you see your organization employing more hands anytime soon with this innovation?
ProgrammingRe: My Take On CHATGPT On The Web Development World From The Aspect Of A Junior Dev by efelico: 2:05pm On Mar 24, 2023
CHATGPT will affect the job market especially for developer who do not know their onions . Application can now be built in half it expected duration that means fewer hands may be needed to complete a job, lesser number of intern or junior developer might be needed to join a project and this implies that companies may start employing lesser hands. Fullstack developer can now write both frontend and backend more quickly.

Imagine describing your database structure and what you expect and Chatgpt automatically writes a query to connect to the database, develop both frontend and backend with just telling it what to do or modify.

Once a tool is automated, it means manual method of using it will be reduces. Code writing is now much easier or some how becoming automated.
However every exit is also an entrance and I know CHATGPT will also create more opportunities in other sector
Christianity EtcRe: God Did Not Create Good And Evil by efelico: 11:01pm On Mar 21, 2023
sonmvayina:
So where was God before he said "let there be light"...?

Was it not inside darkness...


You still have much to learn..
What are you insinuating
Christianity EtcRe: God Did Not Create Good And Evil by efelico: 7:40pm On Mar 21, 2023
jaephoenix:
Are you saying Yahweh changed? grin
God cannot change. He is the same yesterday, today and forevermore. If the bible was to be written in this present age. I am sure some writer will attribute COVID death to be from God. Attributing evil to God has always being a misconception from man. God is light and in Him there is no darkness.
Christianity EtcRe: God Did Not Create Good And Evil by efelico: 11:05am On Mar 21, 2023
jaephoenix:
Did you read that isaiah verse, or are you suffering the same sickness as theists on this thread?
You cannot describe the character of God from the old testament scriptures alone or the life of any prophet.Evil happened but should not be attributed to God.
When the bible says God is light and in him there is no darkness that's tell us He cannot do evil. In the scripture both good and evil where attributed to God but we see that corrected in the life of Christ. Jesus never did evil because it was not the nature of God. Anything Jesus did not do, cannot do the same is applicable to God.
When Jesus disciples asked him to call down fire just like how Elijah did he rebuke them saying that spirit is not what they possess. But you know people still call down destruction today when Christ even corrected that notion on the disciple. Evil happen because Satan is the father of it and it spread through the works of men
Christianity EtcRe: God Did Not Create Good And Evil by efelico: 6:53pm On Mar 20, 2023
Of a truth God did not create evil, cannot create evil and will not do evil. The creation account tells us that everything God created was good.
And God saw every thing that he had made, and, behold, it was very good. And the evening and the morning were the sixth day. Genesis 1: 31
This then is the message which we have heard of him, and declare unto you, that God is light, and in him is no darkness at all 1 John 1:5
Every good and perfect gift is from above, coming down from the Father of the heavenly lights, who does not change like shifting shadows.
James 1: 17
Let no man say when he is tempted, I am tempted of God: for God cannot be tempted with evil, neither tempteth he any man
James 1:13
Evil and everything associated it comes from the devil. That's the reason why He sent His Son Jesus Christ to destroy the works of Satan.
Some key things about the bible is that, for anything to be seen as the bible standard it must be an agreement between the old testament and the new testament. And when the new testament is in direct opposition with the old testament, that tells you that there was a knowledge gap somewhere which was corrected
ProgrammingRe: Help Facebook Hack by efelico(op): 10:23am On Jan 05, 2023
GREATIGBOMAN:
The password reset code for Facebook is usually the same.

Use a VPN.

Set your location to Romania.


If you're on PC


u can use ZenMate free chrome extension VPN.



Just pray the hacker hasn't setup 2FA on your behalf. grin
Thank you. Have recovered the account
ProgrammingHelp Facebook Hack by efelico(op): 7:26am On Jan 02, 2023
One of my Facebook account has been hacked but I still have access to the recovery email. The trickery part is that when I try the password reset option. I keep getting the same code or a link that redirects to a page with an invalid response. Both the password reset code and invalid link responses are coming from Facebook. What I don't understand is how is it possible for me to be getting the same password reset code. Please any idea on d way forward TV
Jobs/VacanciesRe: How Can I Handle This Particular Situation In My Place Of Work by efelico: 1:47pm On Sep 29, 2022
OvertheTop:
let's be realistic when things are moving towards....sack or No sack, you can't count on a colleague as a witness....they will deny u
I wonder why people keep saying OP has a colleague as witness. Person wey fit deny am when mata cast
ProgrammingRe: How The Interview Went. by efelico: 4:19pm On Sep 28, 2022
Please I will like to know the cause of Cors error and how did you solve it. I also want to know whether you wrote the pagination logic from scratch or you use a package for it
ProgrammingRe: Leetcode Help by efelico(op): 3:13am On Aug 24, 2022
chukwuebuka65:
Regarding your second question, I don’t think the input is an array. It should be a linked list containing those values. Even though it was written as an array, it just a way to give you an example of an input and the expected output. Even from the name “mergeList”, you should know the function expects a linked list.
Thank you
ProgrammingLeetcode Help by efelico(op):
var mergeTwoLists = function(list1, list2) {
let l1,l2,l3,head3;
[l1, l2, head3] = [list1, list2, new ListNode(0)];
l3 = head3;
while(l1 && l2) {
if( l1.val >= l2.val ) {
l3.next = l2;
l2 = l2.next;
}else {
l3.next = l1;
l1 = l1.next;
}
l3 = l3.next;
}
l3.next = l1 || l2;
return head3.next;
};
mergeTwoLists([1,2,4],[1,3,4]);


I noticed this javascript code produces "Uncaught ReferenceError: ListNode is not defined at mergeTwoLists " which is coming from the third line when I try running it on my text editor but run's well on leetcode javascript editor
1. Please I want to know why the code is working on leetcode text editor and not working on the usual text editor.
2. Please I also need explanation on how l1.val, l2.val,l3.next,l2.next and l1.next properties are not returning un define. Because to the best of my understanding regular array does not have those value

ProgrammingRe: Laravel Nairaland Corner -- Post Any Laravel Code Issues, Get Solution For FREE by efelico: 5:03pm On Aug 13, 2022
Someone should help me explain what are drivers in Laravel
ProgrammingRemote Jobs by efelico(op): 6:19pm On Jul 20, 2022
ProgrammingRe: Laravel Relationship Problem by efelico(op): 3:16pm On Jun 15, 2022
Karleb:
You can watch a short video on how many to many relationship works. Your question already has a detailed answer.
tollyboy5:
Your question has been answered from that link already
Thank you for reaching out.
ProgrammingLaravel Relationship Problem by efelico(op): 2:22am On Jun 15, 2022
Please someone should help me with the laravel relationship problem. Here is the problem description

https://stackoverflow.com/questions/72624835/select-other-data-in-another-table-using-eloquent
Nairaland GeneralRe: What Have You Lived To Regret The Rest Of Your Life by efelico: 9:51pm On May 30, 2022
Abba114:
b.sc geography
It depend on the direction you are looking from. I know geographers making millions. Although some courses have edge over others but one thing I know being a graduate itself is something one day it will pay off, only if you know which direction to look into. There are jobs that requires BSC in any field but requires less than 6 month certification in analysis or other area. You can look into those area. Who no go no see
ProgrammingRe: Can You Answer This Question. by efelico: 7:15pm On May 23, 2022
Turn on meter connection
Christianity EtcA Sinner Receives Christ Life But Does Not Gives His Life by efelico(op): 6:07pm On May 17, 2022
Ephesians 2: 1 And you He made alive, who were dead in trespasses and sins.
Colossians 2:13 When you were dead in your sins and in the uncircumcision of your flesh, God made you alive with Christ. He forgave us all our sins

A sinner is spiritually death. He has no life. The life of a believer is in Jesus. The moment a man believes in Christ, he receives the life of Christ. John 3:16 ...that whosoever believes in him shall not perish but have everlasting life.

In as much as if it looks as if the sinner is the one giving he his actually receiving. You can actually give your life for the gospel but it not at the point of salvation. People have died for the gospel, some have given their time, resources, family and other things for the gospel. When you come to the point when you can give your all for the sake of Christ then you know you have given your life to Christ
ProgrammingRe: Prove Me Wrong If You Can! by efelico: 9:15am On May 13, 2022
Okay
ProgrammingHelp With Javascript Merge Sort by efelico(op): 4:02am On May 06, 2022
Please someone should help me explain how line 29-32 works. I don't understand how the recursive call is working

WebmastersHelp With Javascript Merge Sort by efelico(op): 3:56am On May 06, 2022
Please someone should help me explain how line 29-32 works. I don't understand how the recursive call is working

WebmastersRe: What Are The Advantages Of Federal Government Web Developer Job? by efelico: 6:52pm On Feb 05, 2022
yusluvad:
Please any web/app developer in OTA-OGUN STATE should quote me...
Boss I am a web developer around Ota Axis
ProgrammingRe: Please, I Need Solutions Urgently, All Files Extention Changed. by efelico: 1:39pm On Feb 03, 2022
It's obvious a virus. A good antivirus should fix it. But if at any point you feel like recovering your document download "Disk Drill" and try the different recovering option
ProgrammingRe: Php Dev Help by efelico: 1:34pm On Feb 03, 2022
ensure that all string values are quoted and integer values are not quoted
ProgrammingRe: Experienced Fullstack Developer, Dev Ops And Software Architects Are Needed by efelico: 3:12pm On Jan 19, 2022
afuye:
Software Architect/DevOps


JOB SUMMARY


234Code is a Pan African Software development company that builds full stack applications for international companies across the globe at affordable prices. We provide experienced engineering teams to deliver high-quality outcomes on software projects
-----------

Mode of Applications
• Send your C.V to careers@234code
• Indicate your name and the role you are applying for on the Subject of the mail
Boss. you may need to check the email address again. it's not a valid address
ProgrammingRe: Assist Us With An Android App by efelico: 9:59pm On Jan 14, 2022
niel63:
Haha no be lie... That's why I commented on this. There's one I did sha. They mentioned having a small budget as they are just starting.
$600 was a fair price. So I did it (With Wordpress Sha! Not from scratch).

https://christsremnants.org/

However, I never finish am ooo, as they are slow in getting me contents. Almost all the content, In-short all the content you see, na me generate am. wink I am quite religious too.

And there was one I did like 2 years back. The man was an old man... baba, na 40k (Naira) this man give me. All my ploy to deviate and not work on it at all failed. Do you know what this man told me after everything? He said I was expensive, and that his friend did his for 15k.

I weak ahn... Charlie... And that one was finer than this one up here ooo! So you can imagine. The thing expired and host company deleted it. He came back to me, nna, I run ooo
Nice one
ProgrammingRe: How Much Programming Knowledge Can I Amass In 3 Months? by efelico: 7:39pm On Jan 03, 2022
tensazangetsu20:
Data structures and algorithms and systems design are some of the most difficult things in the world of programming.

Let's say one month to really grab a programming language. Another one month to learn the basic data structures. Another one month to practice the basic data structures which is like over 10 of them
. Please what are the basic data structure and algorithm you think a beginner should know
ProgrammingRe: Please Help With This Javascript Code by efelico: 8:55pm On Jan 01, 2022
TinubuFirstBorn:
const profile = {
name: "Michael",
level: 100,
birthYear: 2003,
calcAge() {
let age = 2022 - this.birthYear;
return age;
},
};

console.log(profile.calcAge());
@ OP this is what you need. In addition to that you are getting undefine because age is a local variable. Variables declared within a JavaScript function, become LOCAL to the function. They can only be accessed from within the function. Read more on local and global scope
ProgrammingRe: Full Stack Developer Needed! Paid, Remote by efelico: 3:26pm On Nov 06, 2021
Atleast you should have added the required skill
ProgrammingRe: Hello Nairalanders Please Review My React Restaurant Website... by efelico: 9:38am On Oct 15, 2021
Bigshoe2028:
Because of the asynchronous natural of js and js runs in a single thread

200 people using a service that is waiting to write something to db and other functions that runs regardless of others waiting ur website will be slow ,

It has fix but other languages can do it out of box

Php and python and a lot of others

But I know that soon js will solve it coz js on server is still growing
.

Thank you
ProgrammingRe: Hello Nairalanders Please Review My React Restaurant Website... by efelico: 1:33am On Oct 15, 2021
Bigshoe2028:
First cpu intense web apps JavaScript is not the right choice , padding and margin work on them , the css marquee effect was cool
Boss can you please why JavaScript is not a right choice for CPU intense web app. Also what are should someone use instead of JavaScript

1 2 3 4 (of 4 pages)