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();
@shinkansen19076 күн бұрын
Thanks!
@Drolik27557 күн бұрын
Thanks bro. This is the best instuction
@llamalogiclab22 күн бұрын
Thanks bro, this video helps me a lot.
@johanfurtado688722 күн бұрын
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
@TravellerOnBoard23 күн бұрын
Nice, short and informative video. Keep up the good work. Thanks
@sumantpatil222323 күн бұрын
Thank you!
@ChrisB-hd9lv24 күн бұрын
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?
@SombreroMan71625 күн бұрын
could you also post the hello-view.fxml code onto the github page? thanks.
@eternalrinnegan839327 күн бұрын
tysm omg
@vinodfernando69228 күн бұрын
Thank you❤
@josiprajkovic970728 күн бұрын
This works. thanks!
@skccharanАй бұрын
Thanks
Ай бұрын
Hey do you a tutorial for a hover design?
@ShubhamSoni-tp5ytАй бұрын
Thanks
@ValuedValueАй бұрын
Does not work
@handsome_man69Ай бұрын
It looks rubbish
@uclehong2605Ай бұрын
why u didn't use show() in controller
@diegoslinger1254Ай бұрын
Good
@ooogabooga5111Ай бұрын
for me using the gateway IP address did the trick.
@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Ай бұрын
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Ай бұрын
when you add .block in chain, its gonna block the thread to wait for response coming
@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Ай бұрын
thank you!
@thushankalana4940Ай бұрын
Thank you 😊
@thushankalana4940Ай бұрын
Great 😊
@user_3086deАй бұрын
我喜欢你讲课的方式,非常棒
@minhkhanhnguyen361Ай бұрын
Thank for your work ❤
@Randomcode_0Ай бұрын
Welcome!
@alonerproАй бұрын
Is there any way to love java?
@Randomcode_0Ай бұрын
I think you misspelled: 'Is there any way not to love Java?', or you are missing the punchline to your joke :)
@alonerproАй бұрын
@@Randomcode_0 for work I need to learn Java coming from a python background. Need love for Java.
@thushankalana4940Ай бұрын
Thank you
@Randomcode_0Ай бұрын
Welcome!
@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Ай бұрын
Glad it helped!
@dasgill4761Ай бұрын
Shortcut to create a for loop in IntelliJ - type ‘iter’
@tquickly5236Ай бұрын
боже блять мужик я не знаю что ты сделал но оно заработало я просто в ахуе
@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Ай бұрын
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Ай бұрын
@@Randomcode_0 can we upload a docker image on Amazon ECS repository or GitHub?
@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Ай бұрын
I love the part where he doesn't explain why he's doing things this way.
@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_tahasin2 ай бұрын
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Ай бұрын
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.
@sandeepsahanicodes2 ай бұрын
Thanks for the video!
@idlecsfr2 ай бұрын
i followed all your steps but i can't open the jar or appears the message: "a Java Exception has ocurred". Why?
@GrafBazooka2 ай бұрын
But I don't have a jar file that is generated
@hindalla7888Ай бұрын
you should execute 'mvn clean install' in your project terminal
@chacharealsmooth92152 ай бұрын
thx
@worldwide66262 ай бұрын
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?
@worldwide66262 ай бұрын
Could you make a video on deploying a server and database? Maybe along with a load balancer?
@Randomcode_02 ай бұрын
It is in the plans to create videos showing a more full-fledged setup, so it is in the pipeline.
@worldwide66262 ай бұрын
@@Randomcode_0 thank you so much.
@LiveforHM2 ай бұрын
you sound like sifd, am i crazy?
@Randomcode_02 ай бұрын
I am not aware of whom sifd is, so I am not sure if that is a compliment or not. :D
@RarestArd2 ай бұрын
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?
@tecnopadre2 ай бұрын
saved my life, thank you
@Randomcode_02 ай бұрын
Thank you so much! I’m really glad to hear that I was able to save your life :)
@ivan-lebedev-e8p2 ай бұрын
Thank you very much! Really chill video and voice, I enjoy
@Randomcode_02 ай бұрын
Great to hear! And thank you so much for the compliments, I truly appreciate the kind words!
@Randomcode_02 ай бұрын
Connect using my link to support me and get 40% off when you become a paying member: app.codecrafters.io/join?via=Da9el00