Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,143,424 members, 7,781,235 topics. Date: Friday, 29 March 2024 at 11:05 AM

Developers In The House, Show Us What You're Currently Working On - Programming (2) - Nairaland

Nairaland Forum / Science/Technology / Programming / Developers In The House, Show Us What You're Currently Working On (7432 Views)

Am Launching A Side Project. This Might Be What You're Looking For! / Working On Client NFT Project (documented On Nl) / How Well-paid Are Software Developers In Nigeria? (2) (3) (4)

(1) (2) (3) (4) (Reply) (Go Down)

Re: Developers In The House, Show Us What You're Currently Working On by Ikennablue(m): 11:36pm On Feb 26, 2019
Talkwisdom:
I am working on motion detection app,where a user gets notification and also capture a view of an intruder that passed through spy cameras mounted at home..
This should work anywhere the user is...to be completed year end.
please what programming language are you using?
Re: Developers In The House, Show Us What You're Currently Working On by Talkwisdom(m): 11:32am On Feb 27, 2019
Ikennablue:
please what programming language are you using?
I am using C
Re: Developers In The House, Show Us What You're Currently Working On by ugwum007(m): 7:17am On Feb 28, 2019
Currently working on an app to control WiFi enabled wall socket (eSocket). The eSocket will soon be available.

2 Likes

Re: Developers In The House, Show Us What You're Currently Working On by ugwum007(m): 7:19am On Feb 28, 2019
Also working on depression prediction app. The AI model developed with Python have already hosted on heroku.

2 Likes

Re: Developers In The House, Show Us What You're Currently Working On by Obagoblog(m): 6:50pm On Feb 28, 2019
Guys, please I need your advice and guidance..

I'm very good in html and Css but I'm having problem with javascript. I don't seem to get it even with loads of video tutorial from YouTube and udemy. Maybe, it's because this is a real programming language unlike html and Css that happens to be an ordinary markup language and styling sheet...

Please, is it possible to learn this stuff myself coupled with the fact that I'm still in school with some crazy assignments and test ready for me?

Or I should look for money and go learn it at an ICT centre?

Note: I'm a computer science student currently being taught C++ as one of our courses but my lecturer is only teaching us what to write to pass her test and exams.
Re: Developers In The House, Show Us What You're Currently Working On by MountainView: 3:52am On Mar 01, 2019
Obagoblog:
Guys, please I need your advice and guidance..

I'm very good in html and Css but I'm having problem with javascript. I don't seem to get it even with loads of video tutorial from YouTube and udemy. Maybe, it's because this is a real programming language unlike html and Css that happens to be an ordinary markup language and styling sheet...

Please, is it possible to learn this stuff myself coupled with the fact that I'm still in school with some crazy assignments and test ready for me?

Or I should look for money and go learn it at an ICT centre?

Note: I'm a computer science student currently being taught C++ as one of our courses but my lecturer is only teaching us what to write to pass her test and exams.

Hi, I'd first of all tell you that i really understand your plight, cos I've been there before.
But, i just want to make one thing clear, "Everything that is worth it, life makes it hard to learn".


I'd now try to answer your question

JavaScript is a difficult language to learn esp for beginners, cos of the fact that most programmers (esp) web developers learn JavaScript as their first Programming language....Going to an I.C.T center believe me, will do you no good, Programming happens to be one of those skills that requires constant practice, You just need constant practice, again i must say that "Programming is not Computer Science"...Yeah, you heard me right...Programming is only a subset of Computer Science...Your lecturers are not paid to teach you Programming, they are paid to teach you "Computer Science"- teaches you how to solve computable problems using algorithms, and that is what Computer Science lecturers teach.

and again "crazy assignments and test" is not an excuse, I'm currently in my 300L as a Physics Student , I've been programming since 2015, i code like everyday.

2 Likes

Re: Developers In The House, Show Us What You're Currently Working On by Obagoblog(m): 6:24am On Mar 01, 2019
MountainView:


Hi, I'd first of all tell you that i really understand your plight, cos I've been there before.
But, i just want to make one thing clear, "Everything that is worth it, life makes it hard to learn".


I'd now try to answer your question

JavaScript is a difficult language to learn esp for beginners, cos of the fact that most programmers (esp) web developers learn JavaScript as their first Programming language....Going to an I.C.T center believe me, will do you no good, Programming happens to be one of those skills that requires constant practice, You just need constant practice, again i must say that "Programming is not Computer Science"...Yeah, you heard me right...Programming is only a subset of Computer Science...Your lecturers are not paid to teach you Programming, they are paid to teach you "Computer Science"- teaches you how to solve computable problems using algorithms, and that is what Computer Science lecturers teach.

and again "crazy assignments and test" is not an excuse, I'm currently in my 300L as a Physics Student , I've been programming since 2015, i code like everyday.

A million thanks to you sir... Talking about constant practice, should I stop learning from tutorials and start building real life projects with javascript from videos on YouTube just like someone advised me...


Another thing is, I already know the syntaxs, operators, and familiar with javascript methods and what they are used for, but writing it offhand myself to build something is a big issue...

How do I cope with this sir?

Note: I started learning javascript early January of this year.
Re: Developers In The House, Show Us What You're Currently Working On by MountainView: 1:44pm On Mar 02, 2019
Obagoblog:


A million thanks to you sir... Talking about constant practice, should I stop learning from tutorials and start building real life projects with javaScript from videos on YouTube just like someone advised me...


Another thing is, I already know the syntaxs, operators, and familiar with javascript methods and what they are used for, but writing it offhand myself to build something is a big issue...

How do I cope with this sir?

Note: I started learning javascript early January of this year.


learn the syntax first,
here are some of the important stuffs you should understand in JavaScript

1.variable declaration - (difference between "let" , "var" and "const" )
2.Operators - (also try to understand how the "tenary" operator work It's better than "if else" statements)
3.difference between double equals and triple equals (== && ===)
4.understand how the increment and decrement notation works ("++" and "--" )
5.understand the data types in JavaScript
6.Object declaration - (Object literal notation , Object factory , constructors , and classes)
7.Object methods
8."this" keyword- you must understand how the "this" keyword works in both normal functions and in es6 arrow functions
9.arrays - learn everything about arrays, this is very important (sort , pop , push , first class functions - (forEach , reduce , filter) e.t.c)
10 - DOM manipulation and events

just start from here, understand these concepts then you can move on to building some stuffs without backend e.g Calculator , to-do list e.t.c

1 Like 1 Share

Re: Developers In The House, Show Us What You're Currently Working On by Obagoblog(m): 11:24am On Mar 03, 2019
MountainView:



learn the syntax first,
here are some of the important stuffs you should understand in JavaScript

1.variable declaration - (difference between "let" , "var" and "const" )
2.Operators - (also try to understand how the "tenary" operator work It's better than "if else" statements)
3.difference between double equals and triple equals (== && ===)
4.understand how the increment and decrement notation works ("++" and "--" )
5.understand the data types in JavaScript
6.Object declaration - (Object literal notation , Object factory , constructors , and classes)
7.Object methods
8."this" keyword- you must understand how the "this" keyword works in both normal functions and in es6 arrow functions
9.arrays - learn everything about arrays, this is very important (sort , pop , push , first class functions - (forEach , reduce , filter) e.t.c)
10 - DOM manipulation and events

just start from here, understand these concepts then you can move on to building some stuffs without backend e.g Calculator , to-do list e.t.c



Thanks for taking out time to break it down for me
Re: Developers In The House, Show Us What You're Currently Working On by zubydave(m): 1:35pm On Mar 03, 2019
Angelawhite:


To answer your first question: I found it rather interesting. In my second year , we were introduced to a programming language: C++ and from there I started building my programming skills . You cannot talk about engineering without programming. Embedded systems are programmed . Your TV sets , your smart phones, telecommunication systems , laptops , (all which are electronic devices) etc cannot function without being programmed .

Third year I started learning assembly language (machine language) for programming microcontroller chips.

And after my graduation, I delved into android app development using java and in 2 months I was able to build my first app. My programming experience was relatively easy . I had a mathematics background and can write complex algorithms.

To answer your second question. Engineering is about designs. All designs need to be precise and calculated. You need a good background of maths to scale through
Story of my life
Re: Developers In The House, Show Us What You're Currently Working On by mesheal7: 9:14am On Mar 04, 2019
Hi Guys,

Don't intend to derail this thread, but I'm seeking a WordPress Technical Writer.

See more here https://www.nairaland.com/5058906/looking-wordpress-technical-writer-urgent
Re: Developers In The House, Show Us What You're Currently Working On by lewis512(m): 9:34am On Mar 04, 2019
Anyone willing to teach a beginnner how to code or better still be a UI/UX engineer, am far to been a computer programmer but am ready to learn ..Am an economist and I think the zeal is enough to learn and know it ...I reside in Ibadan
Re: Developers In The House, Show Us What You're Currently Working On by Angelawhite(m): 8:15am On Mar 05, 2019
zubydave:

Story of my life
Sadists live short lives
Re: Developers In The House, Show Us What You're Currently Working On by Angelawhite(m): 2:49pm On Mar 08, 2019
MountainView , asalimp, Escalze, Vince77 , You said I should mention you when the app is ready. The official video is not out yet. Meanwhile, enjoy the video

https://www.youtube.com/watch?v=cG6ymAUn5_w

6 Likes 1 Share

Re: Developers In The House, Show Us What You're Currently Working On by Vince77(m): 11:28pm On Mar 08, 2019
Angelawhite:
MountainView , asalimp, Escalze, Vince77 , You said I should mention you when the app is ready. The official video is not out yet. Meanwhile, enjoy the video

https://www.youtube.com/watch?v=cG6ymAUn5_w

Just watched it. I'm impressed. Well done. Mention me again when it available for download.
Re: Developers In The House, Show Us What You're Currently Working On by Escalze(m): 6:19am On Mar 09, 2019
Angelawhite:
MountainView , asalimp, Escalze, Vince77 , You said I should mention you when the app is ready. The official video is not out yet. Meanwhile, enjoy the video

https://www.youtube.com/watch?v=cG6ymAUn5_w
Nice one. Is it available for download yet?

1 Like

Re: Developers In The House, Show Us What You're Currently Working On by ensodev(m): 5:41pm On Mar 09, 2019
Am currently working social media site using php the concept of this social media site is a little bit different from what we have around.

This site is actually one out of the three main projects i have for this year as have being working hard on building my own empire since last year.

the site will be lounch on 5th of may as we projected.

php might seems not to be the real language to use but with php 7 and lavarel in my possession am more than confident this will perform as expected.
Re: Developers In The House, Show Us What You're Currently Working On by Zepher528(f): 7:23pm On Mar 09, 2019
lewis512:
Anyone willing to teach a beginnner how to code or better still be a UI/UX engineer, am far to been a computer programmer but am ready to learn ..Am an economist and I think the zeal is enough to learn and know it ...I reside in Ibadan

Hi Lewis, Check out this thread on coding https://www.nairaland.com/4974588/web-design-web-development-mobile

1 Like

Re: Developers In The House, Show Us What You're Currently Working On by SapphireYj: 8:16pm On Mar 09, 2019
Working on a betting site. Still at the early stage though

Re: Developers In The House, Show Us What You're Currently Working On by Samcent: 8:40pm On Mar 16, 2019
ugwum007:
Also working on depression prediction app. The AI model developed with Python have already hosted on heroku.
Please, how or where do you get datasets for the AI model?

1 Like

Re: Developers In The House, Show Us What You're Currently Working On by dragnet: 7:35am On Mar 17, 2019
ugwum007:
Also working on depression prediction app. The AI model developed with Python have already hosted on heroku.

python based webapp on android? how did you achieve that?

1 Like

Re: Developers In The House, Show Us What You're Currently Working On by dragnet: 7:38am On Mar 17, 2019
Angelawhite:
MountainView , asalimp, Escalze, Vince77 , You said I should mention you when the app is ready. The official video is not out yet. Meanwhile, enjoy the video

https://www.youtube.com/watch?v=cG6ymAUn5_w
impressive, well done.

3 Likes

Re: Developers In The House, Show Us What You're Currently Working On by Angelawhite(m): 8:00am On Mar 17, 2019
dragnet:
impressive, well done.

Thank you !
Re: Developers In The House, Show Us What You're Currently Working On by Celebritydevelo: 9:51am On Mar 17, 2019
Working on a system where you can take screenshot of a website just by submitting the URL.

2 Likes

Re: Developers In The House, Show Us What You're Currently Working On by Celebritydevelo: 9:53am On Mar 17, 2019
Angelawhite:
I am working on a mobile app that allows you turn ON/OFF any device in your home

UPDATED GUYS

https://www.youtube.com/watch?v=cG6ymAUn5_w

I would like to have this setup in my room. Please let me know when you are done.
Re: Developers In The House, Show Us What You're Currently Working On by MountainView: 11:19am On Mar 17, 2019
abrahambest:
Online claims application

Can u please elaborate more?

1 Like

Re: Developers In The House, Show Us What You're Currently Working On by MountainView: 11:22am On Mar 17, 2019
Celebritydevelo:
Working on a system where you can take screenshot of a
website just by submitting the URL.

and for what purpose exactly?

1 Like

Re: Developers In The House, Show Us What You're Currently Working On by MountainView: 11:25am On Mar 17, 2019
Angelawhite:
MountainView , asalimp, Escalze, Vince77 , You said I should mention you when the app is ready. The official video is not out yet. Meanwhile, enjoy the video

https://www.youtube.com/watch?v=cG6ymAUn5_w

Can I use this app to control stuffs in my room??
Re: Developers In The House, Show Us What You're Currently Working On by Celebritydevelo: 12:47pm On Mar 17, 2019
MountainView:


and for what purpose exactly?

I'm building it for Twitter to be specific. You can take a tweet URL and turn it into a screenshot for sharing on Whatsapp & other media.

What do you think?
Re: Developers In The House, Show Us What You're Currently Working On by dragnet: 12:49pm On Mar 17, 2019
Celebritydevelo:
Working on a system where you can take screenshot of a website just by submitting the URL.

similar to creating a pdf of a webpage but just in image format?
Re: Developers In The House, Show Us What You're Currently Working On by Celebritydevelo: 12:55pm On Mar 17, 2019
dragnet:

similar to creating a pdf of a webpage but just in image format?

Yes, exactly.

What's your thought on this?
Re: Developers In The House, Show Us What You're Currently Working On by dragnet: 1:04pm On Mar 17, 2019
Celebritydevelo:


Yes, exactly.

What's your thought on this?

It is nice but sounds more like reinventing the wheel because I can easily take a screenshot of a webpage on my phone or snip on PC, so why use an app ? or are there other functionalities attached?
are you merely embarking on it to test some functions or you hope that the general public would use it?

2 Likes

(1) (2) (3) (4) (Reply)

If You Were Imprisoned In A Room For 3 Months, Had A Computer With Internet..... / Www.sunnewsonline.com Has Been Hijacked : Warning! / Blackberry Jde Download

(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. 92
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.