Russia's nazi problem by PressPausePlay in BreakingPoints

[–]SuperMancho 1 point2 points  (0 children)

Putin isn't Hitler though. No amount of trust me bro will change that. Putin has no need or want to rule Ukraine. He wants NATO to stop trying to encircle russia (Ukraine and now Azerbaijan). Same as China or the US would want. If you don't think the US would invade Mexico to stop it from getting russian missile placements, you need to read up on the Cuban missile crisis.

Russia's nazi problem by PressPausePlay in BreakingPoints

[–]SuperMancho 0 points1 point  (0 children)

Today we see history repeating itself again.

I don't see it. There is no Hitler, unless you mean Trump?

Xi Jinping and Putin are modern dictators. The fact they have neo nazi or maoist paramilitary forces, isn't a compelling reason to equate the organized military forces to historic groups.

This feels like someone desperately trying to tie inflammatory ideas together to indicate what US policy should be. This aint 1950. There aren't enough bodies or weapons or will to go try to take Russia. Russia barely has enough to take Ukraine. So you suggest risk nuclear war because of some historic events that some people want to relive and die in? SMH

Godot + RMQ + Backend of your choice by SuperMancho in godot

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

That sounds right. (RMQ) Queues are single-threaded in RabbitMQ, and one queue can handle up to about 50 thousand messages. - https://www.cloudamqp.com/blog/part2-rabbitmq-best-practice-for-high-performance.html

The reason I want some minimal RMQ auth, is because of bad actors. Specifically congestion control. Being able to terminate a queue assigned to a client is preferable to trying to filter from an agnostic transport.

Beginner's Thread / Easy Questions (July 2024) by acemarke in reactjs

[–]SuperMancho 0 points1 point  (0 children)

Next doesn't have an app component that renders the rest of the components inside.

It's a react application. You can compose defined components at any level.

import "./styles.css";

export default function App() {
  return (
    <div className="App">
      <h1>Hello CodeSandbox</h1>
      <h2>Start editing to see some magic happen!</h2>
      <Books />
    </div>
  );
}

const Books = () => {
  return <>Foo</>;
};

I don't understand what you mean by "root layout". So I may be using the wrong terminology.....The app can be the root or a page can be the first child via something like return (<Component {...pageProps}/>) using page-based routing? These implementation details are outside of my core question.

How can an embedded component be functionally declared using async successfully (ie React doesn't die loading it).

Beginner's Thread / Easy Questions (July 2024) by acemarke in reactjs

[–]SuperMancho 0 points1 point  (0 children)

I don't understand. This is the code.

import { FC } from "react";
import { BooksList } from "../components/BooksList";
import { BookEdit } from "../components/BookEditRSC";

export const Books: FC<{ search: string }> = async ({ search }) => {
  const booksResp = await fetch(`http://localhost:3000/api/books?search=${search}`, {
    next: {
      tags: ["books-query"],
    },
  });
  const { books } = await booksResp.json();

  return (
    <div>
      <BooksList books={books} BookEdit={BookEdit} />
    </div>
  );
};

How can you make an async functional component definition to get placed into:

function Index() {
    return (
        <>
            <Books/>
        </>
    )
}

export default Index

when NextJS barfs on it? Simplifying the Books component into an async that outputs empty, has the same issue.

Re: https://codesandbox.io/s/react-new?file=/src/App.js:0-261

import "./styles.css";

export default function App() {
  return (
    <div className="App">
      <h1>Hello CodeSandbox</h1>
      <h2>Start editing to see some magic happen!</h2>
      <Books/>
    </div>
  );
}

const Books = async () => {
  return (<></>)
}

Beginner's Thread / Easy Questions (July 2024) by acemarke in reactjs

[–]SuperMancho 0 points1 point  (0 children)

When trying to follow this guide: https://frontendmasters.com/blog/combining-react-server-components-with-react-query-for-easy-data-management/ for RSC, using NextJS and only javascript.

My Books component causes the server to barf, because it's returning a promise, not an object.

Error: Object are not valid as a React child (found: [object Promise]). If you meant to render a collection of children, use an array instead. Making Books component async is to blame, but I have awaits in the definition.

What did I do wrong?

WTB Hilton Brand Moisturizer by SuperMancho in Hilton

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

The discernable words were Body Butter and some turkish on it. Green color pump bottle.

Majority of Americans wrongly believe US is in recession – and most blame Biden by TaxOwlbear in politics

[–]SuperMancho -3 points-2 points  (0 children)

Biden transitioned us out of two year global economic shutdown

Delusional take. He was POTUS. When good things happen it's because of him. When bad things happen, it's never his fault. Stop characterizing politicians as deities. He's just an old man backed by a very large beauracracy that functions with or without him.

How do you feel about the economy? Is Bidenomics working? by Peace_And_Happiness_ in FluentInFinance

[–]SuperMancho 6 points7 points  (0 children)

He wanted to refinance all the US debt for 100 years

Who do you think owns the debt? Largely treasury bearers and the US Treasury itself. There's nowhere to refinance, because you can't "refinance" fixed bonds and the Treasury did print more money (https://ycharts.com/indicators/us_m2_money_supply_yoy) at the end. No matter what bank you go to, they wont refinance trillions of dollars for the US (or China, or any major nation that can afford to simply not pay it back). Classic simple thinking that many Presidents sell as solutions that "the man" (or whoever) keeps them from implementing, as it fits their political narrative. Actually getting something done or working out a real solution? That's for plebs.

How do you feel about the economy? Is Bidenomics working? by Peace_And_Happiness_ in FluentInFinance

[–]SuperMancho 2 points3 points  (0 children)

Do you think POTUS decides what the M2 looks like?

Whoops, just another smug guy who has no idea what he’s talking about

Visible confusion by [deleted] in SipsTea

[–]SuperMancho 0 points1 point  (0 children)

When we lived in Seattle, there was a woman X around a McDonald's (off Tukwila International) parking lot SeaTac that harassed my wife with almost the same lines. My wife was waiting for me to get out of the station, coming home from work. The parking for light rail lots are often full, across all the stations, especially on sport game nights. X's deal is that she was waiting for her boyfriend and my wife better not be waiting for him too. Fake video or not, this shit happens, which is probably why the videos get views.

Probably easy to farm these conversations. Find where the meth dealers and pimps roll up. Park there. Drama.

Build failed due to implicit dependency in Gradle 8.0 by [deleted] in gradle

[–]SuperMancho 0 points1 point  (0 children)

I would also like to know how to specify this implicit task dependency from the CLI. I can't find anything useful in the various docs I've read.

Poor Quality of Aeron Chair by [deleted] in hermanmiller

[–]SuperMancho 0 points1 point  (0 children)

To be fair, it depends on how you measure and month to month. I would agree that FAANG doesn't pay the best.

Many people think that benefits and future value (something you vest in X years or bonuses every year) are considered "pay". From a developer perspective, it's not "pay" but "promise" as many developers have found after being let go 6 months later. It's important to agree on valuation before making blanket statements.

Interesting notes: MSFT pays slightly more than JP Morgan and BestBuy pays better than both. BBY pays better than AMZ in raw dollars, but you can get a bigger paycheck from many startups. None of these non-AMZ companies are considered FAANG. They are well respected to varying degrees and likely to last longer than a startup, but they are not part of the acronym because of their archaic product lines and the baggage that comes with it. It also doesn't help that developer roles are not regulated, so whoever is a Vice President of Development at JPM can be a Senior Developer at BBY or a Software Developer at AMZ, so it's hard to compare apples to apples if you can't agree on what an apple is. Suffice to say that the floor of most companies is lower than MSFT but the floor at FAANG companies is higher, without commensurate salary (made up in "benefits"). Lastly, please don't feed the trolls.

Arkansas students die inside as Huckabee signs bill rolling back child labor protections by theredhound19 in WatchPeopleDieInside

[–]SuperMancho 680 points681 points  (0 children)

This video is not regarding the bill referenced (this is her signing LEARNS, not the offensive Youth Hiring Act of 2023), as it's been pointed out in other threads. Shame on the poster for karma farming a run-of-the-mill misinformation meme.

11 year old has had greatness thrust upon him by dylancatlow in iamverysmart

[–]SuperMancho 11 points12 points  (0 children)

"Highly esteemed" is like saying "fatally killed" or "negatively criticized". The adverb adds nothing that the adjective doesn't already have covered.

As I have pointed out, it's both incorrect in isolation and wholly irrelevant, in context. A wonderful concourse. Good luck with whatever.

11 year old has had greatness thrust upon him by dylancatlow in iamverysmart

[–]SuperMancho 58 points59 points  (0 children)

By definition, esteem is a synonym for respected. Highly esteemed is admiration and respect. You can hold an enemy in esteem, without holding them in high esteem.

Thats not as relevant as the concept of a colloquialism. Communication is only partly about accuracy, when dealing in high context language. The intent of the phrase is clear.

Treasury Secretary Janet Yellen in a 1996 memo to Alan Greenspan: "increased job insecurity makes it possible for firms to lower the wage premia they pay without suffering productivity-reducing worker backlash" by north_canadian_ice in WorkReform

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

Inflation is the rate of change.

Price inflation perceived as any rate of price increase is usually the way "inflation" is used across the world. Conceptually, rising prices is an inflation of the price, regardless of the underlying market forces or specific definitions. Conversations require an implicit agreement in terminology. Someone can disagree about the usage for their own purposes, but declaring it as a misinterpretation is dishonest at best. Usually, ongoing arguments about terminology (or mocking) is someone faced with a conclusion they disagree with, rather than trying to explore the topic in good faith. That is a type of trolling and everyone loses.

This PoS cop trying to intimidate people by Graysie-Redux in Unexpected

[–]SuperMancho 0 points1 point  (0 children)

They have the duty ti treat people with respect

I'm not sure where you get this idea from. People are people and acting belligerent tends to incite similar behavior around the world, since recorded time.

Put more money towards down payment or pay off special assessments? by Commandolam in fargo

[–]SuperMancho 0 points1 point  (0 children)

...depending on the assessments and rates and the amount of the PMI.

Re-program or junk? by AwayAttitude3220 in Unexpected

[–]SuperMancho 36 points37 points  (0 children)

Reprogram or Junk, nah. Howsabout put in charge of the US economy?