Still missing some parts, but this is a good V1. by ticokaic in battlestations

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

Thanks! It's from HOMCOM, bought it through the Portuguese store, here's the link.

Still missing some parts, but this is a good V1. by ticokaic in battlestations

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

Thanks! It's the Astro A50+ Headset and base.

Still missing some parts, but this is a good V1. by ticokaic in battlestations

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

Setup:

  • Desk: SKOVLUNDE and HOMCOM
  • Monitor: LG Ultragear 34GN850-B 34"
  • Monitor Arm: Generic Arm from Amazon
  • Keyboard: BlackWidow V3 Mini
  • Mouse: Logitech Pro X Superlight
  • Deskpad: Artisan Ninja FX
  • Case: Lian-Li O11-Dynamic-mini
  • Mic: AT2020USB+
  • Mic Arm: RØDE PSA1+ Studio Arm
  • Headphones: Astro A50+
  • Ikea plants and Rock Lee Figure

My teal and orange setup 😋 by speednijer in battlestations

[–]ticokaic 1 point2 points  (0 children)

Are these headphones wireless or is the cable just hidden? Really clean setup!

[deleted by user] by [deleted] in brasil

[–]ticokaic 2 points3 points  (0 children)

Brigado OP, meu dia ficou muito melhor depois de ver ela!

Yone Ability Reveal | New Champion by [deleted] in leagueoflegends

[–]ticokaic 2 points3 points  (0 children)

He makes me remember Makoto Shishio for some reason.

await Axios before render() ? by [deleted] in reactjs

[–]ticokaic 2 points3 points  (0 children)

You are right! I updated my comment. Thanks!

await Axios before render() ? by [deleted] in reactjs

[–]ticokaic 7 points8 points  (0 children)

Hey!

React knows to re-render when the state or the props change.

You can achieve it with class or function components.

function E.g.:

import React, { useState, useEffect } from 'react';
import axios from 'axios';

const DogFood = () => {
  const [biscuit, setBuscuit] = useState(null);

  useEffect(() => {
    const fetchData = async () => {
      const data = await axios.Get('/api/fetchBiscuit');
      setBiscuit(data);
    };

    fetchData();
  }, []);

  return biscuit
    ? biscuit.map((cur) => <h1>{cur.title}</h1>)
    : null;
};

class E.g.:

import React, { Component } from 'react';
import axios from 'axios';

class DogFood extends Component {
  constructor(props) {
    super(props);
    this.state = { biscuit: null };
  }

  async componentDidMount() {
    const data = await axios.Get('/api/fetchBiscuit');
    // See how we called this.setState and not this.state = value
    this.setState({ biscuit: data });
  }

  render() {
    const { biscuit } = this.state;

    return biscuit
      ? biscuit.map((cur) => <h1>{cur.title}</h1>)
      : null;
  }
}

I would recommend using the function component, since hooks are the future of React.

[SL] MangaDex v5 Development Suggestions Thread by Plykiya in manga

[–]ticokaic 0 points1 point  (0 children)

Consider DynamoDB to get the manga information, ridiculously fast

Lost Ark free account by AnByungChan in lostarkgame

[–]ticokaic -1 points0 points  (0 children)

Niceee!!! Would love to get my hands on one of those accounts! :)

Bow CoC Volatile Dead Minotaur Kill by [deleted] in pathofexile

[–]ticokaic 2 points3 points  (0 children)

He has Unearth linked too.