9 Career Paths in Tech for 2023
10:54
3 Tips For Beginner Programmers
7:49
Пікірлер
@mattgarcia197
@mattgarcia197 5 күн бұрын
Thanks for this video! I had to adapt some code to work with a raspberry pi
@imdadcodes
@imdadcodes 4 күн бұрын
Nice, what did you build?
@mattgarcia197
@mattgarcia197 4 күн бұрын
@@imdadcodes i'm basically building the car thing on a Raspberry Pi
@lightzin
@lightzin 7 күн бұрын
Your video guides are really good. I'm trying to go in the opposite direction: getting a playlist from Spotify and converting it into a playlist in KZfaq. Is it possible to use the libraries and APIs in this video (specially the youtube tools) for that?
@imdadcodes
@imdadcodes 4 күн бұрын
Thank you. I’m sure it’s possible. Google/KZfaq APIs can be a bit more of a faff so I imagine the authentication might be a bit trickier. But check out the documentation 👍
@gameplay08088
@gameplay08088 16 күн бұрын
How to get claud 3 translation API?
@adamrajkotwala3846
@adamrajkotwala3846 22 күн бұрын
so i implemented this into my flask social media website, but i dont know how to create different instances for different users. basically, no matter what account i log into it is now logged into my spotify as well
@FallenJakarta
@FallenJakarta 23 күн бұрын
hai imdad, love your video! could you please share the code?
@killianharrois6919
@killianharrois6919 27 күн бұрын
Hi great video man, but when we get the spotify token, is it permanent for each account or only a temporary token ?
@zannypro4579
@zannypro4579 29 күн бұрын
"im gonna open this and clear that" and now im lost lmao
@tushizzle254
@tushizzle254 29 күн бұрын
How about if one wants to provide a txt or pdf related to a certain topic and make a webpage that one prompts on question related to the topic and gets answers related to the document the developer used in short no dropping your own document as a user
@2_Tech_00
@2_Tech_00 Ай бұрын
I was redirected to the Spotify login, my account was automatically showed up with correct link information. I accepted the terms, and the Spotify site gave me an error message(It just says Error) and provided a link to the support section.
@Jxlxl
@Jxlxl Ай бұрын
hey! im following the tutorial but i am kind of struggling i get a white page after logging in, could you share your code file w me so i can try to copy mpaste it please? thanks
@2_Tech_00
@2_Tech_00 Ай бұрын
hey bro i need help about this project. can you help me please
@bappysani
@bappysani Ай бұрын
Fixed code [in case code in the video does not work: import schedule import time import pyscreenshot as ImageGrab import os from datetime import datetime def take_screenshot(): print("------Taking screenshots------") # Remove problematic characters for file names image_name = f"screenshot-{datetime.now().strftime('%Y-%m-%d_%H-%M-%S')}.png" screenshot = ImageGrab.grab() # Ensure the directory exists directory = "./screenshots" if not os.path.exists(directory): os.makedirs(directory) filepath = os.path.join(directory, image_name) screenshot.save(filepath) print("------Screenshots Taken------") return filepath def main(): schedule.every(5).seconds.do(take_screenshot) while True: schedule.run_pending() time.sleep(1) if __name__ == '__main__': main()
@muralikrishnapopuri5705
@muralikrishnapopuri5705 Ай бұрын
only premium users can able to play songs ????????????broh answer me
@CamsolDatateam2
@CamsolDatateam2 Ай бұрын
Please is there any link to the code source? its difficult to follow with the image on the screen.
@CamsolDatateam2
@CamsolDatateam2 Ай бұрын
Thank you for the video. I want to do something similar. i have a dataset which I want the model to give me answers based on that file.
@kr7_635
@kr7_635 Ай бұрын
Who uses Pydroid
@mukesharan1945
@mukesharan1945 25 күн бұрын
You😂
@petrbalik6161
@petrbalik6161 Ай бұрын
I don't think you could have placed your camera any worse.
@say.xy_
@say.xy_ Ай бұрын
Hi there, I fall into really difficult and need ya help. So i have deployed my backend on ubuntu vm, and there when user go to spotify fo signup I'm getting this on my vm terminal: "GET /spotify/callback?code=AQE HTTP/1.1" 307 Temporary Redirect Enter the URL you were redirected to: It doesn't make sense for any user facing web app to manually enter url in terminal? It was not happening on my local server but only after deploying. Is there any lead to how to solve this, thankyou.
@yhbay
@yhbay Ай бұрын
Where is the code shown in this video ??
@josephomondi629
@josephomondi629 2 ай бұрын
great video, great tutorial
@ezenaguchinemerem4214
@ezenaguchinemerem4214 2 ай бұрын
Hello, please am working on a project that recommends a users favorite players using Spotipy. We intend to use the favorites artistes name, genre of music, geographic location and current trends. How do i suggest the best possible content to the user using these parameters. N/B: The user must not necessarily have a Spotify account.
@ezenaguchinemerem4214
@ezenaguchinemerem4214 2 ай бұрын
Am special😅😊
@MessyTimes
@MessyTimes 2 ай бұрын
But this does not "crack" a password. It uses a database of passwords and their associated hashes. That is not the same thing as "cracking" a password.
@daytonwickerd6212
@daytonwickerd6212 2 ай бұрын
In this Chunk of code: def home(): if not sp_Oauth.validate_token(cache_handler.get_cached_token()): auth_url = sp_Oauth.get_authorize_url() return redirect(auth_url) it is saying that "redirect" is undefined I think my code is exacly the same as your so far and I went all the way back through the tutorial. Do you have any idea what is wrong?
@selinamakinist5298
@selinamakinist5298 2 ай бұрын
u need to import it: from flask import Flask, request, redirect, session, url_for
@rabbikabuya7974
@rabbikabuya7974 2 ай бұрын
you are a legend✨✨✨✨
@aidanstone9417
@aidanstone9417 2 ай бұрын
could you please push this up to github?
@HenriqueSantAnna
@HenriqueSantAnna 2 ай бұрын
I enjoy it very much, Thank you
@vbilodid
@vbilodid 2 ай бұрын
Thanks for clear step by step instruction!
@wild_monte
@wild_monte 2 ай бұрын
Awesome. I not only loved the video but also the accuracy of the content and it's rate of success. I'd to ask for something. To do a tutorial on how to integrate that api into flutterflow apps.
@oliverjames6109
@oliverjames6109 2 ай бұрын
Fantastic video! Thank you very much. I'm trying to create a song guessing game and this has been invaluable getting the API working on my PC. Liked and subbed :)
@aisprint
@aisprint 2 ай бұрын
Great tutorial! Thanks! BTW, could I ask where is a link for system prompt text?
@imdadcodes
@imdadcodes 2 ай бұрын
Added now :)
@Can-zg8gs
@Can-zg8gs 2 ай бұрын
Great video! thank you so much! I wanted to ask, especially with large system promts that contain a lot of data. Isn't that system promt going to be reapeatedly inculdet in my token 'cost'? As far as I understand it, in a longer conversation, I'm going to need to resend all that data for each conversational turn while continuosly adding to the historic conversation? So if I want a AI--Assistant that has to regularily answer questions based on knowledge gathered from a large DataBase, will that be incedibly expensive?
@ahassan7270
@ahassan7270 2 ай бұрын
Thank you so much for this valuable information. You have an excellent way in delivering the idea.👏👏
@mimomimo-jq1te
@mimomimo-jq1te 2 ай бұрын
is anyone here in 2024..we know that the AI get bigger and bigger but what we will do..this is named future
@KazazrioStudios
@KazazrioStudios 20 күн бұрын
if your point is to say that AI will be able to hack complex company's and advanced websites with complex security I'm afraid your wrong and AI is not even close and probably will never be able to do complex tasks as it requires logical and human brains AI will take over a lot of jobs but will not completely replace them AI can only do simple stuff that are just code but code isn't just used for building games or websites logic kicks in as well
@mimomimo-jq1te
@mimomimo-jq1te 16 күн бұрын
@@KazazrioStudios i understand that but i said this for the pepole who are afraid from thz futur of tha AI. and the human brain is much bigeer than an AI
@NoixthyNoixthy
@NoixthyNoixthy 4 күн бұрын
a.i I will come back in 3 year
@pierrefagbohoun9132
@pierrefagbohoun9132 2 ай бұрын
it does not work because of the method encode which is not defined
@ComedyNSadExpress
@ComedyNSadExpress 2 ай бұрын
hey, you steal my name 😂
@yusufexe9058
@yusufexe9058 2 ай бұрын
Thank you My Brother
@spiff796
@spiff796 3 ай бұрын
ETHICAL ETHICAL!!!!!
@xufeike383
@xufeike383 3 ай бұрын
Thank you, i like this video!
@deepikasingh3122
@deepikasingh3122 3 ай бұрын
Where did you get the method current_user_playlist()
@DELOwav
@DELOwav 3 ай бұрын
you made a video some time ago on retrieving the Currently Playing Track with Spotify. However, it seems the documentation has since been updated, and I'm struggling to make any progress. I've been tirelessly attempting to develop a program that can display album art along with its name in a 500x500px square. My goal is to integrate this feature with my NZXT Kraken for displaying Spotify content. Could you either create a new video tutorial or offer assistance in solving this?
@DELOwav
@DELOwav 3 ай бұрын
my main problem is that I need it to be a website but I don't really know much about coding and I don't know anything about how get code onto the web. I have a google website I would like to integrate this with as well and that uses html.
@MrKriselt
@MrKriselt 3 ай бұрын
okay so i just spent literal hours following every step you made, and it just doesn't work? i also don't get the download the credentials part? everything in your tutorial is easy to follow and understand, but that part is just? maybe its because I am not an experienced coder but still :(
@lo-fillama
@lo-fillama 3 ай бұрын
is it possible to just link a couple of songs to a video game level to play continously on a loop while you play the level in the game app?
@drdr-yy1by
@drdr-yy1by 3 ай бұрын
helpful video, what would you put in the assistant prompt if you didnt want a json response? Say you upload a csv and then wanted a general question response about the data?
@imdadcodes
@imdadcodes 3 ай бұрын
You can leave it blank
@jakematheson1467
@jakematheson1467 3 ай бұрын
trying to get access token, so confused. Can you give any help?
@andrewjensen2538
@andrewjensen2538 3 ай бұрын
Great tutorial! What do you have your terminal running in this? Is it the mac equivalent of powershell or command prompt? Or do you have it running python? New to VSCode so sorry if it is an obvious question.
@imdadcodes
@imdadcodes 3 ай бұрын
Thanks! I’m not sure I understand the question but I’ll try to describe my setup. I’m using the integrated terminal in VSCode. But really this is just using the underlying bash shell (similar to command prompt). So Terminal is the app on Mac that uses this shell too. Now I have topped up my bash shell to use zsh as this gives some nice autocomplete functionality. These changes will reflect on any application that provides a shell window (VSCode, Terminal).
@endies824
@endies824 3 ай бұрын
Hello, I'm running VS Code on Windows and am running into an error when I try to run the source .env command in the terminal. I am not sure if you are running on Mac/Linux and that is causing a difference or if I missed a step. Any guidance would be greatly appreciated!
@imdadcodes
@imdadcodes 3 ай бұрын
Use `set` www3.ntu.edu.sg/home/ehchua/programming/howto/Environment_Variables.html
@endies824
@endies824 3 ай бұрын
@@imdadcodes Thank you. I was able to get it to run!
@Ethanthe1st
@Ethanthe1st 3 ай бұрын
This was super helpful, thanks! Do you have the github link for this code?