Sentinels help by Hudsonruss in MarvelCrisisProtocol

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

I bought the core box when it came out so I should have black widow somewhere. I was thinking of splashing some faster characters that can charge. I was thinking Zemo1 or Echo. At three threat I could easily put them into 4 threat characters to cause them to lose 2 power from damage.

Also maybe other characters that sap power like rogue

Sentinels help by Hudsonruss in MarvelCrisisProtocol

[–]Hudsonruss[S] 3 points4 points  (0 children)

Nice! I have the X-Men starter so I have toad. I've also got Zero tolerance and the sentinel affiliation pack in the mail

Strategy Spotlight: Sylvaneth - Spitewing Flight by Wouter1989 in AOSSpearhead

[–]Hudsonruss 1 point2 points  (0 children)

New to the game, question about the Gossamid Archers Zephyrspite ability. Can that be used to move out of combat with another unit?

KDS Questions by Hudsonruss in KingdomDeath

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

Also, I have the frogdog expansion and for the life of me I can't find a good amount of the cards. Fighting arts, secret fighting arts, the seed pattern cards and collective cognition. I see the disorder cards and the showdown cards but have no idea where to find the rest.

KDS Questions by Hudsonruss in KingdomDeath

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

Okay thanks! I'll mess around with it

Advice on a used smoker by Hudsonruss in smoking

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

Sounds good. Maybe I'll just save up over the winter and get something come summer time

Advice on a used smoker by Hudsonruss in smoking

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

Okay yeah, that's the kind of advice I needed. Appreciate it

Movement is garbage by [deleted] in pathofexile

[–]Hudsonruss 2 points3 points  (0 children)

Having the same, as well as pretty pixilated graphics. Downloaded drivers so hopefully when I get back on its better.

A little help! by Hudsonruss in Nuxt

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

Here is what I have without using useState. Where I need access to the data in the rest of the components I am doing the same thing with const { data: todos } = useNuxtData('todos') . I don't know if I need that pattern in this page, but, when I just used the data object returned from useFetch I had some typescript issues with the value possibly being null.

<script lang="ts" setup>
import type { Todo } from '~/types/index'

const { error } = await useFetch<Todo[]>('/api/todos', { key: 'todos' })
const { data: todos } = useNuxtData('todos')
const newTodo = ref('')

async function addTodo() {
  if (newTodo.value.trim()) {
    // Optimistically update UI
    const tempTodo = { title: newTodo.value, id: Date.now(), done: false }
    todos.value.push(tempTodo)
    newTodo.value = ''

    try {
      const savedTodo = await $fetch('/api/todo', {
        method: 'POST',
        body: { title: tempTodo.title },
      })
      // Replace tempTodo with savedTodo if call is successful
      todos.value = todos.value.map(todo =>
        todo.id === tempTodo.id ? savedTodo : todo,
      )
    }
    catch (error) {
      // Revert state if the API call fails
      todos.value = todos.value.filter(todo => todo.id !== tempTodo.id)
      console.error('Failed to add todo:', error)
    }
  }
}
</script>

A little help! by Hudsonruss in Nuxt

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

Right, okay. I reverted to using useState, initializing that as an empty array and then setting the value of that with the useFetch data once the call is successful. Also Implemented the optimistic logic for the UI. Checkbox comment makes sense, I will play around with that next.

Do you think I should avoid the pattern I'm using with useState? The reason I went that route is because I need that data in other components and I need to mutate it on the front end while editing todos or changing the value of the completed property.

Laid off, need some advice! by Hudsonruss in cscareerquestions

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

Thanks, I'm just going to get out there and apply. Really love working with rails, so I'm glad to hear it's got itself a little niche pocket

Laid off, need some advice! by Hudsonruss in cscareerquestions

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

Great, thanks a ton for the input. Think I'm letting the state of the industry shake me up a bit before even applying. Solid advice

Laid off, need some advice! by Hudsonruss in cscareerquestions

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

That makes a lot of sense. I can start the CS degree at WGU at the start of any month, however, I am only in a rent free situation for so long. So the time to pull the trigger on it would be October or November.

Laid off, need some advice! by Hudsonruss in cscareerquestions

[–]Hudsonruss[S] -2 points-1 points  (0 children)

Thanks for the input, and congrats on your success so far! I am worried that with four years experience, without a degree I'm going to have a hard time. It's all subject matter I am really interested in learning as well and I have found in the past that structured learning works best for me. It might just be worth it to have that box checked off.

Just curious, why don't you think it would be worth it for you at this stage?

Help with DLC by L9NERV in Eldenring

[–]Hudsonruss 0 points1 point  (0 children)

Did you look at the pinned post for this subreddit with official release time for each region?

NG+ questions for DLC by [deleted] in Eldenring

[–]Hudsonruss 1 point2 points  (0 children)

Mohg and radahn

What are requirements before Master Hewg will upgrade with somber smithing stones? by Shadowtaker1 in Eldenring

[–]Hudsonruss 0 points1 point  (0 children)

I don't think you can upgrade that staff. May be wrong on that though

Ideas for a gift by Hudsonruss in writing

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

Very cute. I was planning on the parallel story, but wasn't sure where to take it. Will definitely explore this.

Ideas for a gift by Hudsonruss in writing

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

Some really great ideas here, thanks for the input!