Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,153,041 members, 7,818,086 topics. Date: Sunday, 05 May 2024 at 07:25 AM

Stankelz's Posts

Nairaland Forum / Stankelz's Profile / Stankelz's Posts

(1) (2) (3) (4) (of 4 pages)

Programming / Re: Game Dev by stankelz: 10:59pm On Jan 14
tollyboy5:

I am thinking of creating a web gambling game. Yes i am thinking of money not passion this time. Planning on using threeJs
I'm interested- if it's something you'll need another hand. I work with Threejs and R3f.
Programming / Re: Fetch Data From An API And Display In Flatlist In React Native by stankelz: 8:55pm On Dec 15, 2023
kemi72:

Yeah, I get. I'm not always online myself. If you can send your email so I can send instructions on how to set it up.
stannz88@gmail.com
Programming / Re: Instead Of Wasting Your Time Learning Nonsense Type Script, Learn Python by stankelz: 11:50am On Nov 28, 2023
[quote author=LikeAking post=127206170][/quote]I would rather encourage people to learn TypeScript after learning JavaScript, as TypeScript is essentially JavaScript with type safety. Clients may specifically request TypeScript for projects, whether it's in React, Angular, Three.js, R3f, etc. While advising picking additional languages is valuable, suggesting to abandon TypeScript in favor of learning other languages is misguided.
Programming / Re: Instead Of Wasting Your Time Learning Nonsense Type Script, Learn Python by stankelz: 7:26am On Nov 28, 2023
While I appreciate the encouragement to learn Python, I believe that dismissing TypeScript as 'nonsense' is a bit misleading, especially for developers whose core language is JavaScript. TypeScript, as a strongly typed language built on JavaScript, is rapidly becoming an industry standard. I strongly recommend anyone working with JavaScript to consider learning TypeScript before exploring other languages.

Speaking from my experience, JavaScript is not limited to just React and building blog apps. As someone whose primary language is JavaScript, I ventured into TypeScript, React, Three.js, and React-Three-Fiber, leaning towards the creative development side. I started coding around March 2022, nothing was forth-coming post-learning React, I didn't get discouraged. Instead, I picked-up Three.js, and my first programming gig was creating a 3D configurator editor for a USA client and that was because i learnt threeJs(upskilling is crucial).

Heading into 2024, I have plans for WebXR, VR, and AR, knowing that React also supports the WebXR API. Planning and upskilling in your core stack, while exploring other languages when necessary, is crucial. The tech industry is diverse, and JavaScript offers much more than simple to-do list apps. The key lies in continuous learning and upskilling to stay relevant.

Rather than jumping between languages, it's valuable to define your niche, focus on upskilling in your core stack, and explore other languages as needed. I plan on picking-up either python or C#, Knowing multiple languages is undoubtedly important in the ever-evolving tech landscape, however let's be guided in the way to dish out advices.

1 Like

Programming / Re: Fetch Data From An API And Display In Flatlist In React Native by stankelz: 8:40am On Nov 20, 2023
kemi72:

Hello bro. How is it going. Have you been able to resolve this.
Sorry I'm not always online
hey bro sorry I've been working on a clients project so I've not been online as much myself. No, I haven't resolved this. To completely install Android studio is a problem, I gave up. I tried using Expo Go app to for development ,when I try to scan the QR code it crashes. Like this is really frustrating and hindering my learning process. I set a specific timeframe to learn React-native because I want to Learn and start creating AR experience for mobile

Please can you guide me on how to install Android Studio 🙏
Programming / Re: Fetch Data From An API And Display In Flatlist In React Native by stankelz: 10:48am On Oct 19, 2023
kemi72:
The FlatList component is an effective way to display items in a scrollable list view. We can fetch data from an API and display in FlatList in React Native. It is a useful alternative to ScrollViews, especially when dealing with large data sets.

Flat lists, has the following features:

Fully cross-platform.
Optional horizontal mode.
Configurable viewability callbacks.
Header support.
Footer support.
Separator support.
Pull to Refresh.
Scroll loading.
ScrollToIndex support.
Multiple column support.
In this article, we shall see how we can fetch data from an endpoint and display the data using FlatList in React Native.

So, I will assume that you already know how to create a new React Native application. If you’re just getting started, you can check out the article on creating a new React Native project here.

Here’s what a new React Native application should look like:

We are going to be fetching data from the Cat Facts API. So we will write our React Native code as follows:

fetchItem() {
requestAnimationFrame(() =>
fetch(`https://catfact.ninja/breeds`, {
method: 'GET',
})
.then(response => response.json())
.then(responseJson => {
console.warn(responseJson);
})
.catch(error => {
{
alert(error)
}
}),
);
}

componentDidMount(){
this.fetchItem()
}
Let’s explain what’s happening here.

Here, we’re calling the endpoint https://catfact.ninja/breeds and logging the response to at least confirm that we’re even getting a response. We’re then calling that method in our componentDidMount()

Here’s the response from the call
Read more https://codeflarelimited.com/blog/fetch-data-from-an-api-and-display-in-flatlist-in-react-native/
greetings bro, do you work with react-native ? I'm having having trouble setting up Android studio for simulation. I've been on this for more than 3 days now. Any tips that can help me ?
Programming / Re: Please I Need Help To Install React Native by stankelz: 10:35am On Oct 19, 2023
Mine is Android studio for a simulated device. I can't get it to work for days now
Programming / Re: Interactive Scrollable Page With Configurator by stankelz: 10:06am On Oct 19, 2023
Davidcorny:
Looks good bro.
Thanks man
Programming / React-native Developer's Opinion Needed by stankelz: 6:05am On Oct 19, 2023
Is there anyone here who works with React Native? Please, if you do, could you please indicate? I'd like to get your opinion on something. Please
Programming / Interactive Scrollable Page With Configurator by stankelz: 4:51pm On Oct 18, 2023
This is an interactive page with configurator.

use PC, I'll make it mobile responsive in a bit.

#Blender #React #Three.js #R3f #gsap

classic-pen[vercel[app

Replace the two square brackets [ with dot .

cc tensazangetsu20 airsaylongcome qtguru manoftheyear greatigboman devmek truthCoder Davidcorny Codedboy95 peterincredible richebony Naijatask ANormalHuman

2 Likes

Programming / Re: Immersive 3D Art Gallery (Three.js) by stankelz: 9:50am On Oct 02, 2023
richebony:


So you paid the $100 fee? Because I haven't been able to access a free upload. If you did ..Kudos
There's no free upload.

I really needed the course, fortunately one Italian dev gifted me the course.

1 Like

Programming / Re: Immersive 3D Art Gallery (Three.js) by stankelz: 2:45pm On Sep 30, 2023
Naijatask:


I believe it should be a course by Bruno Simmons. But I may be wrong though
yeah, that's correct. Arguably the best ThreeJs course out there
Programming / Re: Immersive 3D Art Gallery (Three.js) by stankelz: 2:42pm On Sep 30, 2023
richebony:
This is really nice .Hope u dont mind my asking , whats the name of the course ?
Thanks man.

Threejs Journey by Bruno Simon

1 Like

Programming / Re: Immersive 3D Art Gallery (Three.js) by stankelz: 2:16pm On Sep 26, 2023
Thanks so much man. Of course what you mentioned can be achieved in web. I'll keep working to improve it. "Capability to see other players in the gallery" is multiplayer and I have that in mind. Thanks for the suggestions, I appreciate.

1 Like

Programming / Re: Immersive 3D Art Gallery (Three.js) by stankelz: 8:19pm On Sep 25, 2023
Thanks bro
Programming / Re: Immersive 3D Art Gallery (Three.js) by stankelz: 2:33pm On Sep 25, 2023
DyingFetus:
How person fit access am abi you just screen shot wetin you no know
Read the post, you'll find the link
Programming / Re: Immersive 3D Art Gallery (Three.js) by stankelz: 2:31pm On Sep 25, 2023
tensazangetsu20:
This is very very good.
Thanks tensa
Programming / Re: Immersive 3D Art Gallery (Three.js) by stankelz: 2:30pm On Sep 25, 2023
truthCoder:
Nice.

Its immersive and i love the project. Thumbs up.
Thanks man. I appreciate
Programming / Re: Immersive 3D Art Gallery (Three.js) by stankelz: 11:09am On Sep 25, 2023
.
Programming / Immersive 3D Art Gallery (Three.js) by stankelz: 10:53am On Sep 25, 2023
Hey fam, I'm excited to share the project I've been working on, my first project after completing ThreeJs course—a 3D interactive art gallery.

users can navigate a third-person experience, having control over a player character. The player can approach any art painting within the gallery, which triggers a pop-up upon interaction, provides info about the selected artwork. Users can also click on any art painting to get a closer view.

It's still a work in progress so things are not yet perfect like collision in wall edges and staircase are not yet accurate, and further optimization is needed. Some areas within the scene experience FPS drops, affecting the smoothness of character movement.

Further development plans includes- VR compatibility and potential to have users to upload their own paintings. I'll love to see your feedbacks and reviews.
PS: not yet optimized for mobile view. Use PC

#React #Three.js #R3f #Blender

3d-art-gallary[vercel[app

Replace the two square brackets [ with dot .

cc tensazangetsu20 airsaylongcome qtguru manoftheyear greatigboman devmek truthcoder Davidcorny Codedboy95 peterincredible

4 Likes 1 Share

Programming / Re: How Are These Websites made? by stankelz: 5:57pm On Sep 07, 2023
peterincredible:
are you using it because I started learning three js and the library is mad men and will be easier to learn if you have previous knowledge of any 3d library like(blender,Maya,cinema 3d) etc
hey bro, hope you’re doing great? How have your ThreeJs Journey been ?
Programming / Re: Companies Keep Blasting Me Emails Daily On Indeed To Apply To Work For Them by stankelz: 8:28am On Apr 19, 2023
stannz88@gmail.com
Programming / Rate This Newly Deployed Real Estate Website by stankelz: 11:25am On Mar 14, 2023
I have successfully deployed the MERN app I've been working on, a web-based real estate platform that allows users to conveniently buy and sell properties, and also offers building painting services for users to easily request and hire professional painters. With its user-friendly interface and comprehensive tools, navigating the real estate market has never been easier, and users can achieve their desired outcomes quickly.

The platform comes with a range of functionalities that enhance the user experience. For instance, admins can perform CRUD (create, read, update, delete) operations for properties, blog posts, and offers. They can also add users and grant admin rights. Users can write reviews, and as an admin, you have the ability to choose which reviews should be displayed on the website. You can favorite reviews that you want to display, but you cannot edit honest reviews made by users. This feature allows you to curate the reviews and present the best user experience possible.

To simplify the process of creating content and keeping users engaged, I used OpenAI's Text-Davinci-003 model to generate blog posts with ease. With this feature, admins can write a prompt and receive a well-written blog post, ensuring that the website is always up-to-date with fresh and relevant content. In addition, I used the model for AI editing on the create offer page, where admins can click "AI Edit" button to enhance the offer description and make it more captivating.

Another impressive feature of the app is the ability for admins to send emails directly from within the platform. This feature not only simplifies the process of replying to messages but also enables admins to send newsletters to subscribers with ease. To achieve this, I used Nodemailer, a powerful library that makes sending emails from Node.js applications incredibly easy. With Nodemailer, we can send plain text and HTML messages, attach files, and even embed inline images in our emails.
For state management, I utilized the combination of React Context and useReducer. This approach enables easy sharing of data across components and simplifies the state management process.
Overall, the MERN app is a comprehensive and powerful tool that streamlines the real estate market and provides a range of functionalities that make buying and selling properties a breeze. I am confident that this app will be of great benefit to users and admins alike.

Here is the link https://realsplash.cyclic.app/

You can send me a DM so that I can provide you with login credentials to access the admin dashboard. If you notice any bugs, kindly let me know via DM so that I can get them fixed promptly.

cc tensazangetsu20 airsaylongcome qtguru manoftheyear greatigboman devmek truthcoder Davidcorny Codedboy95

1 Like 1 Share

Programming / Re: Please Fellow Devs Help by stankelz: 8:49pm On Feb 14, 2023
Qinglong:

Downloadly.net.

1. Open the relevant course on the website and you will see the download links for each file.

2. What I do is to copy the link address of any file I want to download with right click, then I paste it into this software called Free Download Manager. I believe you can download it on downloadly.net as well.

3. After I download it, I simply open it with WinRAR and extract to a specific folder (my Videos folder).

And that's it.
Thank you so much bro
Programming / Re: Please Fellow Devs Help by stankelz: 12:32pm On Feb 14, 2023
Qinglong:
You can download Udemy courses from downloadly.net and unzip with WinRAR. I guess from Jonas Schmedtmann; there's some extra details in his CSS courses that I personally like.

Combine with w3schools or a book tho.
bro please can you give me detailed guide on how to download courses from downloadly to my pc. I need to download it tonight. Is it downloadly.net or downloadly.ir? Steps how to go about it please

1 Like

Programming / Re: Please Fellow Devs Help by stankelz: 12:29pm On Feb 14, 2023
Zubech:

How about Jonas Schmedtmann, is he also a good tutor? Cause I have started downloading it from downloadly.net....
bro please can you give me detailed guide on how to download courses from downloadly to my pc. I need to download it tonight. Is it downloadly.net or downloadly.ir? Steps how to go about it please
Programming / Re: How To Be A Software Engineer In 2023. by stankelz: 10:32pm On Jan 08, 2023
Melanin07:
For those who wants to get into software engineering in 2023, I think this is what you've been looking for.

This is purely my opinions with opinions of others from my research.

1. The reason most people see programming and coding as been hard is not because they are hard, it because you need to learn something called COMPUTATIONAL THINKING.

This is the ability to transform problems into code. There's nothing wrong with you seeing Java or C programming as hard, the thing is you need to develop your brain more on computational thinking.

2. The hard truth is in software development, no one cares if you graduated from MIT or national open university of Nigeria or from CodingDojo bootcamp or you are a software engineer from being self taught...your pay is basically going to bethe same. But having a CS degree gives you more prestige. But be warned, this is a Zero sum game ( status game).

Infact currently, Standford university open source their whole courses and books for their BSC degree, NOUN has all their BSC degree course and textbooks online for everyone including University of the people.
If you want to know what they teach in universities in BSC computer science, everything is now online for you.


3. I asked Paul Graham, Founder of Y combinator (for those who knows YC) if it's necessary to have a CS degree as a software engineer. His answer was " No, you don't but be very good in programming".

4. When learning how to code, learn to build projects not just learning how to code. Learn how to use Git & GitHub. Go there, read people's code, build projects they built but twist it. If someone built a weather app, build a cryptocurrency price analytics using API ( in this way, you will learn how to work with APIs...that's the goal...not learning how to build a weather app)

5. Learn one language deeply and be very good in it. Don't be a jack of all trades. Be known for something. For your first language, I will advise you 100% for Python and 80% for JavaScript.

Don't choose any other languages.
After 1 year of working as a developer, go back and learn C and C++.

6. Research the job market before choosing what to learn. We have over 20 million software developers and only like 0.1% have seen a code in crypto or Blockchain. And we have less than 6,000 Blockchain developers.

Scarcity increases value. This less than 6000 Blockchain are mostly hired by two companies. There's so much shortage of Blockchain developers in the world... Blockchain developers even with less than 6mnth experience are paid higher than software engineers with 10 years experience.

If you want to be a Blockchain developer, go and learn Python, JavaScript and solidity.

This is the pathway.

7. Don't learn to code so you can seek Employment at Google. Look for startups. They pay higher than FANGS. And they are easier to get jobs in.

They don't care about degrees. They only care if you can do the job.
Infact it very easy to get a $300K/yr with a startup than at big companies like Amazon, Facebook.

8. Buy an apple MacBook. Don't ask me why.

9. Learn to network on developers communities and on Twitter spaces.

10. Learn to Leetcode early. You may never use those data structures and algorithms but you will always work where you need to optimize code

11. Learn to read programming ebooks. It was from books I learnt Object oriented programming. Books are far better than videos.

12. Learn to code for the money.

Yes you heard me, money should be what is motivating you when you learn to code. Cos sometimes you might feel like giving up.

Remember that when you learn to code and get a big salary, it can change your family situation, your situation.

That money factor will keep motivating you when you feel like giving up.

I will give more tips later...let me go and sleep
13. Sleep well.

Learn to sleep. It when you are refreshed your brain can work well and learn well


hey bro, greetings. I sent you a mail but you didn’t reply. Please I’m looking to dive into blockchain/web3 , can you recommend any platform or resources for that. Have you heard of Alchemy University?
Programming / Re: Why Does My Solution Keep Failing The Second Test? (C++) by stankelz: 9:38am On Nov 19, 2022
Nah all of una fit afford that leetcode premium so?
How una dey do am Abeg?

I’m almost done with Grokking algo like tensa adviced , however I need a platform to practice but leetcode is not free. All I’ve been doing for some months now is codewars but I need to jump into leetcode. Is there something I’m missing, are there other platforms like leetcode where I can practice DSA ?
Programming / Re: Working On Client NFT Project (documented On Nl) by stankelz: 10:50pm On Nov 02, 2022
Sleekcode:
So i will be posting my progress working on this clients NFT project.

We are a team of 6 in this project.

This website doesn't have many pages

I will be working on the frontend and also helping out on the backend.

This is supposed to be a fun thread where people come, learn, then i learn from you too.


If u come with violence.


I will ignore u.


But if i reply u, i will give u double.

will be documenting from first code till when deployed on live server.

Yes, my client and team are ok with this thread grin

snippet from Figma below.

hey sleek, hwfar bro. Sent you a mail yesterday, you’re yet to reply. U no dey reply mails?
Politics / Re: Anambra People, Please Help Make Sense Of This 2023 Election by stankelz: 10:14pm On Nov 02, 2022
Lindner:


A section of my post says "this is part of my own research". I thank you for your suggestion but I've enough online already. As you know, there are tons of false info and propaganda online these days. Same strategy the "Sai Babsla" menace thrived on in 2015. So, it's a combination of online plus direct enquiries of first hand info and common sense.

Who better to ask than the people who lived, worked and experienced his administration as a Governor.
Hey bro. Hope you’re good man? I sent you mails but you haven’t replied. What’s popping, would like to chat with you Abeg, need to inquire about something
Politics / Re: Anambra People, Please Help Make Sense Of This 2023 Election by stankelz: 10:14pm On Nov 02, 2022
Lindner:


Hey bro. Hope you’re good man? I sent you mails but you haven’t replied. What’s popping, would like to chat with you Abeg, need to inquire about something
A section of my post says "this is part of my own research". I thank you for your suggestion but I've enough online already. As you know, there are tons of false info and propaganda online these days. Same strategy the "Sai Babsla" menace thrived on in 2015. So, it's a combination of online plus direct enquiries of first hand info and common sense.

Who better to ask than the people who lived, worked and experienced his administration as a Governor.
Webmasters / Re: 3 Hot Udemy Courses For Grab, 100% Off, Hurry Up!!! by stankelz: 7:44pm On Sep 06, 2022
Please bro I need those courses, especially the React course.

(1) (2) (3) (4) (of 4 pages)

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