|
Career › Re: How He Processed More Than 600k A Day After Learning This by Maskyy(m): 11:39am On Jul 28, 2020 |
Hello we need to chat |
Career › Re: Yougov- Survey That Pays by Maskyy(m): 12:42pm On Jul 23, 2020 |
Can you clarify more on what is needed to get clarify |
Programming › Re: I Need Your Advise/help by Maskyy(m): 9:01pm On Jul 20, 2020 |
remigiusizunna: The site is not opening No training right now. But for mentorship, you can reach me on Whatsapp |
Programming › Re: What Made You Pick Interest In Programming by Maskyy(m): 8:26pm On Jul 19, 2020 |
Lampert505: Okay boss. Can I get your WhatsApp digit sire. Check my signature here for my digit |
Programming › Re: What Made You Pick Interest In Programming by Maskyy(m): 7:06am On Jul 14, 2020 |
Lampert505: Hi boss. I followed you up on this. I've been learning to code on w3school and sololearn... Dunno if there's any WhatsApp group to follow to enhance learning it fast and accurately? I can guide you but not training ooo |
Programming › Re: MATLAB Enthusiasts Come In. by Maskyy(m): 7:04am On Jul 14, 2020 |
Zabiboy:
Where did you download your crack version from... I want to install it on a fresh system and continue my projects
I bought the disk |
Programming › Re: What Made You Pick Interest In Programming by Maskyy(m): 6:33pm On Jul 02, 2020 |
marshalcarter: can you teach me please If you'll pay, beep me on WhatsApp. My digit is on my monicker |
Programming › Re: How To Make My HTML Work Go Online? by Maskyy(m): 4:34pm On Jun 29, 2020 |
tensazangetsu20: Open an account on GitHub. Create a new repository. Upload your files. Commit to master branch. Head to settings and then scroll down you will see GitHub pages select the master branch. You will get a link to view your site. This is everything correct. If you can't grab this simple illustration. Go on youtube and watch a video on how to create a GitHub account, upload your local files to a repository and create a GitHub page. |
Programming › Re: How do i Start Programming by Maskyy(m): 4:28pm On Jun 29, 2020 |
clarkmos15: Please guys i want to start programming, we are supposed to start programming next semester but because of coronavirus school is on hold.
what softwares do i need?
seun lalasticlala nobody Just start from anywhere. But let Google be your guide in case you don't have a personal mentor. |
Programming › Re: Do I Need A Degree In Computer Science To Go Into Web Development? by Maskyy(m): 4:27pm On Jun 29, 2020 |
NO |
Programming › Re: Where Can I Learn Programming In Anambra State by Maskyy(m): 4:18pm On Jun 29, 2020 |
PAT4HOT: Please I want to start learning programming, web development for a start, who or where can I learn in Anambra State, Awka and it's environs to be precise.
Thanks. I started training for newbies this week on web development. Beep me on WhatsApp if you want to enroll. Check my digit on my signature. |
Programming › Re: Any Good Site To Download Free Logos ??pls Hep Me Programmers!!!! by Maskyy(m): 4:14pm On Jun 29, 2020 |
Freepiks has lots of logos. Or pay to design you one. And if you ever consider this, beep me on WhatsApp |
Programming › Re: I Need Help With My Javascript Training by Maskyy(m): 4:00pm On Jun 29, 2020 |
squash47: That website is misleading me. Chat me up on WhatsApp. Check my signature for my digit but those sites are helpful |
Programming › Re: . by Maskyy(m): 3:54pm On Jun 29, 2020 |
midehill: Hello
I need a tutor who can teach me how to rank better on google.
The tutor must have a blog he is running or working with.
I need someone who can teach me how to do some great things on my blog also
Regards Chat him up on WhatsApp 0806 584 5092 goodness. He's good in Seo. |
Programming › Re: I Need Help With My Javascript Training by Maskyy(m): 3:46pm On Jun 29, 2020 |
Use w3schools to learn accordingly. Or use freecodecamp |
Programming › Re: What Made You Pick Interest In Programming by Maskyy(m): 3:41pm On Jun 29, 2020 |
marshalcarter: Hello programmers... please I need to ask here cos Google isn't helping me at all.... What programming language should i study if i wanna open a blog/forum/website?? Google no dey help me atal PHP , HTML, CSS, WordPress |
Programming › Re: You Can Do This Too by Maskyy(op): 5:33pm On Jun 26, 2020 |
Thanks to contributors and ghost readers |
Programming › Re: You Can Do This Too by Maskyy(op): 1:22pm On Jun 26, 2020 |
modash: yes 11 gives an output of two you can try it in your chrome console Yea, part of code is not visible, maybe due to the use of Nl wrap[code]. Thanks for the contribution again |
Programming › Re: You Can Do This Too by Maskyy(op): 8:38am On Jun 26, 2020 |
modash:
function addDigits(n){ if(n < 10){ return n; } const sum = n.toString().split('').map(Number).reduce((acc,next) => acc + next); return addDigits(sum); }
What if the value is 11 and it output 1,1. How will your code make it 1+1 which should output 2? And thanks for the contribution |
Programming › Re: You Can Do This Too by Maskyy(op): 3:28pm On Jun 25, 2020 |
What's your solution so far? Coder2Client Taofeekdboy |
Programming › Re: You Can Do This Too by Maskyy(op): 1:30pm On Jun 24, 2020 |
Let's play around with this too. Googling is allowed but copy paste of solution is not welcomed. Good luck.
Given n, take the sum of the digits of n. If that value has more than one digit, continue reducing in this way until a single-digit number is produced. This is only applicable to the natural numbers. Example below.
16 --> 1 + 6 = 7
942 --> 9 + 4 + 2 = 15 --> 1 + 5 = 6
132189 --> 1 + 3 + 2 + 1 + 8 + 9 = 24 --> 2 + 4 = 6
493193 --> 4 + 9 + 3 + 1 + 9 + 3 = 29 --> 2 + 9 = 11 --> 1 + 1 = 2 |
Programming › Re: You Can Do This Too by Maskyy(op): 6:44pm On Jun 23, 2020 |
. |
Programming › Re: You Can Do This Too by Maskyy(op): 6:24pm On Jun 23, 2020 |
Thanks for the comments and feedbacks. More are coming. Happy coding. |
Programming › Re: You Can Do This Too by Maskyy(op): 6:17pm On Jun 23, 2020 |
This is my solution too // for the current year 2020 let y = new Date() let cY = y.getFullYear() 1. people.map(data =>{ return (`${cY - parseInt(data.DOB.substr(-4))`); }) 2. people.sort((a,b)=>{ let r = cY - parseint(a.DOB.substr(-4)), s = cY - parseInt(b.DOB.substr(-4)); return r-s; }).map(data=>{ console.log(`${data.firstName} ${data.lastName}, ${cY - parseInt(data.DOB.substr(-4))}`) }) |
Programming › Re: You Can Do This Too by Maskyy(op): 3:51pm On Jun 23, 2020 |
|
Programming › Re: You Can Do This Too by Maskyy(op): 3:51pm On Jun 23, 2020 |
Taofeekdboy: OP, this is the only method i can come up with as i do not want to use third party library for the date time.
function parseDate(input) { var parts = input.match(/(\d+)/g); return new Date(parts[2], parts[1]-1, parts[0]); }
const people = [ {firstName: 'Sam', lastName: 'Hughes', DOB: '07/07/1978'}, {firstName: 'Terri', lastName: 'Bishop', DOB: '07/04/1989'}, {firstName: 'Jar', lastName: 'Burke', DOB: '11/01/1985'}, {firstName: 'Julio', lastName: 'Miller', DOB: '12/02/1975'}, {firstName: 'Chester', lastName: 'Flores', DOB: '15/03/1988'}, {firstName: 'Madison', lastName: 'Marshall', DOB: '22/09/1980'}, {firstName: 'Gabriella', lastName: 'Steward', DOB: '26/08/1990'}, {firstName: 'Ava', lastName: 'Pena', DOB: '02/11/1986'}, ] people.map(user => { const minutes = 1000 * 60; const hours = minutes * 60; const days = hours * 24; const years = days * 365; const tody = Date.parse(new Date) const today = Date.parse(parseDate(user.DOB)) const current = tody - today console.log(Math.round(current/years)) })
const sortedList = people.sort((a, b) => { return parseDate(a.DOB).getFullYear() < parseDate(b.DOB).getFullYear() ? -1 : 1 }) console.log(sortedList) Wow . pls can I see your result screenshot. |
Programming › Re: How Should I Learn Javascript by Maskyy(m): 3:29pm On Jun 23, 2020 |
RemiAbdulSamad: tnx boss. so you suggest I learn data structure and algorithm before learning javascript You learn along because data structure and algorithm are a whole course but are inline with programming. So to grab the concept, learn along with whatever language you are into. |
Programming › Re: How Should I Learn Javascript by Maskyy(m): 5:58am On Jun 23, 2020 |
I don't like this culture of one way of learning. You can learn Js in any way. Be it video, ebook, podcast. I learned js and most of the web part by studying ebook, practicing, and checking other people's code. Hence, this made it a bit easier for me when I read neat documentation. I watch videos when things go out of hand but I still prefer ebook. Choose your style of learning.
You can not finish learning a language. You only need to know the basics and google others later. So stop thinking of when you will master a language like a boss.
Above all is data structure and problem-solving. And this should be the first thing to know. How do you break down problems you've not tackled before? How do you explain an array, loop, data list, and object to yourself? Then you can use the right tool called programming language to solve your breakdowns. |
Programming › Re: You Can Do This Too by Maskyy(op): 5:40am On Jun 23, 2020 |
The above helps to understand JSON and how to work with one when using API. |
Programming › You Can Do This Too by Maskyy(op): 5:32am On Jun 23, 2020 |
Let's play a bit with algorithm and problem-solving. Your comment is a contribution even if you can't attempt it.
const people = [ {firstName: 'Sam', lastName: 'Hughes', DOB: '07/07/1978'}, {firstName: 'Terri', lastName: 'Bishop', DOB: '07/04/1989'}, {firstName: 'Jar', lastName: 'Burke', DOB: '11/01/1985'}, {firstName: 'Julio', lastName: 'Miller', DOB: '12/02/1975'}, {firstName: 'Chester', lastName: 'Flores', DOB: '15/03/1988'}, {firstName: 'Madison', lastName: 'Marshall', DOB: '22/09/1980'}, {firstName: 'Gabriella', lastName: 'Steward', DOB: '26/08/1990'}, {firstName: 'Ava', lastName: 'Pena', DOB: '02/11/1986'}, ]
Using an array method solve the following.
1. What's the age of each person in the array. 2. Get the list of the people in the array ordered from youngest to oldest.
Happy coding and learning. |
Investment › Re: Invest In Yourself by Maskyy(op): 11:44am On Jun 20, 2020 |
Take a chance of learning web development. Follow the form link above. It will start on Monday |