Пікірлер
@uttamdutta1762
@uttamdutta1762 12 сағат бұрын
Tried. Woks !! Thanks
@jackeyboy6508
@jackeyboy6508 2 күн бұрын
Thank you
@DevLooper-o9k
@DevLooper-o9k 5 күн бұрын
you can modify object values in table selected item directly without searching (in for loop) which object is selected. Animal animal = animals.getSelectionModel().getSelectedItem(); animal.setType(....); animal.setName(....); animals.refresh();
@shinkansen1907
@shinkansen1907 6 күн бұрын
Thanks!
@Drolik2755
@Drolik2755 7 күн бұрын
Thanks bro. This is the best instuction
@llamalogiclab
@llamalogiclab 22 күн бұрын
Thanks bro, this video helps me a lot.
@johanfurtado6887
@johanfurtado6887 22 күн бұрын
In newer versions of IntelliJ, if you can't find add frameworks support, try going View, Tool Windows, Project. Then select your main project/folder from the left hand side with one left click. Once you do that, do Ctrl+Shift+A and then type Add Framework Support, and then select Maven, then press ok! Once that is done, put whatever edited code you want to put in your pom.xml file. Once done, right click on your main project/folder, select maven at the end, and then press reload project
@TravellerOnBoard
@TravellerOnBoard 23 күн бұрын
Nice, short and informative video. Keep up the good work. Thanks
@sumantpatil2223
@sumantpatil2223 23 күн бұрын
Thank you!
@ChrisB-hd9lv
@ChrisB-hd9lv 24 күн бұрын
Thank you for this video. I tried troubleshooting via Chat GPT and Stackoverflow, but how do I get past this error at 4:40 when I click Save: unable to connect to server: connection failed: connection to server at <IP address>, port 5432 failed: Connection refused Is the server running on that host and accepting TCP/IP connections?
@SombreroMan716
@SombreroMan716 25 күн бұрын
could you also post the hello-view.fxml code onto the github page? thanks.
@eternalrinnegan8393
@eternalrinnegan8393 27 күн бұрын
tysm omg
@vinodfernando692
@vinodfernando692 28 күн бұрын
Thank you❤
@josiprajkovic9707
@josiprajkovic9707 28 күн бұрын
This works. thanks!
@skccharan
@skccharan Ай бұрын
Thanks
Ай бұрын
Hey do you a tutorial for a hover design?
@ShubhamSoni-tp5yt
@ShubhamSoni-tp5yt Ай бұрын
Thanks
@ValuedValue
@ValuedValue Ай бұрын
Does not work
@handsome_man69
@handsome_man69 Ай бұрын
It looks rubbish
@uclehong2605
@uclehong2605 Ай бұрын
why u didn't use show() in controller
@diegoslinger1254
@diegoslinger1254 Ай бұрын
Good
@ooogabooga5111
@ooogabooga5111 Ай бұрын
for me using the gateway IP address did the trick.
@dthacker9
@dthacker9 Ай бұрын
Thank you! The PostgreSQL and Pg Admin are up. The "version" line of the docker-compose.yml file seems to have been deprecated.
@Randomcode_0
@Randomcode_0 Ай бұрын
You are very much right, the version line is no longer needed in newer versions, but it won't break if you still include it.
@sp_shaun
@sp_shaun Ай бұрын
when you add .block in chain, its gonna block the thread to wait for response coming
@hatimvillain1560
@hatimvillain1560 Ай бұрын
please i have afile jar created with java 17 and i want to convert it or make it work with java 1.8 . how ican do it
@elzwin0044
@elzwin0044 Ай бұрын
thank you!
@thushankalana4940
@thushankalana4940 Ай бұрын
Thank you 😊
@thushankalana4940
@thushankalana4940 Ай бұрын
Great 😊
@user_3086de
@user_3086de Ай бұрын
我喜欢你讲课的方式,非常棒
@minhkhanhnguyen361
@minhkhanhnguyen361 Ай бұрын
Thank for your work ❤
@Randomcode_0
@Randomcode_0 Ай бұрын
Welcome!
@alonerpro
@alonerpro Ай бұрын
Is there any way to love java?
@Randomcode_0
@Randomcode_0 Ай бұрын
I think you misspelled: 'Is there any way not to love Java?', or you are missing the punchline to your joke :)
@alonerpro
@alonerpro Ай бұрын
@@Randomcode_0 for work I need to learn Java coming from a python background. Need love for Java.
@thushankalana4940
@thushankalana4940 Ай бұрын
Thank you
@Randomcode_0
@Randomcode_0 Ай бұрын
Welcome!
@bethuelthipe-moukangwe7786
@bethuelthipe-moukangwe7786 Ай бұрын
Thanks for the assisting me to connect my PGadmin with Postgres in Docker container. It was a big challenge for me.
@Randomcode_0
@Randomcode_0 Ай бұрын
Glad it helped!
@dasgill4761
@dasgill4761 Ай бұрын
Shortcut to create a for loop in IntelliJ - type ‘iter’
@tquickly5236
@tquickly5236 Ай бұрын
боже блять мужик я не знаю что ты сделал но оно заработало я просто в ахуе
@deepin2urheart
@deepin2urheart Ай бұрын
@3:18 Do we need to use /bin/bash switch to get into our container isolated environment? is this applicable for all containers
@Randomcode_0
@Randomcode_0 Ай бұрын
The command (docker exec -it <container_name_or_id> /bin/bash) connects to a container by using exec, which allows us to run a command inside a running container. The -it option makes the session interactive (-i keeps the input open, and -t allocates a pseudoterminal). By using /bin/bash at the end of the command, we start a new shell inside the container, providing an interactive terminal session. This lets us access the container’s command line as if we were logged directly into it. This will work for any container that has bash installed. For containers without bash, you may need to use a different shell, like /bin/sh.
@deepin2urheart
@deepin2urheart Ай бұрын
@@Randomcode_0 can we upload a docker image on Amazon ECS repository or GitHub?
@hamzaerrahma9858
@hamzaerrahma9858 Ай бұрын
Hi, I hope you are doing well! and thank you for this tuto, I want to create my own MySQL image, but when I use some versions (e.g., mysql:latest) and scan it with the Trivy tool, I find a lot of vulnerabilities categorized as critical, medium, and low. What is the best practice for creating a secure MySQL image? My approach is to update the vulnerable packages that are marked as critical, and then I will create a new image with the commands that upgrade those vulnerable packages. Is this the best practice, or do you have any suggestions or best practices to follow? Thanks!
@ArthurSchoppenweghauer
@ArthurSchoppenweghauer Ай бұрын
I love the part where he doesn't explain why he's doing things this way.
@zyan...
@zyan... 2 ай бұрын
hey! Precious help, I'm new to this and I wanted to create a notepad, but one that can calculate after finding mathematical operations within the text. in short I wanted a spreadsheet-like structure, two columns and the column on the right would be the results by extracting the numbers from the text in the left column, so Which command should I use to extract the operations and align them to the text on the left side? As if it were a spreadsheet line. and how do I organize the interface so that the left side is with texts, and the right side is with results? example: tomato: 0.50*3 | 1.50 text: 5 | 5 -------------- total: 6.50
@nika_tahasin
@nika_tahasin 2 ай бұрын
Can you answer me please What should i need to do for do this task, if i press 5+5 then it will show me the actual multiplication.? Please answer
@Randomcode_0
@Randomcode_0 Ай бұрын
You should keep the input in a separate string so you can have both the calculation and the string of the calculation components. The string could then be shown instead of the calculation, depending on your use case.
@sandeepsahanicodes
@sandeepsahanicodes 2 ай бұрын
Thanks for the video!
@idlecsfr
@idlecsfr 2 ай бұрын
i followed all your steps but i can't open the jar or appears the message: "a Java Exception has ocurred". Why?
@GrafBazooka
@GrafBazooka 2 ай бұрын
But I don't have a jar file that is generated
@hindalla7888
@hindalla7888 Ай бұрын
you should execute 'mvn clean install' in your project terminal
@chacharealsmooth9215
@chacharealsmooth9215 2 ай бұрын
thx
@worldwide6626
@worldwide6626 2 ай бұрын
I have a question. I have three images using docker compose i.e spring boot, postgres and nginx.. Do I deploy each one of them individually?
@worldwide6626
@worldwide6626 2 ай бұрын
Could you make a video on deploying a server and database? Maybe along with a load balancer?
@Randomcode_0
@Randomcode_0 2 ай бұрын
It is in the plans to create videos showing a more full-fledged setup, so it is in the pipeline.
@worldwide6626
@worldwide6626 2 ай бұрын
@@Randomcode_0 thank you so much.
@LiveforHM
@LiveforHM 2 ай бұрын
you sound like sifd, am i crazy?
@Randomcode_0
@Randomcode_0 2 ай бұрын
I am not aware of whom sifd is, so I am not sure if that is a compliment or not. :D
@RarestArd
@RarestArd 2 ай бұрын
Why is my @controller having errors like either unstasifiedependency or error Creating bean, the structure is already correct just like in the video, i just dont know why it's throwing those error? My controller is like in the video too. using autowiring to the service and the service to the repository Can you tell me what's wrong?
@tecnopadre
@tecnopadre 2 ай бұрын
saved my life, thank you
@Randomcode_0
@Randomcode_0 2 ай бұрын
Thank you so much! I’m really glad to hear that I was able to save your life :)
@ivan-lebedev-e8p
@ivan-lebedev-e8p 2 ай бұрын
Thank you very much! Really chill video and voice, I enjoy
@Randomcode_0
@Randomcode_0 2 ай бұрын
Great to hear! And thank you so much for the compliments, I truly appreciate the kind words!
@Randomcode_0
@Randomcode_0 2 ай бұрын
Connect using my link to support me and get 40% off when you become a paying member: app.codecrafters.io/join?via=Da9el00