₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,331,079 members, 8,448,556 topics. Date: Monday, 20 July 2026 at 01:56 PM

Toggle theme

Devdev's Posts

Nairaland ForumDevdev's ProfileDevdev's Posts

1 2 3 4 5 6 7 8 (of 8 pages)

ProgrammingRe: Programmers How Can I Achieve This by devdev: 4:30pm On Apr 29, 2022
Rgade:
Your suggestion is very practical bro, and should work to a very large extent. Any other solution would require AI, and that’s a different topic altogether.
Thanks bro
ProgrammingRe: I Need Someone Who Can Develop A Crypto Website For Me by devdev: 3:45pm On Apr 29, 2022
Ufithelp:
Please link to your previous job
I can share those privately. This is a public forum and not advisable to share client jobs here
ProgrammingRe: I Need Someone Who Can Develop A Crypto Website For Me by devdev: 3:17pm On Apr 29, 2022
Ufithelp:
Good day
I need someone who can develop a very good crypto website for.

Please kindly drop your number and link to your previous job. Thank you
I will handle it. 08170077580
ProgrammingRe: Programmers How Can I Achieve This by devdev:
AllyPolly:
Thanks devdev. I have checked it out and it seems to be the perfect option for the task.
I checked online for proper video illustration on how to set it up but can't find any.

Can you please help with this? I could also pay a little for this to compensate your time. PLEASE.
Chat me 081
ProgrammingRe: Programmers How Can I Achieve This by devdev: 9:51pm On Apr 28, 2022
AllyPolly:
Thank you all for the reply,

Here is a scenario. A customer needs a particular product but he doesn't know the name of the product(so text search/tag might not work) but he has an image of the product.

I want the user to upload the image and the system then searches the database for most similar product image.
Good thing you clarified your request. You can use this service https://www.nyckel.com/image-similarity-search-api?gclid=CjwKCAjw9qiTBhBbEiwAp-GE0ce3Z8ZIznC4Y2ovQ-EsIcjfQxei3b_5gN14_XqZIrkCs8xprVpL5xoC8k0QAvD_BwE
ProgrammingRe: Programmers How Can I Achieve This by devdev: 8:55pm On Apr 28, 2022
Jayjayango:
Okay let's get technical here, for SEO you specifically tag an image with exactly what it is, for his application it doesn't have the plethora of sources Google has and he can't tag everything, if u search using Google lens it doesn't use tags mate, it uses recognition based on ML patterns so everyday their accuracy is ever increasing but that aside basically the application he is trying to build is not feasible the way he wants it unless of course he connects google lens to it I'm not even sure Google lens has an API but perhaps it might
You are getting his request wrong. At the moment he is developing. He is not asking to get related image from outside sources. He is asking to search his own database for related images, meaning if he has zero images in his database he will not display anything. He is only working with his own data. So gradually he will use the tag to keep building his database. The users uploading these images are the ones to tag them during upload. So no need of getting related images from google. And for the googles lens even the AI is not very accurate as i have used and got something completely different from what i used it for
ProgrammingRe: Programmers How Can I Achieve This by devdev: 7:49pm On Apr 28, 2022
Jayjayango:
No like what I'm saying is for example the user uploads the picture of a mango, first of all how will the system know which tag to give it? If the user manually puts the tag then what's the use of the image? Even if let's say u fix that then if the user uploads a banana with the tag food, mind you food isn't just banana, he might see a full course amala meal but then what's the relevance? A fundamentally flawed system I might say and the social media giants use it because that's a totally different case that doesn't need to be precise just simply Grouping things and even then I might post a dick and hashtag Vacation so...
Even when you search an image on google, google does not bring you images stored in thier database. It's gives you images indexed from websites and blogs and these search is related to the text SEOs of these websites and when you check you still find some unrelated images in that search. We all know there will surely be a flaw but it wont be at 100%. If you post a banana and you don't know banana is a fruit then it's funny. To assist a user, the OP can add suggested and custom tag for users to choose from. I see no need going the AI route for this simple task.
ProgrammingRe: Programmers How Can I Achieve This by devdev: 7:02pm On Apr 28, 2022
emetisuccess:
If searching for the name in the database, it will be very easy to do that, but searching for the actual image itself needs an AI related algorithm. If the later is the case, it's not possible with PHP. Thanks boss
He asked for similar images not exact images which tags will definitely work. Why would he need an AI just to search for similar uploads on his website
ProgrammingRe: Programmers How Can I Achieve This by devdev: 7:00pm On Apr 28, 2022
Jayjayango:
Your approach is good but it's not optimal and basically won't work
I gave two approaches and trust me the first one works too. Tech giants like facebook and instagram uses hashtags to associate related posts. Same as ecommerce platforms like jumia. The use of Tags and Categories works well. I see no reason why he should go spend millions just for a simple image upload on website. I only gave him the second solution as an option which to me is not necessary for a simple task as this.
ProgrammingRe: Programmers How Can I Achieve This by devdev: 5:25pm On Apr 28, 2022
AllyPolly:
Hello all,
Please I need help with a particular task that has been bothering me for a while.

It is about image search.

I want users to upload an image, the system will then search the database for the most similar images to the uploaded image. Then it outputs them. Similar to google lens.

Is this achievable in PHP, if not, how can I do this?

Thank you.
First and easy Solution. You can Tag the images while uploading. Example, while uploading a food image, you can tag it as FOOD. So when next a user uploads an image with similar Tag, you fetch other images with similar Tags.
Second solution is developing an image detection Ai.
ProgrammingRe: Help Understanding Axios by devdev: 1:55am On Apr 11, 2022
benBender:
Thanks boss for taking time to answer me.
Since I'm to use it on the client side, I require/import it but I'm getting an error that it's not define.

What I'm I doing wrong.
Ok so for template engine on Nodejs, you dont need axios. You just need to install EJS so you can communicate HTML and EXPRESS using <% %>
ProgrammingRe: Help Understanding Axios by devdev: 11:31pm On Apr 10, 2022
benBender:
I'm currently building a web app, the backend is built with node/express, my database is mongodb while I'm using a templating engine for the front-end (why??) .

The issue am having now is that I want to manipulate the DOM right before data is store in the database.

So I did some research and I found out I need to store my data in a database without reload the page which can be accomplished with axios library.

I having been searching for 3 days now on how to incorporate axios into my code, to say am confuse will be an understatement of the century.
Like I don't even know if I should use it on my server or client side.

Somebody, anybody please help??

@qtguru
@tensazangets20
@airsaylongcome
@DrLevi
@karleb
On your nodejs application, i believe you have something called routes, these routes are known as APIs... How you set up these routes determines how axios can interact with them. So you have options like POST, GET, PUT, DELET etc. On the axios side, for example you have a GET route, all you do is axios.get(api).then().catch().... In this case, Axios should be used on your frontend
ProgrammingRe: Need A Flutter Developer To Build A Tiktok Like App From Source Code Available by devdev: 6:24am On Apr 08, 2022
Melanin07:
Hey developers in the house,

Am in need of an engineer who can tweak and build a Tiktok like app from source code available already in flutter.

Just some minor customization though!

Please if you're interested, DM on WhatsApp fo us to get to know more about each other.

Budget: $1000
Payment in crypto

Contact details.

Zero seven zero six six four two eight Five three right


Thanks
Does the source code come with a backend? The backend is where the real job lies
ProgrammingPay With Airtime Balance by devdev(op): 7:41pm On Apr 04, 2022
Guys what is the api that allows users to pay for a service using their Airtime balance?
Betpawa uses it
CelebritiesUber Rider Experience by devdev(op): 9:01pm On Mar 14, 2022
Hi guys, share your experience as an uber rider with your passengers
ProgrammingRe: Help Needed With Fairmoney APP by devdev: 2:50pm On Mar 13, 2022
benodic:
Hello Everyone,
Since last year after I updated my Fairmoney App, it was no longer functional and was not opening again. I deleted it and tried downloading it again from play store but each time it keeps saying try again.
I even changed phones twice to see if it was from the phone and used a mifi connection all to no avail.
I contacted their customer service and have tried all they asked me to do without success.
Find attached what it shows each time I try downloading from the play store
I would really appreciate any help from the TECH guys in the house.
Thanks
Click the direct link below
https://play.google.com/store/apps/details?id=ng.com.fairmoney.fairmoney
ProgrammingRe: How Do I Pay For Apps On Google Play Store by devdev: 12:29pm On Mar 12, 2022
Sapeleboy911:
5 days ago.
This maybe due to the transaction limit law applied. Your best bet is to go open a DOM account at the bank so they give you a dollar card. This will help you in the long run and also cut off the $20 limit
ProgrammingRe: How Do I Pay For Apps On Google Play Store by devdev: 11:42am On Mar 12, 2022
Ekende:
How recent was this? I also tried using the barter app by flutterwave but it was rejected.
I use fcmb mastercard on appstore and it works. But with the recent law of $20 max per month, it may be hard to pay for stuffs on these stores even if your card is accepted
ProgrammingLooking For Vcs And Investors by devdev(op): 1:09am On Mar 09, 2022
Guys if you know any reliable VCs that is actively investing in startups, please post on this thread. Also individuals looking for startups to own an equity with can PM me.
Thanks
InvestmentLooking For Vcs, Investors by devdev(op): 5:35pm On Mar 08, 2022
Guys if you know any reliable VCs that is actively investing in startups, please post on this thread. Also individuals looking for startups to own an equity with can PM me.
Thanks
CrimeRe: Custom Detain 2 Trucks Filled With Petrol Kegs At Challenge, Ibadan by devdev: 7:41am On Mar 07, 2022
Vv
WebmastersIs Google Workspace Free? by devdev(op): 11:15pm On Feb 27, 2022
Guys what is the google workspace all about and is it absolutely free?
ProgrammingGoogle Workspace by devdev(op): 10:18pm On Feb 27, 2022
Guys what is the google workspace all about and is it absolutely free?
CelebritiesEnglish Movie Producers by devdev(op): 12:03am On Feb 21, 2022
If you are a movie producer and you have good films for cinema standard and you are interested in selling your movies, plz DM me ASAP.
WebmastersRe: Opportunity For PAID Volunteer Trainer As A Web Design Trainer by devdev: 12:29am On Jan 12, 2022
greymatter:
Do you have website design skills and are interested in training marginalized youths on website building? Training will take place in Surulere, Lagos State. It is an 8-week training program. Training will be done 3 times a week.

If you are interested, this opportunity is for you. A non-profit organization focused on empowering marginalized youths through technology is looking for a disciplined, dedicated, experienced and committed trainer, who is also a team player.

If you fit the description above, kindly send an email with your present CV to saveourneedy@gmail.com

Deadline: January 20th.

Training starts in February.

Welfare package- attractive.

Good luck!
.
CrimeRe: Suspected Armed Robber Set Ablaze In Ibadan by devdev: 12:02am On Dec 17, 2020
WebmastersRe: Web Pros I Need Help > How To Setup An Offline Website. by devdev: 11:04pm On Dec 01, 2020
Chukslar:
Free or the paid versions?
Free
WebmastersRe: Web Pros I Need Help > How To Setup An Offline Website. by devdev: 6:03am On Dec 01, 2020
Chukslar:
How can I host a fully functional website with ebook download capability 100% offline?

The server will be local on a laptop and someone can connect through wifi and browse it from another system.
Use ngrok to create a public url from your localhost and port.
ProgrammingRe: Help With Paystack by devdev: 8:29pm On Nov 30, 2020
femmix112:
Hello guys please how long does it take to set up paystack, it actually my first time adding it to a website. So i need your advice please.
It takes minutes

1 2 3 4 5 6 7 8 (of 8 pages)