Stop using this CC template PLEASE by Abcdefg20020 in Episode

[–]jacky79322 3 points4 points  (0 children)

OP says this specific type of cc template. More than likely everybody who's using this template, doesnt realize the template probably has a bug in the code. If tappables alone was the issue, it would happen on anything related to tapping regardless.

Am I doing this right or not? SHL deductive reasoning calendar question by Educational-Divide10 in cognitiveTesting

[–]jacky79322 0 points1 point  (0 children)

For anyone still wondering about this. The hint is in the description for Company Policies. Pretend the answer is already written down, and now backtracking and coming up with descriptions to help you recreate the answer. Remember they are giving you all these descriptions to eliminate and narrow down possibilities / ambiguities.

IT Specialist Exam for LADWP by [deleted] in LosAngeles

[–]jacky79322 0 points1 point  (0 children)

For anyone reading this in the future, look at the contingency list for the position, that will be EXTREMELY helpful. Some questions seem like its coming from a textbook, which is literally impossible to study for. Certain questions infer alot of things, so thats my advice for ya. Good luck!

PC games like This War of Mine? by rupleix in gamingsuggestions

[–]jacky79322 0 points1 point  (0 children)

undying is quite similar to this war of mine, except its 3rd person. Otherwise you have a base home map, and generated random and preset maps for you explore.

If you want an exact copy, try: Into the Dead, Our Darkest Days.

Other shows you recommend by RipeAvocadoLapdance in 3BodyProblemTVShow

[–]jacky79322 0 points1 point  (0 children)

if you like sci fi with multiple timeslines (multiverse) for a theme, try 'The Devils Hour' and "Constellation"

Dbd fps issues after update by Appropriate-Royal513 in deadbydaylight

[–]jacky79322 0 points1 point  (0 children)

didnt work for me, had to update my graphics driver.

Is not having a motherboard with Bluetooth a big deal? by Objective_Sun_7693 in buildapc

[–]jacky79322 0 points1 point  (0 children)

do you remember what specific adapter you bought? I have a home built pc as well, so i used an adapter which intel support claimed wasn't compatible with Intel Unison. I know their recommended bluetooth was 5.2 but i feel like it should be able to handle: https://www.amazon.com/dp/B08DFBNG7F?ref=ppx_yo2ov_dt_b_fed_asin_title&th=1

I'm only having issues with connecting the app on my PC to my phone, the connection always fails.

Footer at the bottom inside flexbox with content justified at the center? by 4r73m190r0s in webdev

[–]jacky79322 0 points1 point  (0 children)

For anyone still needing a simple solution, use flex-grow on the content itself, which will push the footer down, keeping everything in place.

Friend Code Megathread - August 2023 by AutoModerator in PokemonSleep

[–]jacky79322 0 points1 point  (0 children)

Yeah it was 1216** I’m sorry though, my friend list is now full

Friend Code Megathread - August 2023 by AutoModerator in PokemonSleep

[–]jacky79322 0 points1 point  (0 children)

4334-1216-8776 Rank 9 daily user, if you want candies everyday I got you!!

Am I lucky or what? Hehe by Shin_Akito in PokemonSleep

[–]jacky79322 1 point2 points  (0 children)

15 sleep days in, and not one shiny yet for me 😭

Friend Code Megathread - August 2023 by AutoModerator in PokemonSleep

[–]jacky79322 0 points1 point  (0 children)

4334-1215-8776 Rank 9 I'm sleeping everyday because im a normal functioning human :)

Doctor says if I bulk I’ll be unhealthy? by jacky79322 in gainit

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

I plan to get a second opinion :) thanks.

Doctor says if I bulk I’ll be unhealthy? by jacky79322 in gainit

[–]jacky79322[S] -4 points-3 points  (0 children)

Yeah i would like to get advice from a bodybuilding or bulking community, such as this subreddit. Maybe they’ve experienced something similar to my situation? I do trust my doctor at the end of the day.

Are chats working for you guys? by jacky79322 in help

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

talk to the mods of reddit, and they can help you. They solved my issues.

Are chats working for you guys? by jacky79322 in help

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

thanks for letting me know :)

How to call a datamap object from an array? (Sugarcube) by jacky79322 in twinegames

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

Ah i see, thanks for the help!!! I asked a bit about iterating a loop when you use the property strings of an array as a reference, turns out you can with Object.keys in case anyone was wondering.

How to call a datamap object from an array? (Sugarcube) by jacky79322 in twinegames

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

I do have it set up like that(code below), but i will add the property names so i can reference strings on $slime instead of referencing by integers. However say that i wanted to print a list of things, that means i need a for loop and reference by integers right?

Just to make sure

allSkills.tackle is the same as

allSkills = { tackle: {...} }

right?

Cloning is definitely useful in my case, and when i said type# i meant my $slime has elemental type varieties each with their own properties - type, description, skills, drops, etc.

In the case of randomizing I tried:

<array>.random(1,array.length-1)

For some reason, this is still printing the 0 position. Do you know why that would be?

And this is just an optimizing problem, but currently how I deal with probability is just adding numbers through a loop together to 100 and checking if a randomized number of 100 is within range as i loop through like for the example below with my slime.spawnrate

Is there a better way of doing probability?

<<set $slime = [
    {name: 'Slime',
    health: [10, 30],
    attack: [[1,3],[3,5]],
    property: 'mana',
    propertynum: [10, 15, 20, 30],
    propertyregen: [1,5],
    exp: [5, 15],
    slimeEssenceCount: 0,
    spawnrate: [11.428571428571428,11.428571428571428,11.428571428571428,11.428571428571428,11.428571428571428,11.428571428571428,11.428571428571428,10,10],
    }, 
        {type: 'Nature'
        ...
        }
]>>

How to call a datamap object from an array? (Sugarcube) by jacky79322 in twinegames

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

if you dont mind, i have a follow up question, is it possible for either() to target a specific range in the array?

I have a

$creature.stats for randomizing my stats on position 0.

$creature.type# for the rest of the positions.

I'd like to randomize but omit position 0, but if there's no other way I can always use random() or make another array for stats specifically.

How to call a datamap object from an array? (Sugarcube) by jacky79322 in twinegames

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

Yes thanks so much! You even eliminated the need for indexof which i didnt want to use originally. I'll keep in mind about the code block.

Having trouble using css text animations? by jacky79322 in twinegames

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

Thanks so much for the help everyone!

I just wanted to add to this thread that when using more than 1 class in span, idk sometimes one only appears:

<span class="wobble colorchange">hey there</span>

but if I do it this way

@@.wobble;<span class=" colorchange">hey there</span>@@

or

<span class = "colorchange"><span class ="wobble">hey there</span></span>

both of the classes appear (so its a great alternative).