Пікірлер
@CaldaasBrunoo
@CaldaasBrunoo 3 күн бұрын
An idea for the next video after the part 2: pump fun bundler and launch script. Continue with these amazing videos man 👊
@codeandplay
@codeandplay 3 күн бұрын
I have a few crypto videos in the pipeline. One is about sniper bot for new pump fun tokens.
@TheGyOpY
@TheGyOpY 3 күн бұрын
Yo amazing vid, can you do one for collecting all the data of a wallet? i would like to see when new trade is done by a wallet
@codeandplay
@codeandplay 3 күн бұрын
Sure! I will do it in one of my future tutorials.
@ammarsayyadi6622
@ammarsayyadi6622 5 күн бұрын
Hi, i tried your code but it didnot work and i recieved the following error Operation Failed: Error: 410 Gone: {"jsonrpc":"2.0","error":{"code": 410, "message":"The RPC call or parameters have been disabled"}, "id": "c056b3eb-a2ad-465b-b3a5-a9265b92cfd9" } at ClientBrowser.callServer (C:\solana\memebot ode_modules\@solana\web3.js\lib\index.cjs.js:5091:18) at process.processTicksAndRejections (node:internal/process/task_queues:95:5) do you know ho to fix it?
@marziegharehkhani
@marziegharehkhani 6 күн бұрын
I can not find rpc url. Can you help me?
@codeandplay
@codeandplay 6 күн бұрын
You can get a free one Helius www.helius.dev/ which I recommend. Or use the Solana free one api.mainnet-beta.solana.com
@textopisec3151
@textopisec3151 9 күн бұрын
Make pump fun bundler script❤
@JiaAnugrahsari
@JiaAnugrahsari 11 күн бұрын
Great tutorial! can't wait for PART 2.
@Impester01
@Impester01 12 күн бұрын
Hey i am setting up Ngrok an even after 5-10 minutes its not establishing any connection. latency shows 36ms is that an issue?
@codeandplay
@codeandplay 12 күн бұрын
Make sure the ngrok url is correct in the Helius webhook setup. Every time you run ngrok the url changes.
@Impester01
@Impester01 11 күн бұрын
i did that still not luck!
@codeandplay
@codeandplay 11 күн бұрын
Sorry that you are having trouble. Can you see in the ngrok terminal if anything appears? If it doesn't then something may be blocking it. Could be a firewall or so. Or maybe Helius is having issues. Sorry, that's the only thing I can think of.
@Impester01
@Impester01 11 күн бұрын
bro it worked thank you so much!🙏🏽
@iulians4417
@iulians4417 13 күн бұрын
Thanks for the tutorial! Looking forward to the next videos. In my case, I had this error using your code: `Error fetching program accounts: Error: Cannot create a string longer than 0x1fffffe8 characters` To fix it, I made some changes for the getProgramAccounts function: const getProgramAccounts = async (baseMint, quoteMint, connection) => { const layout = LIQUIDITY_STATE_LAYOUT_V4; // Add configuration for pagination and filtering const config = { filters: [ { dataSize: layout.span }, ], encoding: 'jsonParsed', commitment: 'confirmed', limit: 10 }; try { // Only search for exact match of baseMint and quoteMint combination const accounts = await connection.getProgramAccounts(new PublicKey(CONFIG.RAYDIUM_V4_PROGRAM_ID), { ...config, filters: [ ...config.filters, { memcmp: { offset: layout.offsetOf('baseMint'), bytes: new PublicKey(baseMint).toBase58() } }, { memcmp: { offset: layout.offsetOf('quoteMint'), bytes: new PublicKey(quoteMint).toBase58() } } ] }); return accounts; } catch (error) { console.error('Error fetching program accounts:', error); throw error; } } Hope it helps other people that might face the same issue.
@rafaelyu-x2t
@rafaelyu-x2t 13 күн бұрын
Where can we get the script? Thank you!
@codeandplay
@codeandplay 13 күн бұрын
Hi! I shared the script in my Patreon page.
@starkead
@starkead 15 күн бұрын
thanks, can't wait for others parts :)
@omidd-e9j
@omidd-e9j 16 күн бұрын
thank you , did u use websocket and helius free plan (real time approach) for this?
@mayanksehrawat3634
@mayanksehrawat3634 Ай бұрын
Hey! It was really cool to see this implementation! Though, I did not understand why we did most of the things but it was still something that helped to understand that this is not as hard as I thought it would be. I would love to connect with you to discuss more about it!! Thanks for uploading :)
@michealmicheal8609
@michealmicheal8609 Ай бұрын
can we get the address for pumpfun tokens?
@codeandplay
@codeandplay Ай бұрын
I will be doing a video on it soon. Thank you
@nazarmaksymenko
@nazarmaksymenko 2 ай бұрын
Hello, is the software for sale? I want to buy, if you can help me install it so that it works without failures If yes, write to me in private messages
@jaydengreenham3224
@jaydengreenham3224 3 ай бұрын
Hey! Just have a few questions. Can I DM you directly?
@codeandplay
@codeandplay 3 ай бұрын
Please join my Patreon
@zabalata01
@zabalata01 3 ай бұрын
Bro you forget to upload the script..of .js plz can upload it..only needed file.thnx
@codeandplay
@codeandplay 3 ай бұрын
I shared the code on my Patreon page. Thanks
@zabalata01
@zabalata01 3 ай бұрын
@codeandplay thnx
@MarkSummers-i6t
@MarkSummers-i6t 3 ай бұрын
How do you create a WiFi tiny robot
@spwcca
@spwcca 5 ай бұрын
Performance wise I use "!(num&1)" to determine if a number is even. Especially in long loops it makes a huge difference, cause division (what happens with modulo) is generally very slow for computers. So checking if the last bit of a number is 1 is the fastest way to determine if the whole number is even or odd. Bitwise check is at least 2-5 times faster than checking with modulo. Especially with bigger numbers the difference increases.
@codeandplay
@codeandplay 5 ай бұрын
What game would you wanna see that is powered by GameNGen?
@学点东西-i5t
@学点东西-i5t 5 ай бұрын
How to set up filtering of transmission message with SOL greater than 30
@codeandplay
@codeandplay 5 ай бұрын
Hey There! you can add a simple condition around line 19 on the pool-sniper.js file. something like this. if (parseInt(tokenData2.tokenAmount) < 30) { return; }
@godod8
@godod8 2 ай бұрын
​@@codeandplay good tutorial, PLS can you create tutorial video, how to create sniper bot Solana with python? Thnks
@homekraftt
@homekraftt 5 ай бұрын
hi bro When using <Environment preset="city" />, the 3D model fails to display, and an error is encountered.
@codeandplay
@codeandplay 5 ай бұрын
Make sure to import Environment from react-three/drei on top.
@homekraftt
@homekraftt 5 ай бұрын
awesome
@codeandplay
@codeandplay 6 ай бұрын
Hey everyone! Sorry for being MIA since my last video-I had some personal matters to attend to. But now I'm back and ready to release more videos on a weekly basis. I've also been diving into crypto lately, so I thought, why not share some tutorials on that? For example, I'll show you how to create sniping bots and similar projects, just like in this video. Let me know your thoughts! Thanks, everyone!
@chandrayulius4149
@chandrayulius4149 10 ай бұрын
how to set the hot spot location? like to move the hotspot to another place in the img
@codeandplay
@codeandplay 10 ай бұрын
check this video time stamp - kzbin.info/www/bejne/rZO2YZSqid97mq8
@LloydIsom
@LloydIsom 10 ай бұрын
Why did you remove the code from the repo? and where did you get it from?
@codeandplay
@codeandplay 10 ай бұрын
code still exists in the repo - github.com/codeandplay/tutorials/tree/master/threejs-ai-texture/client
@moneyplayboy44
@moneyplayboy44 Жыл бұрын
Hi, Thanks for the video, I have some doubts in the pannelum-react, I am trying to render a panorama image using 'pannellum-react,' which is working fine on larger screens like laptops and tablets. However, some mobile devices are unable to view the image. The error message states: 'This panorama is too big for your device! It's 8192px wide, but your device only supports images up to 4096px wide. Try another device. (If you're the author, try scaling down the image).' Have you faced the same problem if so, whats the solution? you answer values more.
@codeandplay
@codeandplay Жыл бұрын
Hi! I usually disable the panorama effect for mobile. However, if you want to apply it, you need to scale the image down by around 50% for the mobile viewport. Additionally, you will need to perform some image swapping once the viewport changes.
@moneyplayboy44
@moneyplayboy44 Жыл бұрын
@@codeandplay but scaling down the image will impact on the quality for the end customer, which I don't wanna do it. Is there any other alternative?
@3dprogramer
@3dprogramer Жыл бұрын
Nice work 🎉
@PremonitionsWoW
@PremonitionsWoW Жыл бұрын
Hey! Love the video, how would you import this onto WordPress using Elementor?
@swastikpatel234
@swastikpatel234 Жыл бұрын
wow , awesome work dude
@techywebdev
@techywebdev Жыл бұрын
great stuff
@AnkitKumarjha-kz9dw
@AnkitKumarjha-kz9dw Жыл бұрын
why don't share you this code you writen on yotube video
@codeandplay
@codeandplay Жыл бұрын
The full code is located in my GitHub repository - github.com/codeandplay/tutorials/tree/master/threejs-third-person-shooter
@AnkitKumarjha-kz9dw
@AnkitKumarjha-kz9dw Жыл бұрын
Hey @codeandplay, thank you so much for your helpful videos! I've recently started learning Three.js, and I must admit, it's been quite frustrating due to the lack of documentation and code-sharing from many KZbinrs. However, your content has been a lifesaver and has helped me immensely in my learning journey. Keep up the great work! 🙌🎉
@AnkitKumarjha-kz9dw
@AnkitKumarjha-kz9dw Жыл бұрын
Hey @codeandplay, great content! If I ever need your help, is there a way I can reach out to you on social media or through DMs?
@art_by_zoya
@art_by_zoya Жыл бұрын
when did you make follow-cam?
@codeandplay
@codeandplay Жыл бұрын
please check here kzbin.info/www/bejne/rKSkhoWGfrR1nKs
@doyimega
@doyimega Жыл бұрын
i want to integrate this ai avatar in my react app could you please help me with articles and videos
@codeandplay
@codeandplay Жыл бұрын
Let me know how would you use Dalle-E 2 in your project.
@ernestkv
@ernestkv Жыл бұрын
i can't deploy it, could you make a tutorial how to deploy it?
@codeandplay
@codeandplay Жыл бұрын
Sorry you having trouble deploying. I will definitely do a deployment tutorial in the near future. In the mean time use => npm run build in the terminal to build your project. It will create a build folder with the compiled project.
@victormurcio8845
@victormurcio8845 Жыл бұрын
This is an excelent exercise, but it only appears in my pc, but not in my mobile, how can i do to see this project in my cellphone?
@codeandplay
@codeandplay Жыл бұрын
I'm glad you like the tutorial. Unfortunately, this was made for desktop view. For mobile, you will need to tweak the styling and stuff.
@EricMalek
@EricMalek Жыл бұрын
There is no reason why this channel shouldn't be blowing up! There is some amazing material here. Thank you for providing this.
@soyelchicodelanus8471
@soyelchicodelanus8471 Жыл бұрын
wow
@nomanqureshi1357
@nomanqureshi1357 Жыл бұрын
can you make a script like Blockade
@codeandplay
@codeandplay Жыл бұрын
I hope you enjoyed this tutorial. Let me know what you like me to cover in the video
@jorjoobear
@jorjoobear Жыл бұрын
My mind just get blown, literally...
@ajmalshah1813
@ajmalshah1813 Жыл бұрын
Thanks Bro.. ❤
@ncu-official
@ncu-official Жыл бұрын
great content, can you make video on how to use a open world environment with three js?
@TuganoBrasil
@TuganoBrasil Жыл бұрын
Continue with the good work!
@relaxingandmeditationwithj9909
@relaxingandmeditationwithj9909 Жыл бұрын
This is amazing! Very nice and clean work with relatively few lines of code! I got motivated, and I started my own project. I have one question: I have encountered a problem, when I am importing the 3D model It is not colored. How can I add the texture files in the original downloaded file to keep the actual color of the 3D model itself? Or is there any other way in Three Js to set the color of the 3D object?
@codeandplay
@codeandplay Жыл бұрын
Thank you so much for you comment. The easiest way to add textures is to have the model in GLTF format not FBX. For FBX you have to check if the geometry of your meshes have a uv buffer attribute (example: discourse.threejs.org/t/how-to-apply-texture-to-a-fbx-model/14769)
@Dh0om
@Dh0om Жыл бұрын
for me on mobile the menu text is not positioned right
@Dh0om
@Dh0om Жыл бұрын
where to get fbx files ?
@codeandplay
@codeandplay Жыл бұрын
Hi there - the fbx is located in the public folder -> github.com/roshbo/codeAndPlay/tree/main/portfolio-react-three-tailwind/public/assets
@Grinwa
@Grinwa Жыл бұрын
What's the name of the website u used to generate the audio
@codeandplay
@codeandplay Жыл бұрын
Hi! I used speechelo (speechelo.com). Thanks
@Grinwa
@Grinwa Жыл бұрын
@@codeandplay thanks
@codeandplay
@codeandplay Жыл бұрын
Let me know if you are using MidJourney or any other AI tools for your web development.
@galaxiapirata2348
@galaxiapirata2348 Жыл бұрын
Thanks for the tutorials mate, i have a doubt... how can i add a background video to this project only using Javascript?
@codeandplay
@codeandplay Жыл бұрын
There are many ways you can do this. One way is to have the <video> tag in the html as background and update the src files via JavaScript.