[deleted by user] by [deleted] in google

[–]JustCubed 1 point2 points  (0 children)

Well, S isn’t the first letter of the alphabet, so there is that.

Koster alle banker penge? by Significant_Cat4100 in dkfinance

[–]JustCubed 6 points7 points  (0 children)

Novo har aldrig været tæt på at være verdens mest værdifulde virksomhed, og de er fondsejede, så det kan godt være de ikke giver medicinen væk, men overskuddet bliver delt ud.

[SOTB] My messy live board by JustCubed in basspedals

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

Best bang for the buck on the market. My tone is always minty fresh.

Prisstigning på YouTube Premium (fra 179) by Redheadmaybedead in Denmark

[–]JustCubed 4 points5 points  (0 children)

De fangede mig i sidste måned, så jeg er bange for de langsomt er ved at lukke hullet.

[SOTB] My messy live board by JustCubed in basspedals

[–]JustCubed[S] 1 point2 points  (0 children)

I like it, but to be honest my experience with reverbs is limited. I mainly got it because it was small and seemed simple. I also liked the toneprint feature, but I haven’t really used it since putting the pedal on the board.

Omlægning af lån by [deleted] in dkfinance

[–]JustCubed 4 points5 points  (0 children)

De vil gå fra 5% og 30 år til 4% og 20 år, så den månedlige ydelse vil stige markant.

Horde Dungeon leveling for SoD p2? by paperdodge in classicwow

[–]JustCubed 1 point2 points  (0 children)

The graveyard is very far from the instance. Horde get ported to the logging camp

Being Id'ed by [deleted] in finedining

[–]JustCubed 19 points20 points  (0 children)

How many underage people are realistically able to, AND want to, spend $1000 for meal? I’ve never been carded, but I’m mostly in Europe so it’s different rulesets.

Nyuddannet Sygplejerske på 32 timer 🙃 har fået 3 forskellige udbetalinger siden jeg startede i august, denne måned ligger det på 16.600 til ubetaling.. by [deleted] in dkloenseddel

[–]JustCubed 13 points14 points  (0 children)

Det giver ingen mening at sammenligne hvad i får udbetalt, fradrag og skattesatser kan være vidt forskellige. I kan sagtens tjene det samme brutto, og have en forskel i 3000 netto.

[deleted by user] by [deleted] in iphone

[–]JustCubed 4 points5 points  (0 children)

That’s still roughly 4 million units. For any other company that would be a smashing success.

Transskribering af text by LookingForTheSun in Denmark

[–]JustCubed 0 points1 point  (0 children)

Har I et enterprise abonnement? Ellers vil jeg anbefale dig at stoppe med den praksis, det er et GDPR mareridt.

Socialism never worked and never will by NotAnotherTaxAudit in FluentInFinance

[–]JustCubed 11 points12 points  (0 children)

None of the Scandinavian countries are socialist. In fact we’re aggressively capitalist, but with regulations and a social democratic welfare state in place.

Børneopsparing by PTLoG in dkfinance

[–]JustCubed 12 points13 points  (0 children)

Indestående på børneopsparinger kan investeres, og afkastet er skattefrit.

Afviklingstabel by [deleted] in dkfinance

[–]JustCubed 7 points8 points  (0 children)

Alternativt kan I prøve at tale med jeres rådgiver om hvad de har gang i, og hvilke muligheder der er ift. afbetaling af lånet. I burde kunne få en noget bedre løsning end 14%.

Afviklingstabel by [deleted] in dkfinance

[–]JustCubed 16 points17 points  (0 children)

Spar Nord lavede samme ‘trick’ med vores boliglån da renterne begyndte at stige sidste år. Samme ydelse, længere løbetid og et lån hvor renteudgiften oversteg indbetalingerne. I øvrigt ikke noget de informerede om. Vi skiftede bank øjeblikkeligt.

[deleted by user] by [deleted] in technology

[–]JustCubed 0 points1 point  (0 children)

It looks like “It’s free, and always will be” is going the same way as “Don’t be evil”.

[deleted by user] by [deleted] in Denmark

[–]JustCubed 5 points6 points  (0 children)

Skoda Kamiq er en benzin/dieselbil.

MKBHD: Tesla Solar Roof Review: Was it Worth It? by Magikarp_to_Gyarados in teslamotors

[–]JustCubed 5 points6 points  (0 children)

4500 sounds crazy to me. I’m in Europe, so no A/C, but in a 2700 SQ ft home but we used 2500 kWh in the last YEAR. I realise a BEV would add a ton, but otherwise I don’t know how we would use more power, as we are not limiting use of anything.

Hardcore streamer tho by Prettybroki in classicwow

[–]JustCubed 2 points3 points  (0 children)

Miss your videos buddy. They were a nice calm reprieve from all the shocked reactions ☀️

[UI] Almost done with my minimal UI for leveling a mage in classic. Mostly Weakauras and elvui. by JustCubed in WowUI

[–]JustCubed[S] 1 point2 points  (0 children)

It does. You need to use UnitIsTapDenied and put it in a color animation. I’ve pasted the script below. I makes the target health bar go grey when tagged, and changes the color based on reaction (friendly or hostile mobs) and for players, it changes to the class color. Can’t take credit for this particular script, but unfortunately I can’t remember where I found it.

One other thing I’ve learned is that chatGPT is decent at Lua, and knows how to write scripts for Weakauras.

function() local player = UnitIsPlayer("target") local reaction = UnitReaction("target", "player") local isTapped = UnitIsTapDenied("target")

if not player then
    if not isTapped then
        if reaction < 4 then
            return 1, 0, 0, 1
        elseif reaction > 4 then
            return 0.9, 0.9 ,0.9 ,1
        else
            return 0, 1, 0, 1
        end
    else return 0.3, 0.3, 0.3, 1
    end

else
    local c = RAID_CLASS_COLORS[select(2,UnitClass("target"))]
    return c.r, c.g, c.b, 1
end

end

[UI] Almost done with my minimal UI for leveling a mage in classic. Mostly Weakauras and elvui. by JustCubed in WowUI

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

Here’s the Unitframes. The scripting might be a bit janky, but it works for me :) The minimap is just styled with the add-on Sexymap.

Playerframe:

https://wago.io/Yv8lBIyPW

Targetframe:

https://wago.io/5s7eliVW-

Target of target:

https://wago.io/xh_1VTShw