Thank you for publishing this! Hoping for some guidance: My wallet on OKX has some Tether USDT, and I know the seedphrase: -clean- -party- -soccer- -advance- -audit- -clean- -evil- -finish -tonight- -involve- -whip- -action-. What’s the best way can I go about sending them to Coinbase Exchange?
@AFY3217 күн бұрын
Nice
@swm7f1379 күн бұрын
Can work offline?
@TechVibes09912 күн бұрын
So with that when I send a couples of messages it will take long time to respond?
@DinhGiaBaoK18HCM14 күн бұрын
First of all, i want to give all of my heart for you because this is the content i am looking forward. With my scenario, i have applied as a Backend Intern, and my mission is to learn and doing a CLI Programme connect with S3 to help end user in backing up files, managing files just by basic cli command. With my situation, do you have any reccommendation for me to go the right direction for my real project. And i wonder if i could get advise from you about documentation as well. Thank you a lot. ❤❤❤
@kirillzlobin713518 күн бұрын
20:15 What does it mean - column keeps changing.... when new data added? or what?
@kirillzlobin713518 күн бұрын
So it gets value from DB with O(1)? Or it uses binary search O(logn)?
@MrNinethsense19 күн бұрын
which tool are you using in the video, its nicely presented.
@khanhtuongtranlam914121 күн бұрын
Thank you so much bro 😃
@annerwenji601824 күн бұрын
Very useful video, Thanks!
@mhmmdmustafayev821625 күн бұрын
Really great channel. Keep it up please
@PriyanshuDayal-q6n27 күн бұрын
bro please give teh code also
@vivekdalsaniya9358Ай бұрын
Any specific reason why we have used Cassandra and not any other key-value db?
@pranavch17Ай бұрын
Concise Video. Thank you!
@ashwinurewar5006Ай бұрын
how does threshold distance based filtering happen? can someone please explain?
@ChrismedMadzouАй бұрын
subscribed, you deserve more
@irtizahafizАй бұрын
Thank you so much!
@CruxfromAIАй бұрын
Hey, Wondering if you could share the code please?
@irtizahafizАй бұрын
Sure. Here you go: github.com/irtiza07/langchain-tutorials/tree/master/youtube_tuts/example_memory
@CruxfromAIАй бұрын
@ thanks …your explanation is to the point, crisp and clear.
@anuragdubey8294Ай бұрын
You explain really well. Thanks
@irtizahafizАй бұрын
Glad it was helpful!
@AyeshaSiddiki-c6vАй бұрын
Amazing
@irtizahafizАй бұрын
Thanks! Appreciate it.
@MansriMohamedAminАй бұрын
good job , where is the code ?
@irtizahafizАй бұрын
Here you go: github.com/irtiza07/langchain-tutorials/tree/master/youtube_tuts/example_memory
@PleinuCrellMadzouАй бұрын
A gold in system design explaination is here
@irtizahafizАй бұрын
Glad you found it helpful!
@PleinuCrellMadzouАй бұрын
A gold this introduction to system design
@irtizahafizАй бұрын
Thanks, appreciate it!
@say.xy_Ай бұрын
That's some Solid way to architect my code base; wondering would same flow going for langgraph's state config? And I appreciate the quality content you producing.
@irtizahafizАй бұрын
Great question! Unfortunately, I don't have much knowledge about LangGraph yet.
@say.xy_Ай бұрын
@@irtizahafiz no worries, im all here to wait for it while expanding knowledge of other areas through you. Keep it going 🦾
@wgllgwАй бұрын
Very good video series, I love that you took time to illustrate the different examples. I have a question.. instead of creating different tables with the cluster key of ascending/descending order.. is it possible for cassandra to do SQL like queries where SELECT * FROM simple_temp_v2 ORDER BY time_created ASC Cheers
@irtizahafizАй бұрын
You can, if time_created is part of the clustering key. Also, the sort order has to be the same as the cluster key order you gave when creating the table. Additionally, your query needs a WHERE clause on a partition key AFAIK. Otherwise, Cassandra won't be happy needing to sort across partitions.
@wgllgwАй бұрын
@@irtizahafiz oh yes.. thanks for pointing that out! would have been a very expensive query without including the partition key!
@priyantynurulfatimah6408Ай бұрын
Hi, so this is my JSON to create debezium connector but it returned error. Could you please help me troubleshoot? I am still learning and already look out for the solving but to no avail. Y^Y JSON: { "name": "source-transactions-connector", "config": { "connector.class": "io.debezium.connector.postgresql.PostgresConnector", "plugin.name": "pgoutput", "database.hostname": "postgres", "database.port": "5432", "database.user": "etl", "database.password": "demopass", "database.dbname": "dvdrental", "database.server.name": "postgres", "key.converter.schemas.enable": "false", "value.converter.schemas.enable": "false", "transforms": "unwrap", "transforms.unwrap.type": "io.debezium.transforms.ExtractNewRecordState", "key.converter": "org.apache.kafka.connect.json.JsonConverter", "value.converter": "org.apache.kafka.connect.json.JsonConverter", "table.include.list": "public.rental_streaming", "slot.name": "deb_rental_transaction_slot" } } ERROR: ERROR || Failed testing connection for jdbc:postgresql://postgres:5432/dvdrental with user 'etl': The connection attempt failed. [io.debezium.connector.postgresql.PostgresConnector]
@irtizahafizАй бұрын
Do you have Postgres running locally in port 5432? And, are you confident about the user credentials you are using?
@priyantynurulfatimah6408Ай бұрын
@@irtizahafiz hi, yes.. I am confident about the user credentials.. the thing is I tried to connect my local postgres to docker.. I think this is why the docker cannot connect to postgres localhost since postgres is outside of docker.. do you have any idea how to solve this?
@akshayd82Ай бұрын
You can combine the inventory and rate tables
@sahilratnaparkhi5917Ай бұрын
can you make a video on streaming data from cassandra to kafka using debezium
@irtizahafizАй бұрын
Noted. I will try to put something together.
@shaohuiyang30342 ай бұрын
The note pdf is not available. Can you reupload it? Thanks.
@irtizahafizАй бұрын
Unfortunately, they were removed from the server. I don't have a copy.
@dewaldesterhuysen7122 ай бұрын
Thank you
@totsubo20002 ай бұрын
How would this system handle scalability? For example if we need to horizontally scale the rate limiter service.
@irtizahafiz2 ай бұрын
It depends. One way can be to add more instances and then route the traffic using a round-robin or some other routing algorithm.
@ldas11112 ай бұрын
Thank you for the great tutorial! I really appreciate it. I did find the background music a bit distracting-would you mind considering leaving it out in the future?
@irtizahafiz2 ай бұрын
Appreciate the feedback! Multiple others found it annoying as well, so I have gone ahead and removed it. Cheers!
@daymaker_trading2 ай бұрын
Amazing, thank you
@irtizahafiz2 ай бұрын
Thank you for watching
@leinah36712 ай бұрын
Tooltip doesn't work now on v5
@irtizahafiz2 ай бұрын
Ah, sorry. I think dependencies have changed since I last posted.
@leinah36712 ай бұрын
@@irtizahafiz Found the solution. Use the react-simple-maps v3. But what I did is I used nextui tooltip
@D.Dee_2 ай бұрын
Hello, great video. I am interested in taking this entire course. However, I am having trouble figuring out the arrangement/progression of the entire course in your playlist. Please could you kindly number each of the videos in this series (e.g. #0, #1, etc.) or perhaps reorganise the playlist? This would really help me and others who are finding it difficult to know the correct sequence to follow. Thank you.
@irtizahafiz2 ай бұрын
Hi! Unfortunately, I didn't end up with a fixed sequence. Feel free to browse around and see which topics interest you the most. I don't think there's any inherent ordering. If it helps, I would start with the conceptual videos at first, before moving to practical examples.
@Lisa-kk6go2 ай бұрын
Why do we need both unique checkout_id and token? Shouldn't the unique checkout_id be good enough?
@irtizahafiz2 ай бұрын
It depends on your implementation. The goal with this video was to provide a high level idea only.
@smkhan0072 ай бұрын
Scheduled job won't work if the consumers logs in after 1 year
@josephabetang33342 ай бұрын
I just heard of Debezium few months ago because we use it at work. Your explanation was clear. Thank you!
@jeffsaremi2 ай бұрын
Is there a way to shut down the background music?
@irtizahafiz2 ай бұрын
Unfortunately, no :( I was trying out a different style, which clearly didn't do well haha.
@FarukHossain-bs3ni2 ай бұрын
Awesome, Make a complete RAG application with some text file.
@irtizahafiz2 ай бұрын
Already flimed ;) Got RAG videos coming up for text file, PDF, CSV, Cassandra, Reddit and many other formats. Hope you enjoy them.
@FarukHossain-bs3ni2 ай бұрын
Hi this is Faruk from India, You are doing awesome.
@irtizahafiz2 ай бұрын
Thank you so much! Hope you are getting value.
@AyeshaSiddiki-c6v2 ай бұрын
Love it!
@irtizahafiz2 ай бұрын
Thank you! Appreciate your constant support.
@AyeshaSiddiki-c6v2 ай бұрын
@ big fan since 2010 sir
@NishatEshika2 ай бұрын
👍
@irtizahafiz2 ай бұрын
Thank you!
@rfz41512 ай бұрын
Im try this command "docker run --tty --network postgres_debezium_cdc_default confluentinc/cp-kafkacat kafcakat -b kafka:9092 -C -s key=s -s value=avro -r schema-registry:8081 -t postgres.public.student" and get issue => docker: Error response from daemon: network postgres_debezium_cdc_default not found. When i check docker network im found this network, ee5c820a3e14 debezium-network bridge local b4dadb00d632 debezium_default bridge local when im tried using one of them, get issue: docker: Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "kafcakat": executable file not found in $PATH: unknown. how to solve?
@RajkumarS-p1fАй бұрын
facing same problem, how to solve this probelm
@looppp2 ай бұрын
How did you get umami.track to work? It says it's missing umami installation
@jaggyjut2 ай бұрын
great tutorial. Used Claude AI to figure out the dependencies and how to setup the OpenAI API Key for the simple_prompts file.
@irtizahafiz2 ай бұрын
Thank you for watching! Claude AI is so good for programming-related questions. Very surprised!
@marwen1983-t1s2 ай бұрын
thank you very much. i really appreciate your approach to discussing this topic
@irtizahafiz2 ай бұрын
You're very welcome!
@RajkumarS-p1fАй бұрын
did you the error docker run --tty --network postgres_debezium_cdc_default confluentinc/cp-kafkacat kafcakat -b kafka:9092 -C -s key=s -s value=avro -r schema-registry:8081 -t postgres.public.student" and get issue => docker: Error response from daemon: network postgres_debezium_cdc_default not found.
@AyeshaSiddiki-c6v2 ай бұрын
Welcome back! This is amazing, very informative, and easy to understand
@irtizahafiz2 ай бұрын
Thank you! I appreciate it.
@jamieridenour12752 ай бұрын
so this is transactional replication but for each individual table?
@irtizahafiz2 ай бұрын
I am not sure I understand what you mean by transactional replication. And yes, you can do it for individual tables.
@vidhya8213 ай бұрын
I am sorry but that bgm is really irking me
@irtizahafiz2 ай бұрын
I appreciate the feedback and suggestions. Will work on it.
@B-Billy3 ай бұрын
Woow, you have even shared your noted!! That's perfectly perfect!