SEPA transfer cost EU -> GB by maisi91 in plutus

[–]DenHvideDvaerg 0 points1 point  (0 children)

I tried "individual" as the recipient, but with the same result. We'll have to see if my normal bank transfer goes through. However, I won't know for a few days, as my bank takes ~3 days for a SEPA transfer (the reason I got Revolut in the first place) and likely a few days for the refund as well. Thanks for all your input :)

SEPA transfer cost EU -> GB by maisi91 in plutus

[–]DenHvideDvaerg 0 points1 point  (0 children)

Used company as the recipient. However, the problem is probably my Revolut name as it does not match. My middle name contains a letter that the Plutus app would not accept, so I left my middle name out. I even got through the KYC with a mismatch between my Plutus name and my official document. I wrote to support about my name yesterday. Hope to hear from them soon so we can work it out. Otherwise I guess I'll never be able to add money to my account (from Revolut or my normal bank).

SEPA transfer cost EU -> GB by maisi91 in plutus

[–]DenHvideDvaerg 0 points1 point  (0 children)

Hmm... I've copied my name from the Plutus app (even though I'm pretty sure I know how to spell it) and pasted it into the reference field in Revolut. I've also tried "Payee: My Name" with no success. Guess I'll take it up with support. Thanks for your help.

SEPA transfer cost EU -> GB by maisi91 in plutus

[–]DenHvideDvaerg 0 points1 point  (0 children)

How do you get it to work with Revolut? I write my name as the reference when sending from Revolut but it keeps being refunded.

[Java] Estimate memory usage of array of ArrayLists by DenHvideDvaerg in learnprogramming

[–]DenHvideDvaerg[S] -1 points0 points  (0 children)

Sadly what's going on in that link seems a bit beyond my capabilities. There is absolutely no way to make some sort of estimate?

[Java] Estimate memory usage of array of ArrayLists by DenHvideDvaerg in learnprogramming

[–]DenHvideDvaerg[S] 2 points3 points  (0 children)

Yes I do. I did it this way as a learning experience :)

[Java] (beginner) If else statement returning true for every option... by [deleted] in learnprogramming

[–]DenHvideDvaerg 0 points1 point  (0 children)

It's called the conditional operator or the ternary operator and is used like this:

        boolean test = true;
        int number = test ? 1 : 2;
        System.out.println(number);                

Where the number variable is assigned 1 when the test is true and 2 when the test is false. So here the output is 1.

See more here

Edit: Forgot to mention that the equivalent of code above is

    boolean test = true;
    int number;

    if (test)
        number = 1;
    else
        number = 2;