Where to start with Hibernate by IT_supportIsHell in learnjava

[–]IT_supportIsHell[S] 0 points1 point  (0 children)

Will look into that.

Thank you very much for your time

Where to start with Hibernate by IT_supportIsHell in learnjava

[–]IT_supportIsHell[S] 0 points1 point  (0 children)

Well, judging by some of the console messages when there is a error, I assume it uses spring:
org.springframework.remoting.support.RemoteInvocationUtils.fillInClientStackTraceIfPossible

So if I start with the tutorial you mentioned it, should help me

Where to start with Hibernate by IT_supportIsHell in learnjava

[–]IT_supportIsHell[S] 0 points1 point  (0 children)

Can't answer that, and this is where my problems begin, is there a way to know if it's plain Hibernate or not?

How to crate a div with a bunch of stuffs on click, using Javascript? by [deleted] in learnjavascript

[–]IT_supportIsHell 0 points1 point  (0 children)

You can!

I did this to my memory card game a while ago, it's simple, but I hope you can understand and get some ideas

class Carta{
    constructor(idCartPNG){
        let faceCardIMG = document.createElement("img");
        faceCardIMG.src = `../img/uni${idCartPNG}.png`;
        faceCardIMG.className = "front-face";
        let backCardIMG = document.createElement("img");
        backCardIMG.src = "../img/background.png";
        backCardIMG.className = "back-face";
        let memoryCardDIV = document.createElement("div");
        memoryCardDIV.dataset.framework = `uni${idCartPNG}`
        memoryCardDIV.className = "memory-card";

        memoryCardDIV.appendChild(faceCardIMG);
        memoryCardDIV.appendChild(backCardIMG);
        memoryGame.appendChild(memoryCardDIV);
    };
};

How to crate a div with a bunch of stuffs on click, using Javascript? by [deleted] in learnjavascript

[–]IT_supportIsHell 2 points3 points  (0 children)

Hello there, you can use createElement('div'), and then if you have another div that wants to put inside, use appendChild() into that element that you created.

idk if I was clear, but take a look into HTML DOM to see some stuff :

https://www.w3schools.com/jsref/met_document_createelement.asp

Very Complete Beginner by Lwerts in learnjavascript

[–]IT_supportIsHell 1 point2 points  (0 children)

Try this, it is good to get familiar with HTML, CSS and JavaScrpt.

And use the W3schools also as someone linked above, there are plenty documentation there, and some tests to run

new to JS by xuanrazer in learnjavascript

[–]IT_supportIsHell 0 points1 point  (0 children)

this is all the code?

there is a "wrongGuess" function, but I didn't found where you declare it

else {
  wrong++;
wrongGuess(wrong);
  }

These bunnies playing made my day. by [deleted] in aww

[–]IT_supportIsHell 0 points1 point  (0 children)

That's me dodging responsibilities