79665773

Date: 2025-06-14 10:56:28
Score: 1
Natty:
Report link
  1. MQTT: A lightweight, publish-subscribe messaging protocol designed for low-bandwidth, high-latency, or unreliable networks. It's ideal for IoT applications, mobile devices, and scenarios where devices may have intermittent connectivity. MQTT is optimized for simplicity and efficiency in constrained environments.

  2. Apache Kafka: A distributed event streaming platform that handles high-throughput data streams. Kafka is designed for real-time analytics, data integration, and stream processing at scale. It's suitable for applications requiring durable message storage, replayability, and complex event processing.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hiroshi Goto

79665772

Date: 2025-06-14 10:55:28
Score: 3.5
Natty:
Report link

I think best ca exam test series is Gradehunt which helped me ace the ca exams in first attempt. I scored 374 out of 700 and also got exemption in 3 subjects because of their ca test series.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jubilee Property

79665770

Date: 2025-06-14 10:54:28
Score: 2.5
Natty:
Report link

I was in the same situation — using PHP/MySQL for core features and Node.js for real-time parts. I went with BigCloudy since they support both in a single hosting plan. It’s affordable, and their support helped me set up everything easily, including Git deployment. Works well for beginners too.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sumeet dhole

79665763

Date: 2025-06-14 10:48:26
Score: 5
Natty: 6
Report link

I was facing the issue below

enter image description here

And solved by applying the solution in this article. https://dev.to/michaelcharles/fixing-the-https-developer-certificate-error-in-net-on-macos-sequoia-516h

Reasons:
  • Blacklisted phrase (1): this article
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: YOUMSI MOUMBE ROMUALD JUNIOR

79665759

Date: 2025-06-14 10:44:24
Score: 2
Natty:
Report link
if (a!= b):
     print ("a is not equal to b")
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: soujan reddy

79665752

Date: 2025-06-14 10:30:21
Score: 1
Natty:
Report link
const JOIN_COMMAND = {
  name: 'join',
  description: 'User requests to join the community',
  type: 1,
  options: [
    {
        type: 3, // STRING
        name: 'name',
        description: 'Please provide your name',
        required: true,
      },
      {
        type: 4, // INTEGER
        name: 'age',
        description: 'Please provide your age',
        required: true,
        min_value: 18,
        max_value: 90
      },
      {
        type: 3, // SUB_COMMAND
        name: 'gender',
        description: 'Please provide your gender',
        required: true,
        choices: [
          {
            name: "Male",
            value: "Male"
          },
          {
            name: "Female",
            value: "Female"
          },
        ],
      },
  ],
  integration_types: [0, 1],
  contexts: [0, 1, 2],
};
Reasons:
  • RegEx Blacklisted phrase (2.5): Please provide your
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: khteh

79665746

Date: 2025-06-14 10:17:17
Score: 2
Natty:
Report link

This questions was answered by Oleksandr Porunov on the discussions tab of the JanusGraph github repository.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: HadoopMarc

79665744

Date: 2025-06-14 10:11:15
Score: 3.5
Natty:
Report link

First copy site packages of older version of python, then paste it into the new version of python. Then you can uninstall older version of python.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: yoyo

79665741

Date: 2025-06-14 10:05:14
Score: 2
Natty:
Report link

A new feature in Symfony 7.3 is arriving for these use cases:

https://symfony.com/blog/new-in-symfony-7-3-arbitrary-user-permission-checks

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Leto

79665740

Date: 2025-06-14 10:03:13
Score: 12
Natty: 7.5
Report link

i have the same problem at the moment did you find a solution?

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Romaissa Ouazizi

79665738

Date: 2025-06-14 10:00:11
Score: 5
Natty: 4
Report link

Have you solved this problem now? I also have a similar requirement — searching through approximately **300 billion (300B)** data points with a **dimension of 4096**.

Reasons:
  • RegEx Blacklisted phrase (1.5): solved this problem now?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: rubin wei

79665727

Date: 2025-06-14 09:38:06
Score: 0.5
Natty:
Report link

It is an older question, and Spring JPA has evolved a lot since then, but I am putting this information here in case someone runs into this from the search engine.

The details are described in https://www.baeldung.com/jpa-mapping-single-entity-to-multiple-tables, but in short you can create a single entity specifying that we have columns in different tables using the @SecondaryTable annotation. However for my personal project that is not appropriate, although it may work for others. There is also multiple entities using the @PrimaryKeyJoinColumn annotation:

public abstract class LogRelation implements Serializable {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    Long id;

    @OneToOne
    @PrimaryKeyJoinColumn(name = "id")
    Log log;
// ...
}

Another small update ... under the current version of JPA, you are best to make the fields protected/private and access them only by Getter/Setter, which ensures the population of lazy fields.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @SecondaryTable
  • User mentioned (0): @PrimaryKeyJoinColumn
  • Low reputation (0.5):
Posted by: Jennifer

79665711

Date: 2025-06-14 09:07:59
Score: 0.5
Natty:
Report link

This is not the whole story:

 set tgt=First
 if "A" == "A" (
   set tgt=Second
   echo BB %tgt%
)

set tgt=Third
echo BBB %tgt%

set tt=Fourth
set tt=Fifth
echo TTT %tt%

Gives
BB First
BBB Third
TTT Fifth

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Questaware

79665694

Date: 2025-06-14 08:35:52
Score: 2
Natty:
Report link
os.environ["MLFLOW_TAGS"] = '{"user_id": "your id"}'
ml_flow = 3.1.0
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: kelper young

79665686

Date: 2025-06-14 08:31:51
Score: 1
Natty:
Report link

The above code it right but there is a syntax error. Lost for sometime until I figured!

public class productOption {
    public Campaign_Product__c product {get; set;}
    public Boolean inCart {get; set;}
    public Integer quantity {get; set;}
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dipan Ghosh

79665685

Date: 2025-06-14 08:31:51
Score: 1
Natty:
Report link

On main.ts you need to do

await app.startAllMicroservices();

before the app.listen()

You can see the example in the Official docs

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: JoaoFCarvalho

79665678

Date: 2025-06-14 08:21:48
Score: 3
Natty:
Report link

You shouldn't use a variable that comes from the future. You can only look at it for inspiration when you are designing the model.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pancarsuyu

79665675

Date: 2025-06-14 08:14:47
Score: 3.5
Natty:
Report link

Has anything changed since this post? Would love to know if suggestions can finally be made via the API.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Luca Grand

79665671

Date: 2025-06-14 08:11:46
Score: 1
Natty:
Report link
Working Solution

The solution provided by Eduardo A. Fernández Díaz actually works. It reduces the path length through mapping a localhost network drive. Right mouse click on This (My) Computer and map network drive to the longest sensible path.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Martin Dodd

79665657

Date: 2025-06-14 07:42:39
Score: 1.5
Natty:
Report link

You can also assign classes to each of the cells in the HTML code. But Alice's solution is more elegant.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: AlainPre

79665649

Date: 2025-06-14 07:18:33
Score: 2
Natty:
Report link

WordsCompare: Instant Text & Image Comparison Tool**

Effortlessly compare documents, texts, and images with pinpoint accuracy! Designed for students, professionals, and creatives, **WordsCompare** delivers fast, secure, and privacy-focused results

https://www.wordscompare.com/

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Saddam Husain

79665648

Date: 2025-06-14 07:16:32
Score: 0.5
Natty:
Report link
tr:nth-child(2) td:nth-child(2) {background-color: #fff000;}

colours a single cell yellow,

<th colspan="2">name</th>

adds a column span of 2, centering the table head between the two columns.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alice

79665640

Date: 2025-06-14 06:55:27
Score: 1
Natty:
Report link

Your logs show that you are using the wrong version of Node.js (v24.2.0)

You need Node.js 20.18.1 according to the contents of .node-version and the instructions in the CONTRIBUTING document in the Requirements section.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: MikeMcC399

79665634

Date: 2025-06-14 06:43:25
Score: 1.5
Natty:
Report link

i went through jetBrains documentations and all what is required is adding

@EnableWebSocketMessageBroker anotation
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Stephen Esau

79665614

Date: 2025-06-14 06:08:15
Score: 3.5
Natty:
Report link

Upgrading Koin version from 4.0.0 to 4.1.0 fixed this error.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Pawandeep Singh

79665606

Date: 2025-06-14 05:52:12
Score: 3
Natty:
Report link

I've built a tool to do just this and am looking for beta users. Message me if you're interested.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Zack Pennington

79665605

Date: 2025-06-14 05:41:10
Score: 1
Natty:
Report link

FWIW, Cloudflare would be my number one option, however I did have a scenario whereby it was not an option (couldnt move the domain into Cloudflare), so I open sourced the solution I used.

I do hope it helps others.

https://github.com/DanielSpindler83/SendGridClickTrackTLSProxy

Reasons:
  • Whitelisted phrase (-1): hope it helps
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Daniel Spindler

79665599

Date: 2025-06-14 05:35:08
Score: 2.5
Natty:
Report link

If you're using sec:debug/, logs go to System.out, which might not be properly routed in a WAR/Tomcat/container setup. The correct approach for Kubernetes is to stick with logback and SLF4J, and avoid sec:debug/ unless you're troubleshooting locally.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dev_Jack

79665598

Date: 2025-06-14 05:34:07
Score: 5
Natty: 6
Report link

wow!! nice one, this helped me to solve my problem as well. thanks @RADO

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @RADO
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chidinma Okeh

79665583

Date: 2025-06-14 04:47:58
Score: 3
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ritik

79665570

Date: 2025-06-14 04:24:52
Score: 1
Natty:
Report link
$("#jsTree").on('loaded.jstree', function() {
    $("#jsTree").jstree("open_node", ('1'));    //Abre el nodo raiz
    $("#jsTree").jstree('open_all');            //Abre todos los nodos
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hugo E Martinez

79665569

Date: 2025-06-14 04:23:51
Score: 2
Natty:
Report link

Why is throw redirect('/login') not redirecting but rendering errorElement instead?

I was working with React Router's data APIs and using throw redirect("/login") in my loader functions to protect routes. However, instead of redirecting to /login, React Router was rendering the errorElement for that route or showing an error response.

I found that manually setting response.body = true after calling redirect() made it work (got this idea from this post answer of this guy https://stackoverflow.com/a/76852081/13784221 :

import { redirect } from "react-router-dom";  
export async function requireAuth() {   
    const isLoggedIn = false;   
    if (!isLoggedIn) {     
        const response = redirect("/login");     
        response.body = true; // 👈 This made it work!     
        throw response;   
    }
    return null;
} 

Explanation: Why this works (based on React Router internals)

This issue is related to how React Router internally handles thrown Response objects in loaders and actions. It distinguishes between:

When I throw redirect("/login"), it creates a Response object with status = 302 and no body. Now, when you also provide an errorElement, React Router plays safe and tries to render it unless it's very sure you're doing a proper redirect.

React Router checks for:

error instanceof Response && error.status >= 300 && error.status < 400 && error.bodyUsed 

So if bodyUsed is false, it falls back to showing the errorElement.

The Hacky Fix: Setting response.body = true

Setting response.body = true (or even response.bodyUsed = true) tricks React Router into treating your Response object as “used” and safe to redirect.

So this:

const response = redirect("/login"); 
response.body = true; 
throw response;

...acts as if the redirect body has been processed, and skips rendering the errorElement.


Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): Why isnot
  • Low reputation (1):
Posted by: dipanshuuu

79665563

Date: 2025-06-14 04:16:49
Score: 1.5
Natty:
Report link

why dont you run it like this in terminal

docker run --name pg-projectname -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=password -e POSTGRES_DB=projectname -p 5432:5432 -d postgres
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): why do
  • Low reputation (1):
Posted by: Ishan Shetty

79665560

Date: 2025-06-14 04:09:48
Score: 1.5
Natty:
Report link

Since this gets viewed a lot, even though it's old, I'll note for new programmers: this parsing code is technically correct but it is fragile: it will not tolerate any errors or variation in the nmea string and can crash for a variety of reasons. For example if any call to strtok_single() returns NULL, the strcpy will attempt to de-reference a null pointer (and crash). This will happen if any delimiter is not found. It's also better practice to use strncpy rather than strcpy for copying strings to avoid a potential buffer overrun.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: David Albert

79665556

Date: 2025-06-14 04:00:46
Score: 0.5
Natty:
Report link

Do these things...

Repository Settings

GitHub Repository Settings - Pull Requests

Default Branch Protection Rule

In the protection rule for your default branch, expand the additional settings under the require PR checkbox and deselect the merge options so that the only selected item is rebase:

enter image description here

Linear History Rule

Create a separate linear history rule that targets ALL branches:

enter image description here

enter image description here

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Allison

79665554

Date: 2025-06-14 03:57:45
Score: 1
Natty:
Report link

I read through the numpy code for this function but it is not obvious to me what determines the ordering or if it could be adjusted to yield more "consistent" results, so I think it would be easiest to just adjust the values after you get them.

A potentially quick and easy solution would be to just regress a series of points from your assessed "together" group and then grab whichever next point best matches that regression. Here is a sample implementation you can start from which shows pretty good results on a test set I came up with:

import numpy as np
import matplotlib.pyplot as plt
import itertools

PROJECTION_WINDOW = 4

def group_vals(xvals: np.ndarray, yvals: np.ndarray) -> np.ndarray:
    # Pre-initialize the array to the same size
    out_array = np.zeros_like(yvals)
    # Pre-set the first vector as a starting point
    out_array[0] = yvals[0]
    # Iterate though each vector
    for pos in range(1, yvals.shape[0]):
        if pos < PROJECTION_WINDOW:
            # If we don't have enough values to project, use the previous
            #   value as the projected value to match
            projections = out_array[pos - 1]
        else:
            # If enough values have been collected to project the next one,
            #   draw a line through the last PROJECTION_WINDOW values and
            #   predict the next x value using that regression
            # Repeat this for each position in the vector
            # https://stackoverflow.com/a/6148315
            projections = np.array([
                np.poly1d(
                    np.polyfit(
                        xvals[pos - PROJECTION_WINDOW: pos],
                        out_array[pos - PROJECTION_WINDOW: pos, col],
                        1
                    )
                )(xvals[pos])
                for col in range(out_array.shape[1])
            ])
        # Find all possible combinations of next point to previous point
        candidates = itertools.permutations(yvals[pos])
        # Capture the candidate with the best score
        best_candidate = None
        # Capture the best candidate's score
        best_score = None
        # Check each candidate to find out which has the lowest/best score
        for candidate in candidates:
            # Calculate the score as the square of the sum of distances
            #   between the projected value and the candidate value
            candidate_score = np.sum(np.abs(projections - candidate)) ** 2
            # If this was the first pass, then the one we checked is
            #   the best so far
            # If this was a subsequent pass, check the new score
            #   against the previous best
            if best_score is None or candidate_score < best_score:
                best_candidate = candidate
                best_score = candidate_score
        # Whichever scored the best, keep
        out_array[pos] = best_candidate

    return out_array

def _main():
    def get_eigens(f, b):
        array = np.array([
            [1.0, 0.2, 0.3],
            [0.4, 0.5, 0.6],
            [0.7,   f,   b]
        ], dtype=float)
        return np.linalg.eig(array).eigenvalues

    f_interesting = [-3, -2, -1, 0.1975, 0.222, 1.5]
    for f in f_interesting:
        count = 256
        res = []
        b_vals = np.linspace(-2 * np.pi, 2 * np.pi, count)
        for b in b_vals:
            res.append(get_eigens(f, b))

        res = np.abs(np.array(res))
        res_sorted = group_vals(b_vals, res)

        fig, axs = plt.subplots(2, 1)
        axs[0].set_title(f'f = {f}\nOriginal')
        axs[0].plot(b_vals, res[:, 0])
        axs[0].plot(b_vals, res[:, 1])
        axs[0].plot(b_vals, res[:, 2])
        axs[1].set_title('Adjusted batch', pad=20)
        axs[1].plot(b_vals, res_sorted[:, 0])
        axs[1].plot(b_vals, res_sorted[:, 1])
        axs[1].plot(b_vals, res_sorted[:, 2])
        fig.tight_layout()
        plt.show()

if __name__ == '__main__':
    _main()

Here are the plots it generates, which show the same features you didn't like in your original plots and corrects them all about as well as I could by hand I think:

plot 1


plot 2


plot 3


plot 4


plot 5


plot 6


Let me know if you have any questions.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: BitsAreNumbersToo

79665546

Date: 2025-06-14 03:43:42
Score: 1
Natty:
Report link

The register definitions (name/address mapping) are provided in the assembly include files that come with the various tools. Look for files like "P16F946.INC"

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: david

79665532

Date: 2025-06-14 03:07:34
Score: 0.5
Natty:
Report link

Well, in my case, it turned out to be correcting my silly mistakes.

  1. The GitHub workflow YML file was located in .github/workflow/deploy.yml not .github/workflows/deploy.yml. ("workflow"(wrong) instead of "workflows"(right)) I first couldn't understand what did @jonsharpe's words that the run didn't use actions-gh-pages. However, I believe this means the actions were not fired due to the incorrect path (in my specific case). After making that change, the workflow for page deployment now works on the GitHub repository with every new push event (as specified in the YML file).

  2. I also changed deploy.yml like below.

permissions:
  contents: write    # allow git pushes
  pages:   write     # allow Pages deployment

on:
  push:
    branches: [ main ]

jobs:
  build:
    runs-on: ubuntu-22.04

    strategy:
      matrix:
        node-version: [22.x]

    steps:
      - name: Checkout code
        uses: actions/checkout@v3
        with:
          persist-credentials: true

      - name: Use Node.js ${{ matrix.node-version }}
        uses: actions/setup-node@v3
        with:
          node-version: ${{ matrix.node-version }}

      - name: Install dependencies & build
        run: |
          npm ci
          npm run build

      - name: Deploy to gh-pages
        uses: peaceiris/actions-gh-pages@v3
        with:
          publish_dir: ./_site
          github_token: ${{ secrets.GITHUB_TOKEN }}
          nojekyll: true

There are some changes:

[11ty] Eleventy Fatal Error (CLI):
[11ty] 1. Error in your Eleventy config file '.eleventy.js'. (via EleventyConfigError)
[11ty] 2. There was a problem importing '.eleventy.js' via import(cjs) (via EleventyImportError)
[11ty] 3. `require("@11ty/eleventy")` is incompatible with Eleventy v3 and this version of Node. You have a few options:
[11ty]    1. (Easiest) Change the `require` to use a dynamic import inside of an asynchronous CommonJS configuration
[11ty]       callback, for example:
[11ty] 
[11ty]       module.exports = async function {
[11ty]         const {EleventyRenderPlugin, EleventyI18nPlugin, EleventyHtmlBasePlugin} = await import("@11ty/eleventy");
[11ty]       }
[11ty] 
[11ty]    2. (Easier) Update the JavaScript syntax in your configuration file from CommonJS to ESM (change `require`
[11ty]       to use `import` and rename the file to have an `.mjs` file extension).
[11ty] 
[11ty]    3. (More work) Change your project to use ESM-first by adding `"type": "module"` to your package.json. Any
[11ty]       `.js` will need to be ported to use ESM syntax (or renamed to `.cjs`.)
[11ty] 
[11ty]    4. Upgrade your Node version (at time of writing, v22.12 or newer) to enable this behavior. If you use a version
[11ty]       of Node older than v22.12, try the --experimental-require-module command line flag in Node. Read more:
[11ty]       https://nodejs.org/api/modules.html#loading-ecmascript-modules-using-require
Push the commit or tag
  /usr/bin/git push origin gh-pages
  remote: Permission to KnightChaser/music.git denied to github-actions[bot].
  fatal: unable to access 'https://github.com/KnightChaser/music.git/': The requested URL returned error: 403
  Error: Action failed with "The process '/usr/bin/git' failed with exit code 128"
  1. I went to the repository's related setting([repository settings] > [Actions] > [General] > [Workflow permissions]) and switched out to the option " Read and write permissions". workflow permission setting screenshot

After that, the pages are built as desired, on the branch gh-pages. GitHub action page shows the page was deployed on the gh-pages branch A screenshot of the gh-pages branch.

Finally, I could set the page's branch configuration to "branch: gh-pages, location: /(root)", like below. GitHub page configuration was set to see gh-pages branch

Now, when I access to the desired URL(<username>.github.io/<repository_name>), I don't get 404 error anymore since the page contents are well prepared to serve. GitHub page is now served without error

In short, everything was because of the typo (paragraph 1) that I couldn't find in the midnight in fatigue.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @jonsharpe's
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: KnightChaser

79665531

Date: 2025-06-14 03:00:33
Score: 0.5
Natty:
Report link

Apparently the schema for devcontainer has changed quite a bit. Here in 2025, put this in the root of your devcontainer.json:

    "portsAttributes": {
        "*": {
            "onAutoForward": "ignore"
        }
    },

And rebuild.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Charles Wood

79665528

Date: 2025-06-14 02:49:30
Score: 0.5
Natty:
Report link

Solution you can do, with some changes,

in the #banner element

#banner {
    width: auto;
    height: 100vh;
    /* rest same */ 
}

and in #banner img && img element

#banner img,
 img {
    /* width: remove it [from media queries also] */
    /*height: remove it [from media queries also] */
    object-fit: fill; 
    /* rest same */
}

Some considerations, resizing is not a good idea, you be using object-fit: cover. But, if you are upto something else this will resize to the viewers screen, and for mobile you can further modify #banner element by using 'dvh', due to browser header issue in mobiles.

#banner {
    width: auto;
    height: 100dvh;
    /* rest same */ 
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: hope__32

79665517

Date: 2025-06-14 02:05:20
Score: 2.5
Natty:
Report link

I don't believe the dollar-curly brace syntax works in the docker compose yaml file, but the way you have your .env file should suffice. And it looks like the variables you have defined in your environment block are overwriting what you have in the .env unless I am missing something

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: CraftedStack

79665513

Date: 2025-06-14 01:43:15
Score: 5.5
Natty: 5
Report link

Seems like this since has changed, i do recall it working less then 6 months ago, but when i try now it just defaults back to a plaintext form it it... any ideas / answers to this ?

Reasons:
  • Blacklisted phrase (1): any ideas
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Niels

79665512

Date: 2025-06-14 01:39:14
Score: 1
Natty:
Report link

You're having this problem because your program can't locate the path to your cert file.

To solve it, you can export the following env var and run your program.

export SSL_CERT_FILE=$(python3 -m certifi)

python3 your_script.py

Or

import certifi
os.environ["SSL_CERT_FILE"] = certifi.where()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rackymuthu

79665508

Date: 2025-06-14 01:17:09
Score: 2
Natty:
Report link

Although the OP has moved to OBS I will leave a solution here for anyone else.

I've put together a python CLI for Streamlabs Desktop:

https://github.com/onyx-and-iris/slobs-cli?tab=readme-ov-file#stream

So in this case it would be as simple as slobs-cli stream start.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Onyx and Iris

79665497

Date: 2025-06-14 00:46:02
Score: 1
Natty:
Report link

I tried again to have MS Copilot generate a solution to the Rotate(-90) issue of this original question and in their response they did not indicate the rotation-code as .Rotate(-90) BUT as .RotateLeft(). I made that single change and the heading text is displayed properly. I hereby provided the answer to this original question.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: John D

79665496

Date: 2025-06-14 00:45:02
Score: 4.5
Natty:
Report link

Ótimo perfeito muito obrigado gostei muito

Reasons:
  • RegEx Blacklisted phrase (1): obrigado
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gabriel Azambuja Pereira

79665494

Date: 2025-06-14 00:43:01
Score: 1
Natty:
Report link

75%

chats.html

<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><base href="../../" /><style type="text/css" nonce="kpWtN8fi">html{touch-actio n:manipulation} body {background:#fff;col or:#1c1e21; direction: ltr; line-height:1.34; margin:0;padding:0; unicode-bidi: embed}b ody, button, input, label, select, td, textarea{f ont-family: Helvetica, Arial, sans-serif;font-size:12px}h1,h2,h3,h4,h5, h6 {color:#1c1e2 1;font-size:13px;font-weight:600;margin:0 ;padding:0}h1{font-size: 14px}h4,h5, h6{fo nt-size:12px}p{margin:1em 0}b, strong{fo nt-weight:600}a{color:#385898;cursor:poi nter;text-decoration:none} button {margin: 0} a:hover{text-decoration:underline} img{ border:0px}td,td.label{text-align:left}dd{c olor:#000}dt{color:#606770} ul { list-style-t ype:none;margin:0; padding:0} abbr{border

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Siam Hasan

79665477

Date: 2025-06-13 23:58:49
Score: 2
Natty:
Report link

Looks like, as of March 2024, the language spec includes Promise.withResolvers, for a similar purpose:

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/withResolvers

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: arcra

79665473

Date: 2025-06-13 23:50:46
Score: 1
Natty:
Report link

Now could be used SWR in place of useEffect:

from https://nextjs.org/docs/pages/building-your-application/data-fetching/client-side

npm i swr
import useSWR from 'swr'
 
const fetcher = (...args) => fetch(...args).then((res) => res.json())
 
function Profile() {
  const { data, error } = useSWR('/api/profile-data', fetcher)
 
  if (error) return <div>Failed to load</div>
  if (!data) return <div>Loading...</div>
 
  return (
    <div>
      <h1>{data.name}</h1>
      <p>{data.bio}</p>
    </div>
  )
}
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Stéphane

79665467

Date: 2025-06-13 23:40:44
Score: 1.5
Natty:
Report link

The best solution is to delete the android folder and run flutter create .

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Solomon Adesanya

79665462

Date: 2025-06-13 23:26:41
Score: 1
Natty:
Report link

You can use multiple API Calls and merge the data,since you can get Monthly data without departments and Department data without monthly breakdown. Alternatively you can query raw transactions with filtering for date ranges and tracking category,instead of using the P&L report endpoint.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dilen-dev

79665461

Date: 2025-06-13 23:25:40
Score: 2.5
Natty:
Report link

update the email at C:\Users\USER\.gitconfig

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jack L

79665455

Date: 2025-06-13 23:10:36
Score: 3
Natty:
Report link

You could try saving the object with Hive first, pop with isValid and then go back and retrieve it from Hive.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ella

79665454

Date: 2025-06-13 23:07:36
Score: 3
Natty:
Report link

Ugh. I yanked several versions of this a long time ago. (I'm 82 -- I forget things.) Using higher version number solved it.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Burdette Lamar

79665449

Date: 2025-06-13 22:57:32
Score: 1
Natty:
Report link

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/af3fcb34312c57c0f52879cdce924b91-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REASwizzledUIManager.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REASwizzledUIManager.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/apple/reanimated/apple/LayoutReanimation/REASwizzledUIManager.mm -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REASwizzledUIManager.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REASwizzledUIManager.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/af3fcb34312c57c0f52879cdce924b91-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REASlowAnimations.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REASlowAnimations.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/apple/reanimated/apple/REASlowAnimations.mm -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REASlowAnimations.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REASlowAnimations.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/af3fcb34312c57c0f52879cdce924b91-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REANodesManager.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REANodesManager.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/apple/reanimated/apple/REANodesManager.mm -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REANodesManager.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REANodesManager.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/af3fcb34312c57c0f52879cdce924b91-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REAModule.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REAModule.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/apple/reanimated/apple/REAModule.mm -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REAModule.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REAModule.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/af3fcb34312c57c0f52879cdce924b91-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REAKeyboardEventObserver.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REAKeyboardEventObserver.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/apple/reanimated/apple/keyboardObserver/REAKeyboardEventObserver.mm -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REAKeyboardEventObserver.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REAKeyboardEventObserver.o

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user30785393

79665447

Date: 2025-06-13 22:56:32
Score: 1.5
Natty:
Report link

import numpy as np

import matplotlib.pyplot as plt

from mpl_toolkits.mplot3d import Axes3D

# Intervalo de t

t = np.linspace(0, 10 * np.pi, 1000)

# Funções vetoriais

x = 12 * np.sin(t)

y = 4 * np.cos(t)

z = t

# Criando o gráfico

fig = plt.figure()

ax = fig.add_subplot(111, projection='3d')

ax.plot(x, y, z)

# Configurações do gráfico

ax.set_xlabel('X')

ax.set_ylabel('Y')

ax.set_zlabel('Z')

ax.set_title('Curva da função vetorial v(t)')

# Mostra o gráfico

plt.show()

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: João souza

79665446

Date: 2025-06-13 22:56:32
Score: 2.5
Natty:
Report link

My interpretation of https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html and https://repost.aws/questions/QUy_J6aNWOQGyfK25hGrEb8w/do-i-need-mx-record-for-only-sending-emails is that SES requires your to domain to have a valid MX record so that bounce-backs have somewhere to go, but it does not require that the MX record point to SES if you do not plan to use SES to receive email.

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Lorrin

79665422

Date: 2025-06-13 22:17:23
Score: 3
Natty:
Report link

For those looking for an easy solution there's an Add-on that does this:

https://workspace.google.com/marketplace/app/random_data_monster/626703404158?flow_type=2

=randomdate("range",date(1995,1,1),"12/31/2002",$A$1)

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Temp Account

79665414

Date: 2025-06-13 21:56:19
Score: 1
Natty:
Report link

jects-normal/x86_64/ReanimatedModuleProxySpec.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/82b82416624d2658e5098eb0a28c15c5-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedModuleProxy.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedModuleProxy.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedModuleProxy.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedModuleProxy.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/82b82416624d2658e5098eb0a28c15c5-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedJSIUtils.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedJSIUtils.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedJSIUtils.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedJSIUtils.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/82b82416624d2658e5098eb0a28c15c5-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedHermesRuntime.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedHermesRuntime.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedHermesRuntime.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedHermesRuntime.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/82b82416624d2658e5098eb0a28c15c5-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedCommitHook.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedCommitHook.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedCommitHook.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedCommitHook.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/82b82416624d2658e5098eb0a28c15c5-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/RNRuntimeWorkletDecorator.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/RNRuntimeWorkletDecorator.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/RNRuntimeWorkletDecorator.cpp -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/RNRuntimeWorkletDecorator.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/RNRuntimeWorkletDecorator.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/82b82416624d2658e5098eb0a28c15c5-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/RNRuntimeDecorator.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/RNRuntimeDecorator.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/RNRuntimeDecorator.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/RNRuntimeDecorator.o

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user30785393

79665413

Date: 2025-06-13 21:53:18
Score: 3.5
Natty:
Report link

I would prefer Swing for beginners, as it is easy to use and extremely easy to style and use for modern menu's like what you are suggesting.(I am not a bot btw :))

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: JavaMan

79665407

Date: 2025-06-13 21:41:15
Score: 0.5
Natty:
Report link

You can't

You need to restart the webserver

Reasons:
  • Low length (2):
  • No code block (0.5):
  • High reputation (-2):
Posted by: Danila Ganchar

79665398

Date: 2025-06-13 21:26:10
Score: 9.5 🚩
Natty: 4.5
Report link

Did you ever get this working? I am having simular issues.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever get this
  • RegEx Blacklisted phrase (2): working?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Caleb Cukierman

79665397

Date: 2025-06-13 21:25:10
Score: 3
Natty:
Report link

i think error comes from filter(match_api_id == 492476) %>% # instead of = , replace with == ;

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alperen Bayrak

79665389

Date: 2025-06-13 21:11:06
Score: 2.5
Natty:
Report link

Correct, you do not need to use an annotation for the class to get mapped....however, there could be performance implications since the class scanner won't pick up the class as a domain entity beforehand. Details are available in the documentation: https://docs.spring.io/spring-data/neo4j/docs/current-SNAPSHOT/reference/html/#mapping.annotations.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jennifer Reif

79665385

Date: 2025-06-13 21:07:05
Score: 1.5
Natty:
Report link

For issues with Poetry on Python 3.10 and higher, first try updating Poetry to the latest version:

poetry self update
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sashavav

79665370

Date: 2025-06-13 20:52:00
Score: 1
Natty:
Report link

If the above methods mentioned does not help(like in my case). In the TagHelper class you may need to decorate it with HtmlTargetElement like this:

[HtmlTargetElement("div", Attributes="one-of-the-attributes-here")]  
public class MyTagHelper : TagHelper
{
...
}

This is how I was able to resolve the issue.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: phiwo

79665363

Date: 2025-06-13 20:43:58
Score: 3.5
Natty:
Report link

What if i'm using React from 'npx create-react-app'?..I can't install tailwind because i don't use vite, the documentation only has information for install tailwindcss for vite, postcss and tailwindcss cli but the last one didn't works

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What if i
  • Low reputation (1):
Posted by: sovm

79665353

Date: 2025-06-13 20:33:55
Score: 2
Natty:
Report link
[F2]=FILTER(B2:C4,(A2:A4=E2)*(C2:C4=MIN(FILTER(C2:C4,A2:A4=E2))))

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: rotabor

79665352

Date: 2025-06-13 20:28:54
Score: 0.5
Natty:
Report link

The answers for your question can be broken down as following:

1. A Skill from the developer account(s) is always accessible on devices which uses this account(s).

2. Per default any other user may only find a skill when the status is "Live" which means it was submitted, passed certification from amazon and was distributed to Alexa Skill Store. Besides the status there further constrains which might apply:
a) Under Distribution - Availability either "All countries or regions" must be selected or at least the once, which the account is assigned to. Otherwise it also can't find the skill.
b) Under Build - Tools - Languages you need to support the language which is set on the device.
The reference is: https://developer.amazon.com/en-US/docs/alexa/custom-skills/develop-skills-in-multiple-languages.html#:~:text=Customers%20who%20interact%20with%20Alexa,then%20optionally%20add%20English%20later.&text=Should%20your%20skill%20be%20available%20everywhere?

3. To make a skill available to non-developer account(s) but not for general public there is also the Beta-Test Feature: https://developer.amazon.com/en-US/docs/alexa/custom-skills/skills-beta-testing-for-alexa-skills.html - if an account is added there it will find the skill regardless of status.

4. Lastly, a skill invocation name is not unique and could be used by multiple skills. Alexa will prefer skill which have been activated (e.g. via the Alexa App) by the account. If not applicable it will choose the skill on popularity.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Anrufliste

79665346

Date: 2025-06-13 20:22:53
Score: 0.5
Natty:
Report link

Can you please try below way once:

 val now = "2025-06-13T15:00:00.000+01:00"
 val mockedDateTime = ZonedDateTime.parse(now)
 val clock = Clock.fixed(mockedDateTime.toInstant(), mockedDateTime.zone)
 Mockito.mockStatic(Clock::class.java).use {
     it.`when`<Any> { Clock.systemDefaultZone() }.thenReturn(clock)
     // call api
 }

Import Clock from import java.time.Clock;

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): Can you please
  • Low reputation (0.5):
Posted by: PPFromInfy

79665336

Date: 2025-06-13 20:16:51
Score: 0.5
Natty:
Report link
BigInt(0xffffffff) << BigInt(32)

will return the proper 18446744069414584320n

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Left_shift#description

For BigInts, there's no truncation. Conceptually, understand positive BigInts as having an infinite number of leading 0 bits, and negative BigInts having an infinite number of leading 1 bits.

Current definition of << operator for BigInt: https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-numeric-types-bigint-leftShift

Diff between BigInt and number: https://tc39.es/proposal-bigint/#sec-bitwise-shift-operators

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: n0099

79665335

Date: 2025-06-13 20:14:50
Score: 4
Natty:
Report link

There is a PR addressing these issues on GitHub, but it hasn't been approved yet.
https://github.com/alann-maulana/flutter_beacon/pull/150

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Alexandre Levi

79665321

Date: 2025-06-13 20:02:46
Score: 0.5
Natty:
Report link

Passing a pointer to a function (even a const pointer), opens up the opportunity to change the data in the memory the pointer points to.

Therefore an auto conversion to const char* opens up the possibility of directly modifying the string buffer of the std::string object instance, without updating the metadata variable of the object instance. Bad. std::string has an API, including some nice convenient operators that tie into it to perform functions on the data it contains.

It is basically a std::vector for char data, with extras for common string work. A pointer is a blind address container, just an unsigned integer. You can get string::data() as a char pointer, even so. With that you can read or change the characters (but not the size of the buffer!).

(Note: c++98 string::data() returns a non-null_terminated char array pointer, C++11 and newer do return a null-terminated array.)

So what then if you mess up and assign the char pointer to some other char array inside the function? Not much, but it does not affect the std::string object outside the function, or its internal char buffer.

So they made that conversion to a "lower form" of string explicit, because it is too easy to make a mistake that might not be caught at compile time, and probably would be hard to debug at runtime.

Additionally, a pointer to an empty string instance buffer, is not a NULL pointer, and there is no way to know if the data in the string buffer is initialized to good values beforehand. const char* is a legacy form of string, but is just too convenient not to use and so on.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Chris Reid

79665311

Date: 2025-06-13 19:52:44
Score: 1.5
Natty:
Report link

([[This file was protected with MoonSec V3]]):gsub('.+', (function(a) _zFYIzCSXTMyC = a; end)); return(function(y,...)local a;local h;local n;local r;local _;local m;local e=24915;local t=0;local f={};while t<420 do t=t+1;while t<0x3ce and e%0x224c<0x1126 do t=t+1 e=(e*491)%27860 local d=t+e if(e%0x3454)<0x1a2a then e=(e+0x1b0)%0xace6 while t<0x118 and e%0x4344<0x21a2 do t=t+1 e=(e*509)%26894 local n=t+e if(e%0x2712)>0x1389 then e=(e-0x2d7)%0x1180 local e=52293 if not f[e]then f[e]=0x1 _=string;end elseif e%2~=0 then e=(e*0x2c9)%0x8d27 local e=67479 if not f[e]then f[e]=0x1 r=(not r)and _ENV or r;end else e=(e*0x66)%0x32c5 t=t+1 local e=11050 if not f[e]then f[e]=0x1 r=getfenv and getfenv();end end end elseif e%2~=0 then e=(e+0x38f)%0x4ab4 while t<0xe3 and e%0xb2a<0x595 do t=t+1 e=(e+535)%8880 local r=t+e if(e%0x4534)<=0x229a then e=(e+0x354)%0x40f0 local e=73701 if not f[e]then f[e]=0x1 a=tonumber;end elseif e%2~=0 then e=(e+0x16b)%0xb31d local e=34667 if not f[e]then f[e]=0x1 end else e=(e-0x310)%0x4162 t=t+1 local e=17686 if not f[e]then f[e]=0x1 end end end else e=(e-0x20d)%0xa5ad t=t+1 while t<0x192 and e%0x1f58<0xfac do t=t+1 e=(e*306)%13321 local d=t+e if(e%0x29a6)<=0x14d3 then e=(e*0x3a5)%0x2386 local e=82783 if not f[e]then f[e]=0x1 h={};end elseif e%2~=0 then e=(e*0xe5)%0x2aa1 local e=2040 if not f[e]then f[e]=0x1 n=function(f)local e=0x01 local function t(t)e=e+t return f:sub(e-t,e-0x01)end while true do local f=t(0x01)if(f=="\5")then break end local e=_.byte(t(0x01))local e=t(e)if f=="\2"then e=h.Vm_hhhCP(e)elseif f=="\3"then e=e~="\0"elseif f=="\6"then r[e]=function(t,e)return y(8,nil,y,e,t)end elseif f=="\4"then e=r[e]elseif f=="\0"then e=r[e][t(_.byte(t(0x01)))];end local t=t(0x08)h[t]=e end end end else e=(e+0xda)%0x4842 t=t+1 local e=55070 if not f[e]then f[e]=0x1 m="\4\8\116\111\110\117\109\98\101\114\86\109\95\104\104\104\67\80\0\6\115\116\114\105\110\103\4\99\104\97\114\120\71\120\99\89\80\83\115\0\6\115\116\114\105\110\103\3\115\117\98\72\87\103\83\76\80\110\106\0\6\115\116\114\105\110\103\4\98\121\116\101\112\75\72\118\100\112\70\67\0\5\116\97\98\108\101\6\99\111\110\99\97\116\81\69\111\84\83\118\100\105\0\5\116\97\98\108\101\6\105\110\115\101\114\116\68\73\79\69\117\69\90\116\5";end end end end end e=(e-723)%42161 end n(m);local e={};for t=0x0,0xff do local f=h.xGxcYPSs(t);e[t]=f;e[f]=t;end local function d(t)return e[t];end local d=(function(m,_)local y,f=0x01,0x10 local t={{},{},{}}local r=-0x01 local e=0x01 local n=m while true do t[0x03][h.HWgSLPnj(_,e,(function()e=y+e return e-0x01 end)())]=(function()r=r+0x01 return r end)()if r==(0x0f)then r=""f=0x000 break end end local r=#_ while e<r+0x01 do t[0x02][f]=h.HWgSLPnj(_,e,(function()e=y+e return e-0x01 end)())f=f+0x01 if f%0x02==0x00 then f=0x00 h.DIOEuEZt(t[0x01],(d((((t[0x03][t[0x02][0x00]]or 0x00)*0x10)+(t[0x03][t[0x02][0x01]]or 0x00)+n)%0x100)));n=m+n;end end return h.QEoTSvdi(t[0x01])end);n(d(64,"(>V%apvxScP_2Ok#2VSpxV%>#v_axxaV>p2S_pvP>P#>_vCV2>_.ScvpdS#cPSp#R2#caVR>#>#xSaxx>P2c_cxp>>SVa%%%#p_cS>vSuS#xP>xv>%O>aV3V#x_Vcaa%%cO%POv>V#kxaVqp#V_vxV%v#S2S_Sa>Vp2PS#xSVvSVa%%a#>_S_Sa2>vk%PkpS%v#vaVC%#V_LxcvOTO2>SxvkV_2xPPoV2%_Sx%%c>%OaPvvkV>2VS2xS2VSpx%%%#c_SxVppTVO%S>pcj#k#Pc)V2%_Vx%%SVV2xP>vp%c2__vp%2VS%xV%%#pOp_Vvk>%2SP2vv>xSVap%V#%_vxa%SV>#pPPa#VSOcS>xS2VS%xx%>#V#>_%avFxkPS%pVVSSVa%%%#p_v_PvkVxO#c>vcV>k2aV9%#>_Sx aS%v2PSpxS%P2VScCV2p_>xS%}#p_>S>v%Vpk%S>aPC2kkaVe%#V_;x>xa>SkpS#vO>Pk>P>eV2p_ax%%>#x_%ScacVxkx_xaOlSODaV.a#>_axR%v!%Op_xpaVpOpPcxc2VS%xx%U#%kS_av%%vkVPSa2%vSVa%%%#v_>PVvO*_2%SapxVV2paVIa#x_axF%>Vvka_%vOVxkxc%ac2VS%xV%a#v#>SSp%VO2PP_p.H>SVaa%S#p_ZxVp%>v2OP>a>>P#LP>!V2%_pxS%V3VkOc>xv%V#>SOp%2VS%xV%c#>#SPPa#>P#%PSaO%SSVaa%V#>_%xSvpg_kc_pv>upO)_ahV2%_%xc%pV>kkcCpp%ak#POa22VS%xc%S#>#SSapxVpk%c>xa=#SVap%V#V_cxv%pV_OvSVa#>VkvScxS2VS%xv%p#D#aS>xp>bO%ccv>VcSVa%%%#V_pc#a2 SkOScvcVv#xaV1%#p_xx>av%PkSPxaxVk2pPa6V2p_axp%H#l_vcPv>mP#xcNxS>Pk%aVK%#%_VxcxP%P#xPOaVVOkpSpUV2%_axx%c>VkaPSxa>x2_cpvv2VSax>%v#%_ac>x,>pOaPOaV%v#SaVe%#v_axVpVypOa_aa_>pO>_a)V2%_%xV%>%%2%S%p%Vck2cVac2VS%x>%a#jkaSxa2K_#aSavpz#SVa%%>#>_v_vavea22P#ap%aOPaVZp#a_cx,%p#>kSScv>%ckxPVp>AOSVaa%>#V_pxaaVV%OKSvpaBOkSP2eV2%_vxV%x%SkpScxV6%22cxva2VS%xc%>#%k_S>xPza2PPaa>%SSVap%%#v_axp%SV#2cS%a%,%2_Sva%2VS>xVxPzp22_aa>X#k2S_=V2>_%_>xaV2k_cVvV%p#>aV->#a2VP#xVVVkcSpaPhcSVa>%pfakaSvva>vka_VxS2p"));n(d(162,"w2%.{3xcsnht:/B=3B:%s/B:{sn/k>3c3%2Tc=/3.xn.:t3ns/B3x:tt2t2scc{Xn2B/3xt{BB{nh:..x{B/.tcBnc=n:%%%cc/h.Bc3Bh3ssx#/3s:22t2sc:{chxF%3cth229//.%3nxB.{xs{*%{.h3mt3nts2t%:sB33hc2sxhx3%hs6/=3Vhxb23Bns%s3%/.%/s3ssBBt.K.co:c2/sh/3{xn2=43sh=Z/c%/%.xs2:t{/n=n:=/hh2cc.B%.tn:tt{Yste=cx/..{xct=/h.s1n32tc%*s.:=.hn/:n{/h==.=:3nB=x:/={.s/B=. n3Bn(sxh.{s/B={Bhh==x%tn2%c./2{{xt/x.ftnh)0./l2tchB%.n.sa33:t:4txt/2%3xsBx{ns{Bcc5hsts2sB3.:n:Bt{tt2V.{s/n.{c3t/%:nBns=c:A%Ac3/s.:xsBt%.n===3=n=%x2:c:{xn=)2xHt:22c{:tG{x/:2%/h.vt{chsts23/B.Bn.=x3hhs22xB:n%2n.:{%3.snsx.t.2sx=:t.hnqB{3{t.=3{ctcCc2{cx./s=k53%{/):c_/2%=ny:{32h%Bx.Bth=n3cc2"));llUfzboIvmxWdbK=function(e)e((-h.BUHujZqv+(function()local f,t=h.IeHyh_Ly,h.wDwZIyuQ;(function(r,f,t,e)r(e(f,e,t,t),e(e,t,f and e,e),f(r and e,e,r,r),f(t,r and t,f and f,t))end)(function(e,n,_,r)if f>h.AhHwavSQ then return _ end f=f+h.wDwZIyuQ t=(t*h.TCySmaog)%h.HxAeJOxf if(t%h.xLVcnXvv)<=h.mMAGnkGj then t=(t*h.STfnaBLx)%h.UBSAYOoi return n else return r(r(r,e and r,e,e),e(n,_,n,r),n(r,e,e,e and e),r(_,r,n,n))end return e(e(e,e,n,_),n(_ and e,n,e,_),r(_,_,_,r),r(_,r,n,e))end,function(r,n,_,e)if f>h.bGaeyKvS then return e end f=f+h.wDwZIyuQ t=(t+h.UrnSHlfW)%h.aujOhYAx if(t%h.qsFGjCRh)>=h.zng_Qial then t=(t*h.HvJExzBI)%h.AcecAJLn return r else return e(r(n,e and e,_,n and r),r(e,e,n,r),_(r,r,e,_)and e(_,r,e,e and _),e(e,e,n,e and e))end return e(n(e and n,_,_,e),_(e,r,r and _,n),r(n,_,e,e),n(n,n,r,e))end,function(_,n,r,e)if f>h.mMAGnkGj then return r end f=f+h.wDwZIyuQ t=(t+h.tXeOmZaa)%h.IIggwMHP if(t%h.CUwTeUiy)>h.htcvbhLv then t=(t+h.bmKCDWbE)%h.fdsmggSI return _ else return e(_(e,r,e and e,e),_(n,_,r,r),n(n,r,e,_),e(e,_,r,e))end return n(r(e,n,n,n),r(_,n,e,r),n(n,_,r,_),e(n,r,_,r))end,function(n,_,e,r)if f>h.qHSmJkPA then return e end f=f+h.wDwZIyuQ t=(t*h.xLVcnXvv)%h.SVMaAZpa if(t%h.BmQvrqMS)<h.xjOZshMx then return r(_(e,e,n,r),_(_,e,r,e),e(r and _,n,r,r and _)and r(n,e,e,r),e(n,n,n,e and e))else return _ end return e end)return t;end)()))end;KbdWxmvIobzfUll={h.beezCPLw,h.BgA_acEn};local e=(-h.eKiuaEPt+(function()local r,t=h.IeHyh_Ly,h.wDwZIyuQ;(function(f,e,t)t(f(t and f,t and e,e)and e(e,e,t),e(e,e and f,t)and f(e,t,f),f(t,e,f))end)(function(n,f,e)if r>h.anPUtomL then return f end r=r+h.wDwZIyuQ t=(t+h.xDWecQtO)%h.kVBORfIx if(t%h.tAuPSYai)>h._LHmIifw then t=(t+h.FzhgGnEd)%h.ZaJwPxZc return f else return n(f(e,e,n),e(e,f,e)and n(n,f and n,e),f(e,n and e,e and e))end return e(n(f,e,f),e(n,f and n,e),e(f,f and e,f))end,function(n,f,e)if r>h.zzwmBmeE then return e end r=r+h.wDwZIyuQ t=(t*h.RdhtWKUf)%h.QpUTmBvx if(t%h.RETtKUQt)<=h.sCCSilRI then return e(e(e and f,n,n),f(e,n,e),f(f,n,e))else return e end return f end,function(f,e,n)if r>h.dGLKtDeO then return n end r=r+h.wDwZIyuQ t=(t+h.vFDLoEtZ)%h.hIaygbQM if(t%h.BcPFTMhl)<=h.xeIrCLWd then t=(t-h.kAzDJdAx)%h.oICCCKFC return n else return n(e(e,e and f,n),n(n and e,f,e),f(f,f,e and f))end return e(f(f,n,e),f(f,n,e),n(e,e,f))end)return t;end)())local l=h._FyvYCTh or h.aFfkHMxR;local _e=(getfenv)or(function()return _ENV end);local r=h.zELtAOlK;local n=h.qtlkRbuq;local ne=h.wDwZIyuQ;local m=h.BorbiEJI;local function re(o,...)local s=d(e,"xrEw^fqmJy#t_0*XJ_yqqrE_Xy_0J0fJEw*_*y0y#qmq^P0y_my^fywr#ymJw0aJ0wy_#ffX^Xr*#*qEwtXq_rJ_ff^t^wrr_*y#mEr*XX0tyr^mEt2ft0JXgyXwy0qJwwX_XJ_Xy#qrX_ry0m#*m0wJrr00#mrXEtum_f^tq^w{T1mmyfqEEJXwt0JtfJr^0*mwEtX_tXJ#ffr**_mXnE__*0JrEwm#^*&*0y#^q0qJfrEt0ftEJ#fyrm0_#yE#XJt*Jyf^r0wmMt0yyXrJ*J#_mm^E+t2X*t_mJffyE#y0qfw+Xt_qyry_m_wEtXyEfwr**ytEtqy0f0^(Xm_XqXqJEm#fq0wJIw_*yyq^fwt#_myJftEqXrt#_^mXf_*X*_0#y*rq*f##mf^%ny1wX#t^Jt^*_X#JqwE*Xy_E__Jmq^Ewrr0^yXqJ^P0t0y#wq*w^X*mqq0R#0f#aqyqw^yr_*##*mJXXr**^q=m*wt5X0efmqXwE=t0qJXqbEy#X_*y^r(XX*X_^mXfqE^*rmqwwwTu**m#Xmy^wrw0:m4Er*Jtcmt^qrr0_#mttm0T#*wy*qyw^X0XE*_tmm*fqXt*mt+mJwXM^tm#^q^wTtrmX^frY0t#^#qJ^ftr*yXq*wwX*_yyEtqJw^trq*rfJw^*_tmJE^tfEE0zm_XymqElw*0_ymqffEr*qtyJm^yEE*0qrEyX^tXJ#ffElr_XqJwf#rm*E#0mqqXqww^X{_J^rqrEy#Et0myfmrqy^q_EJXwt*Jmyr^_Eyt_tw#rq^EXXJ0hqwr^ *0Jmrwy.^_Xy#qfr3q#?qy^f_EmXEt0JJtwJ_EytqJ^^#rf*?#ytEq_f_Et#^mJwJuw_*ymJ*mm^XEE0JtfqB^rr00wffr0*Jtwm*^yr^0X*#mm^J,t0q#rq#qrfJEq*^yrJ#^y_mXf_6JtfqEr*_wmft*#tEm0^Jrw0*qy0qmXV00f#nqtwq&r__0t#EEXlE_wJ*fyEEE#Y#*,#wqmErX00t#Er^*r#Jmww*emraXJt0wJtJ*yrt^_m0#XJL^_ftt0JmfEr0*Jtw_q*Xm0^*rr0_#mmSm^ftrtX*tfJ0fy__y0qHEtXqtX_y#wq_^Jk*0_qmrt(w#Xm#^fC*rJXE_0ytR*FfXwtqJr^#EEyt#rqm *8^y#Jwm#wJ4wJyJ#q^w_aJ_yy#q^*##myJwt5q0ry##EJr^0EEy##tmy^m/tyrtwqJ^ft00J#fq0w0Xy_Ey*f#E^#t_0J#qarX#Ey#JmfEr___#ymEX#Xt#wfqwJ*#tfJL^y^^E05m#*ytqwEX*X_my^q^Xy*y#0Jf^yrE0_yqmm^=rE0e#qErJw^0rJ*w#*myf^tf^wrr0m#Eq0wqqrrq*ytXwEX#_fy7ftEq0rEq_mf^EE*Jtwm*^m^XEt9y0Z^ErJ0q#rq_wfwtryXEtwJX^f*0*ttfJC^qr+JJqtr_*mtEmtm_qyw^X*#*Jtf^rt0#_qJXfrEr*ft_f_^Jl*0y#fmyrmrf*{#yr0*_trm_^mrb,mX*_qy^qE0q#Xq#wfCH_y_J##mmwfEr*rtffw^^hE*fy_fqwJIwm0^*rr0_#mmzJmf*EJXytfJyf#__#wq2EtXqtX_q#wq#^qBE0EJyqf^wF##wytqX00#_mrw_cm02_0t_mt^_rfyqq_E#Xf_oJyyw^*Et*#0JytqqEXdm#mJDwX0_#tmuwt?q^^r40yytqtEXyqf*EyX^tXJ#ffw^EttJJJ^_rm*E#t#AJ0qyEyArttw_Ew02ytqqEXwmrq0#tEm#^0_f0q##mJXrrr0#ytqtEXtw_t#Er^wE*0_mJyftE##rJq^}X005yrf_EmXgXm0*#_myrXu0_#yqq**EtSmq^r(_0f_X_wJ0f*03#Jq^EXX#wrX_toJ_qtr*XqytywffEt0f#0mqE##_Jr^},t0qyXytyEf0E^0E#XJmfqr^0y#qEmXJttJqfrr#rqX*_fywfXwm/wmq^m2#0f#<qymwfrEq*m#tJs^^_fyqfyE^*XtJ_Iy_m#^r0#0E#qr^*_#Jmww*<mT*Xf_qJ*^#rm0-#yJrfr*t*w#tq*XrtyJ^^Xr#*ftG*^ qrwJr#mmEw04q9EX^_mwtf#E?y_J*mmfr_Jtq#0mE^ErE#ywXE0*t00_q#ormEt3rmJJfqm0yXJ_JJ#^*r**EqqJf^^V_yE#-mm^I;t_##Eqw*#_^twytfXEX#__>ySe0X_*_rm_fwEr0*qfmr^yG#yrtrm#wmt0ymmffXwfXf_0J0f#*}XX_f^r^XrX*mtOJw{wEm*JtyJrX#QJ0X#^m^^^_#yq#Q^twmZm_w^yE*0X0wtt^Vqs0q_wt*Jqfmr^*)tmE*^ErJJXJ*q0wf/yJq#qr_w^Xt_^yZqm0*Xrtfyf^X0fX^t#wqfJK0* tqw_^qXq00#qqy*X0*_q#yq**rtwmf^h;t0^X__Eyrf0Eq*JtJm_X_^JXf#EfX9tttqyrr*kftEm0^Jrrr#XymtmwfEEd*_mEmXqr0w#tqyq#^^rX*0qoq_^^5fJ_q0qm^EZ#0E#rry0Xt^mww*:y0E_Xt*m0^*rm_+tmmX^0rt#mf#wc**tyJ^^0qy^68t0EJ_q#EJXX_*JyqEE*#.q*w^XX_#ywJ_J:fErfJXfmEE*0tJJw_*fXE^tr_m^frK0t#^yyJmfEr**JqXq0^#rr*0#ymyX_*y*mtrm_^El_Jyyfq0E*tftqyrq**r0X_tJm^*E^*J_:^mrE_X_#trJwXtr^*cf_qyw*X*0fy_q_wVt^#fyyqm*Y0y_f^rfXEq#Et#myfrEmyy##m^wtry*f#0qt^^tmJ^^trq*r##0r#EqE0t#wq*wy3^_Xy#ffqXX0_tyrf_Emqqr**#tXJw*ttqmX^#rf0*0^mJ^f&_0m#E_Xtrmmwwytq#EXX#_fJ*tEmX^rrr*Ef^E**Jtwm*^mw0EmX^_mJ*q^E_X0_rJEE_Ew*ttyJmrw_mEyXwt*Jyf^rXF#ft*yt0m0^Jrw0_*w_#ytqwrX*_#fm*fqEqyyqfE0XJ_wLr_*JqXr_wJff3rt*^*__#EqfEy0rttymk_q*wJ{w_*yyq^mX#BE*X*_EJ0fJErrJlX0m#fmwXXtwmt^qrr0_#mmEmt^J0f#fqyw^XX_Jt*tqJ^^ra0*ffyEy*0tJJwt^JJfqr^0t#JmJ00twmrw_7m0Z_mt*J_fwrf*0yJmE^3rW*mt}EwXytmJE^0rqErXq_yyXw_wbX*y#J#fqE^*mqyw#X0_Jywf_JE^!rm*q#rm#^qtyJr^_rm*E#0mJ^t^*0ttJqXw#Sf_*0EtXm0fRrm**trEXw5<#*E#*qX^>?#Jmr^yf^_#_mm^fK00J#wq*wy_^^r0#qmw0Xt_qyrf#mm^qrr0zf#mywXrd_yyyr_w_#0mt^rN_0m#NttJ+fmr#ytmSEXX#_fJ*Jwmtwt)t00#tf^w*sw0w#^rm0X##mf^}Ktfq*_E_wykX_0yJqwE_wfX^_E##mX^t**_*trmE^wo0mXf_rw0*#ymEmJqqE##mtyJEfqrJXK##JJ^^_#qE*N_J_wffh^fwrt*qtrm_^mmE^#*Jmf^t:y0^yXqJf*fqE^*r#0JfErrJ*i#*m_:JttJX^Xr#*f#*tqyEm+wm*rt_JfftrX*yqtwXXX_#yff*qm^0T_0^tEq*X^*t0yy_r_*^#Xm#^frhmtr^trw*rr0Ey0qJwrwJrf0_tJm^^^0f#RqtE^*_tmJE^0rJ*w0#ty^m6X0##fmLwtJqw#0_q#wEX0_Jywf*Eyq0XXJ_f#E7*ttqmXJw^0r_*Jmt^wi*0y#^qXw#fwrUy0mcwrX__my>Jmmt^yrJ0fJ^qy^DL#JEf0rq*r#_mfm*q^Ew*t_yJfet5EX3twwm_X^0wqwl_JJ*_!JJfwr**yt^mXtwff*EtEmq^rL_0f*X_py^qEE#XwqqwmX#_fy<fy^Xwyrr0fy*mq^EtfJ*^yr^0X#J#FJ_qfEI*0_rJE^#EEXwJtmy^^r&0#f0EfX%ttJqfrr_*mtEmX^0rw0*#ymEqJqOEpB)q0wX4r__ymqbqyEJX0*ytEm#^rUqJJf{rt*qtrm_^m:Ey_##m0w*uy0^y0#fJ^fsrf*JtqmJfrr_JXqEEw**tyJEJwqEwfsf#JyXfyw{Xwm^^#lJ0wy*qmq^f^ErXrttff^fiy*r#fq*wJt##^^*ry*^#00q^_fJw^XEmJq#^XwE#^tJJSFfEfyt#mJw^r_m*yy*m_wquq0E#Eqq*#*y_Jy^qy0_#ymOwtQq_XXrtwygXX01ywf*EyXE*y*7##mfwm9O0_^Xrm*E#0mJ^w^*^J*^mr^JOf0Oytq^mmf0X^0EJ0Jyr0XJ_JJXfw^#0XJEfqrq*r#_mfm_qJETX*_#ywE*Ef*ftrwE;^_qyrf_EfE03y*m#*fJwyrf_t^_rf*i#tmq^wrf0m#Eq0wqwwEwXwtXmm^X:X0_f0wrXrt_JmfUfJw^rE0ymEmZw#Ff_tyfc00*#rq_wmQcR^*;#*my^yry00f_wyXTttJq^X^^wMH_0wytqXwyXfy*yffXw;*__+yrwtr_XJ#*EXX__wJ*fyJmfmrtXmfEf!*qtrm_^f^_wwX_tXy^f*Ea#q#qJX^_rqy0y*mJfwEry^Jtmyw_Km0v#JwGEEX00#^0^^wEXf_cJyqr0#*T_tq;w*XqtXy_qqEE_JtXJ0fnEmr__mfPEf*^#Xm#^w^tEmIf__m#q8r#X^tXmX^y__y^fXE#Xf_HJt#Xqr**_wJE^0rJ*r*t_q#wrqr^cKt_Jwfyr0Xfq#0qq0}fy0wf__t^X*J_q_E2*ttqmXmffXE_XX_qy_q^wfXyt#mff*rJX<_.JJ^^E 0*tEmEfw_cywf^rX*#twt#yfqXE0XJ__m)qyEJ#qq*wyj^_Xy#qfmytt_J#wf_EmXEttt_#ym#^wA)#J#qmkwtjr_tfywqE#XEtmJ#?f0^yyq^EXXJL:*Htqmyw0tXJmfEr0*Jtwm*J00^*rtfmf^Y8t0^_X_EyEfrrf*_J_J^^_bXyrq^EfX!ttJ^J_qJ^qo0t:y7f_E#X_mq^#W#0f#NqyqmwtME__J*JE^Ery0y#fE^X;t_yrf6rt*q#X#XJXmEwwe^_*m^qErX*t_wwmr*_tyqqrE#w^**_yymE#Er7X0Ey0qqw*tmt0JwE#Ek#*yXyqf^rX#f#qJ=fJE^*ftqJ1XJ__J_fmEE*tXw_X#0m^}*7f_0ytqyXf#Jm#w_Wm0EytyXJyfJry*X#XJ&^#_EJ0fqEr*_tf_rfArJ*w#*my^^_Xw_qfmwwt;q0ry_qmtE^*RJyfw#EyX^tXJJmXmq^frrJJq<r*X#_5y^f#Ef*_ttJqfr>_X#XrtqJqfqtJ_t#yJP^Xv**E#7q#Xr_yJmJEqXE0NY_my*qr0X0_^J_fR_,JtJ*y3 EX0*##Jmt^Ery0_f#ftwfp00yy#qtwft*m0#rqEww#ytmJFfJ0fXftyJEfv>X*EqEf.^0rq*E#Jmr*XXO#tJJrtrwXE_mJ_q^00*y_rJEjygv**#0mq^_t_q#0q0f!8m0XfJff^wLm0EyJqJE_tDtrq_^y0_0w_rJ^^Xr_*_tb^EXXXJ*^t^Et^fjX0Jt-EE^rRK_^#EEf*^X+_qyJfX0t*m_qy(fq0E_#tmmm^wrfy^JJmJ^J9f00##qqw*tmJEJ*qqEm#*#qywfwrXXrm.J(^mEw*J_9wEw*4t0q#wm_^mtX0*#^EGw5D__qy*m2*EPwt0yfqrEEXwt0^JCo0#y^fXE#Xw*#0*#Eqy^fXE_*#_mwry5w#qy#fywqXXmwq*wyj^_Xy#qf0CRmyqf*EyX^tXJ#yfJ*EttJyr^_rm*E#t#XyqfqEwXPt*ypfJrt*mtXq_^JEq*0fXwwXwt*JyfEfw^Us*_m^mEw_Qm_0ymNX*r#wq*wy5Eot_#JXJqf^rt00tfE#XEt0JJfwr**yy^t*^_r0*:#tmqwXfywnXJ_rmrwrXmytq_EXX#_fJ*Jfq*^#rm00#JmE*#0rm*^yr^00*r_*J_fXEqX0_<w*wXryXrt0m*^Xryyqy;mEXmXJ0wt=Ewr#=J_tyqfXwm#_m^wX3#0f#}#typ_r_X_#yfqlEtXq_rw_qwXrw^Jff-rt*^h+0m#Eqywm_yJyf^f^E^Xyt^Jtfyrq#t#tJE^t0J0f#Xmwj^rm0-yJqywtbq_0#TEmX^_rJ0fmE^*Xt_JrfArm*r#Xmy^#r^0##_mmwyhw*E_tmmq*^=**06ywm<w#X__YmJwfEqXyJw^Xfqbr_MytfX^t0*0fJ*^_rf*ytEq#mEX#0__Jf*wJ(E*f#mftqwE_XE#wJ_^0rt__tymrrwrE_y#XmfEwr^0##_q#r00ttJJ*w0wJ#qmqw#vf0jyyy#m0fmrq*J#JE#XXt*Jyf^r0r05t_#ywqyrJXXtX#Efywr#fm#wyU^_XyJyfJ^^wr^00JfJw^0rJ0*#JERX#t^mX^#rwEJRE_0y^f_Er*#_JJJfyEw#XtfJyf-r#yEqZEqXrt_JfJ_q0^yXXJif^r^0X##mwq0qmEyX^_qJrftry*^tJwVCw_^JXf#Ewrtr^_*yXq#EXXt06y^rf*0#ym^wX+JiX*#_^J_f^rX*mtmmtEfr_0q#0mUXEt#Jff&rt*qtr# Jmrfmm^r-_0m#Eq0qJ#ywmb0_tyqqrE#ErrJ*EtwqX^wr^yJJ#m#w_X_m0frrr0_#mmQq0f0E#X#_^qCf^rf*r#tE0X#_rJ_fmyqqqEJ*Jfrry*^#Xm#^frgzw*qmw^08m0Ey0qqqJf^0=*0#tJ^^_rq*%tTq0Xwk80JyJmJ*f_tmy^^4X0JX*tyy#^*EtXqtwJ0^0rwt^m^wX<_0m#ymwwXKy0fy*qwwfX*_myJf0EtXh#^qXw#rr03ytqqwrX__yyJf0EJXwt_0_##m0wqO*JEfmrq*r#_mfm/fyww_0t0Jyfmr#XwtrJfX0_0yrf_EmX/rm*w#_q*w*?EJrffrf*&#tm^m_fJwqX0yqy^f*Ey*XtywrTr_fynftE^^rrw_X#Emq^EtwmX^try0X##mfw*fJEqXqtmwy9#_0yJqwE_wqr^*y##q*^w6mJJffr_*mtEmtmJq0oq#tm^wXN#0f#Emvwq}r__yfy0myfmr*J*fyE^*Xtt#mf7rt*q_wJX^mrw00#*mww*by0^tmq#wmd<_tyqqrE_rm_XJ0f#EwXDtyJm^Xr#XXt m0^qr^0_#mmEw0zt0wyXqyw^XX_0yfq^w*Xq_rJ_mqEE**tJ#w0Jry*##XmX^fr#0ttJEXw_uX0E#EqJwwX*_y#tfXw6Xf_JJtfJErXEw^JEfwrJ*X#*m#^^r>0##ym^wt:q0r#JqmwwX0__ymf*EyX^0*J#fqESrrtmJr^_rmXr#0my^wry0y#Jmww#Cf0;##qqwEX__tyqf0EJXw0#JyffrXX_f_JZfrrq*f#_mm^EE0^q#wm^wyK#_X#Eqf^E9t_qyJf_EtXEt0JJmwEw*yttmXfrrf*E#tyq^w!_0X#EmEwJ8X_*yym_EX)r_fyEftEJXr_*yJfEEf*Jtmm*^yr^XXtrmf^JMt0*#rq*wmVE0myJq_E*Xy_^JXf#EfX^ttJ*frEf*mtEm0^JE^0*#Xm^wXV#0m# mr^mgr0EymJ6E0Xy_wJ*fyEJXwt#Jff.wy*qtEm_mmm#00#0mw^m2y0tyXq*wyKp_tyqJeE_XJ_Et0_QEwXwtyJ0^Xrt*ftq*r^qrE0_#0mEw*OJ0fy*q0wJXX_#yfqqEtXm_rJ_f{EE*0tJJ^^*ry*^tvm#^fr-00#*mrw_(m09_yt0mt^mr_*z##E#Xf_KJtfqE0*_tmJE^0w_*w#*my^^.X0##fmqtJ{q0ry_q0wEX*_Jy^f*E0XJtXJ#ffEq*ttmJr^_wt*E#0mJ^^W*0y#^qX>y=f08ytqmwrX0_myqqrEJXwt*y^f^E9*#tf#^^trq*r#_mm^EU00J_mq*w#!^_Xy#qfwFrt_myEf0EmXwt0Jyfwr**rt^J:^#rq*T#tmqfr*J0m#Eq0wyDw_Xyyq^EJX#_fyPf_EqXrt_JmfEr0*Jtwm*^yr^*i#_mf^WBt0qtqq_wmsE_0yJqwE*Xyt0JXf#EfXrttJqfr^q*mtEm0^#Ew0*#ym^w0wwEtXytqJEf#Zq*m_wmyEXrw*0#fmmXr_mJffLrt*^*X_^ymq05#X*_qJfJE^XEtfwms__tyqqrE#E#rJ0m#SmqEf}__#Xqqw*tEJ+^qrr0_#f#_J0qyrX#Hmtw^XX_#ywy^JrfErt0JJ8m*^Jrw0y#wwr+*SE_#JXqE00trmrw_%m0M0Jt^yEfyXEX t#Jf^trfJ0f0Er*_tmJRJ^qHw_X#_*yXrr*E#fm>wt(^h_*J_qJ0Eqr*XEq+weX^tXJ#fw^#^ruy0m#fwr*^t0mJ^w,*0m0EttJXfrEy*w_rm0Uwgr0_tqmJ^#ryJ_f^rX*#tfJ:EtJf#r#X00#Jmww*jy0^NX^w0Ey#qfw/Xt_qfr#**mX^_#JJfwr**m000f#wq;E_?^#,ymfXE0XtJmwtiw_*yyq^EXX#0yfPf0EtXrt_JmfUfJw^rE0y^tEf0X##mfw*w^r**tt*JfftEwX^tJmyEwr#*Et/m*I#t0JXfrr_*mtAt^y*q0E*d^_^yffX0Jw#K^_Xy#qfwurtq_Xtf0EmXEt0JJfwqqJXr*Js^#rf*1#tmqfrtE^rby0^yXq#wf=;_t0qq^_qy-ftEqXrt__mXJJqfmr#*ft:mym0q^E^2mt*yqqE0qy*qyw^XX_#yff3q#XJ_fJ_fmEE*tXr0X#wrt*_#Xm#^fS*cfX__qyrfwr_XJqti<_#yfqiEtXq*rXXJ*XOt#JffFrt*q*rEEtrmy^^DX0##fm3rt^f0w#qqmwEX0_q_#trmrf^Zt*wJwm_wttyt^mX^#rf*Z#trq^00t##qXw#4f_*_JtXmyf!rwy^q0EJXwt*JmJ9m^^f2r0yfE^VwmXm_w^yw_E^X_t#w_D^_Xy#qfwpXt_qyrf*E_XEt0JJfrq_wrPJ_t^_rt*A#tmqwX^J6EXE_rfrgq_*yyq^EXX#KfXXytEyXrt_JmfEr0#Jrft*^tr*0X##mfw*^fEMX#tJJwfmXtX^twwS=E_^JXf#EwEurG*S#_q^w_X__y^#rm0*#ym^w0fXErX*q*wqsr_#fqEE0XJ_fywfyE^*XtJ_7y_m#^rtwJr^mrE00#q#wJJfXEy#rmfwfgB_ty^ytJmwXrt*J#^m_r_rf0^frEf*ft%mt^^wXEJbE#_JyqrwQ**twJ%jr0tyfqvEtX^Xt0J#_q0EE;*0*y*qqw^Xy_E#lq}wrXtmwfJDm0Ey0qqq0^JEE*^tqJfX_A#*r#0mrwJ{EJy#Jq**#XJ__y^qqEwXttJy^fr0yy*m^wEX0_JyrtJmf^X7y00#fmmw^K__y#fqE*^#XmJ^w}*0m#fmrfycf0oytq^ftfEr**E#ymwX#r*0XtbmJXrCw_#TqEw#X^0EJ*fJ0X00tJyEf^EqXfq_wrX00*yrf_EmXQrq0rtEqq^w,*_t#fqfEt__J_fmE^Xct_JJf^E&*_tJJ^^qX__0yTftEq*XXq0w#0^mw*a__#^try0X##mfw*fyr*XftJwyaJ_0yJqwE_w^r^*##0mrXE_rJqfrr_*fcy0qyJqJwy#ym^wX1#0ftqqtwq r__rfqEE0XJ_wJ*fyE^*X_mJffrrt*mtrm_^mwEX?#Jm^w*H#0^#nq#wfrr_tyqqrE*Xm_^J0q#ww**t#J^fqr#*ftbmtfmrr0*#mmEw0;J0wy*m0w^+A_#ymq{E_Xq0w0ffmEw*0_^Jw^*ryv^_^m#^qr)0_#qmfw_ry*my0qtwwKr_yy^fXE#W#_pJ_fqE^*_tyJEq0E^*w#Xmy^fVX*f#fJEfJ<q0^y_q_wEX0_Jywq0EyXJtXJ#ffEw*t*qyf^0rt*Et#mJ^t)*Ly_aqXw*gf0rytqXwrE___yEqrEJXft*ywf^rXkftfJr^tr#*r#0mmf^ER0J#^q*^m.^_Xy#mmwrXt_JyrqEEmXEt0JJq_r**#t^Jr^#rq*T#tmJ^r(_0m#wq0wJsw0(yyq^EXX_0myrftEq*Xt2mJ^qS*wtzy_Jyrqm*q.f_ry#qq00_fmwmE^*EmXwJ^fJ^_r#*^#qw^4Z#Xmm#_qJ^rl0yEmXftwmXf_yy#rrXy#mtym*ffrJ#_yyJ{^-Ew0#tEm*6^*00ty#qwwy*J_XJXmEEyOrJJqJfJr_XJtEmXftrm*XJEq#wXrE*JJfmy^m*w0wyXq0w?tXJ^mfq0wH*X_mywfJr*0mtXJ#f#8r00tyJqXX0rJM^Jrq0*df0y#mE1E#_EJrJXfXEtXyt_^wfmEm#^tJJ#^qry*0tywyf)>_*ftr^Er#;w00mmqmww+r_^y0ftEXt^JV^t-0r_XEftEwS^_Xy#qfmy^r_q0^#^m&w*1r#Em_mr5#t_Jrm#fqwEXXtXJ^fJr__mt#JrfmEE0*tqwr%w_f*^#wqtwX#ymrfEr0*Jtwm*^yr^0X*0t0Jyfmr#ttyrJ^^tEr#Hm^^w/Etrmyf#EfX8ttJqfrr_*mXf_fyrfXEEtmyyJ0^trm*_tGm#5r*yymtqmX^0iJmt^wE^*Xt#JfyfqyE#y*qqJ_q!Eryff0wyrE_0yJqwE_*0tf*Et2qXwJH*J0J_qJ^rR0J^q_r#0*#ym^wX&t0t#{qtwqrw*lymqwE0X#_wJ*fyE^stt#Jmf(rt*qtrm_fyEq00#tmwwX=y0^yXq#wXz&__yqqEE_X#_EJ0qqEw*XtyJq^Xr#*ft!mX^qrr0_#JmEw0iJX^y*qyw^Pr0^yfquEtX^*t0tyXmtwf<E0*y#mE*qt^m#^frS0y*rt0ytqE0^#yqJwwX*_m_mtfm^w0rw_E#yqy^_>w0t^Xr**w#*my^E^#E#a5_wJmvJ*Ey_qmwEXt!E0Xtwm^Eyrf*f#fq0wtMu_y#mqmwJ4Em#fyG*0y#^q0mmfEEX#EtqJtRwr_*JtJEXfrr^*E#qqXwXcwJmq_Ef*w_^mm^E500qX_tmyJ^_EyX^trJt^trrtEmEw0:#0q#Eq*w#.q0Ey*q#E_*Etwmq^rC_0f0_tyywE0E^XEtQwrbr_fyNftE^r0rf*?#JmqFytfJ#^yr^0X#J#wJ_qq32X%t_J#^0Eq*^tJwY-^_^JXf#Ewr*2m*rJtqJ^s X_0yEfX*htJm^wX>#0w_0ttJt^_Xy*mttJmfw*000#ymmw#t_Jtfgrt*q#X0wyrf#wQXtmf^y{y0^yXqJqXftrw*Xt_mJfOXV*y#JEfXwtyJ^^XrJrr!^_t#rrw*^#mmEw07qX**#_wJXfJEQXfqEwgXq_rJ_ffJ=wfrr0J^*r#*m#Xm#^frg0t#qyXm_!y0Jy0qJwwX_Xf*0tJJz^*_EyEfqEr*_tf0E#^q&ww,m0w^qrX0##fm!wyw0ryXf_EJE^mrt0XJ#m0^^r#*f#rmy*0ttJr^_rm*{Xt_Qymf#0t#JqXw#ef_*0^_EJqX*_tyEf0EJXr***wm_ErXEtfJv^tr^&0/rtXJtqWE^**mz^#G^_Xy#qwfXfmr#0ytrm0^E{J_r#ym^^^*t_m#wmK*EtDmq^rO_0f0EtmJ*fJ0?#rq^EXX#_w_m#*q*frRJ*i#_rX**twm*^yrE&yX0_tyffm0J#Xq_wmVE_t_JtJJt^rrm0X#fE_^ur.00#0mm*yttm0^Jrw0_*w_Xyfqr0_00yJmfow0wymqEE0XqX#0qtEmY^^rfJqfgrt*qt^m_^mrE0Xt>mww*sy0EXJtqy;f_E^*tqJE*RE_EJ0fJEr^r{X__y#m^^zsy_tytfX0*#_mEw0BJ0r0ytfywf#_#yfq EtXq_#J_fmEEXXt#Jw^*ry*q#Xm#^fEE*y#qmEw_OJ0Ey0qJwwrq_yyqfXEtXf_8JtmqEm*_tyJE^XrJ*q#*myf*9X0t#fmrwt{J0ry_JrwEX0_Jyff*EtX^tXymffE-*ttmJr^*rm*E_EmJ^w>*0y#^qXw#8f_yytqqwrX0_myEf0EJ^#t*Jyf^rXU*tfJ ^trq*r#_mmqEH*0y#wq*wy.^0ry#JtwrXt_qyr#wEmXwt0#%fwEE*0t^mX^#f_*l#_mq^rX^0m#Eq0wJIw_*yymq0qX#_qy{qJEqXrt_J0t^r0*#twm*^yrf0X#_mf^KJr0q#rq_wmRE_0yJqwXtXy_^JXftEfX8ttJqyJr_*JtEmX^Jrf0*#XXrwX,t0f#0qtwmCr_0ymqqwrXJ_wJ*qqE^XAt#Jyf^rt*qtr#0^mrw00#*X1w*Gy0^#Xq#wqTe__yqqfwkXm_EJ0qJEw*XtyJJfwr#*ft4#_^qrE0__mX_w0(t0wy*qyfEXX_#JXqnE*Xq_wJ_fyEE*0_^Jwfrry*q#Xm#^frLXr#qm^w_1y0Ey0qJ^fg0_yyJfX^rXf_pJtmqEt*_ttJEfrrJK8#*yyqrnX0*#fm^wtDy0rt_qywELr_Jymf*E#X^0Xr^ffE^*tt#JrfJrmX^qtmJ^ya*X^#^qXw#{f*mytq#wrHE_my^f0

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Adrian Cardim

79665302

Date: 2025-06-13 19:47:42
Score: 1.5
Natty:
Report link

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/fromBase64#decoding_a_base64_string

const uint8Array = Uint8Array.fromBase64("PGI+ TURO PC9i Ph");
console.log(uint8Array); // Uint8Array(10) [60, 98, 62, 77, 68, 78, 60, 47, 98, 62]

https://caniuse.com/mdn-javascript_builtins_uint8array_frombase64

https://github.com/zloirock/core-js#uint8array-to--from-base64-and-hex

https://www.npmjs.com/package/es-arraybuffer-base64

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
Posted by: n0099

79665301

Date: 2025-06-13 19:46:42
Score: 1
Natty:
Report link

Based on WWDC's presentation there should be a .clear variant for .glassEffect(). Weirdly it's not available yet in the current Xcode build, only the .regular variant is available now. I'm expecting that to be available in future release.

The clear variant is currently not yet available in SwiftUI documentation.
https://developer.apple.com/documentation/swiftui/glass

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: ayelvs

79665300

Date: 2025-06-13 19:43:41
Score: 1
Natty:
Report link

New in iOS 26

There is new modifier property you can adopt to natively hide

.navigationLinkIndicatorVisibility(.hidden)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ayelvs

79665289

Date: 2025-06-13 19:29:38
Score: 4
Natty: 4.5
Report link

There seems to be a github action (created by databricks) to achieve this.

https://github.com/marketplace/actions/upload-dbfs-temp#usage

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nithish Reddy

79665287

Date: 2025-06-13 19:25:37
Score: 3
Natty:
Report link

it happened to me and the problem was a conflict of version. Make sure that the R version that you are using is the same of the installed package 4.3.3.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Marcos Abraao

79665282

Date: 2025-06-13 19:18:34
Score: 1
Natty:
Report link

The explanation

"Conditions are used to signal that a resource is available. Whomever was waiting for the condition, can use that resource until they are done with it."

from Martijn Pieters' answer is a bit wrong and misleading (granted similarly so as in the linked threading-related question). Conditions are more concerned with halting execution, when the resource is not in a proper state (giving access back to other tasks, i.e. making the lock conditional) and grouping tasks into sets, that should be awakened together in case of certain events.

The "async for"-block using the condition as the context manager (or rather the embedded lock) actually already ensures exclusive access to the shared resource throughout the block (via implicit require/release-calls). We are supposed to use the condition here as shown in Martijn's Python-example or the Python documentation, but really the embedded lock gets used for this, which makes more sense as it provides or represents the mutually excl. access functionality for the resource. Also we can use various conditions based on the same underlying lock within this block, so the block is not bound to a certain condition, but rather a certain lock/shared resource.

If we only need the excl. access though, when some condition is met, then we might want to free the resource and suspend ourselves until that condition/event occurs again. So conditions are certain states or events in regards to the shared resource, that are necessary for us to proceed with our operations on that resource.

E.g. we can only proceed with adding a value to a shared queue, when there is space left in the underlying buffer. So when the queue is full we wait for a condition called "notFull", that gets controlled/triggered by the code taking values off the queue.

See this BoundedBuffer/Queue example in Java making good use of Conditions for that use case.

It is very comparable to how Conditions work in Python, but it showcases how the common lock is used to create the critical sections and how multiple conditions can be used within those. We don't even need to wait for a condition, when we notice ourselves, that the condition is already met (here e.g.: the queue has still space left or is not yet full).

Also the conditions we use for waiting are often only meant for rough, possible or necessary (but not sufficient) conditions and we still will have to check, if the state is indeed as expected or what we're looking for. Maybe another task got notified before us and already changed the state. That's also why "Condition.wait_for(predicate)" exists, to make that a combined and more compact affair without an explicit while-loop as in the Java-example. We might even get notified, even though the condition is actually NOT met!

The Java-documentation also states that conditions are used to group tasks/threads into sets, that should be awakened, when some common event occurs. So the Event-part is mainly concerned with collecting tasks, that are waiting on a same or similar thing and awakening/notifying them together as needed.

Reasons:
  • Blacklisted phrase (1): regards
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: e.d.n.a

79665272

Date: 2025-06-13 19:03:30
Score: 1
Natty:
Report link

What worked for me (Mac + MCP Server is in Python + using uv):

npx @modelcontextprotocol/inspector /opt/homebrew/bin/uv --directory /Users/my_home_directory/src/tutorials/mcp/weather run weather.py

One of the messages printed on the console during the Inspector's startup was:
Open inspector with token pre-filled:
http://localhost:6274/?MCP_PROXY_AUTH_TOKEN=a_sixty_four_character_token_that_changes_with_each_inspector_restart

I copy-pasted that in Safari. The Inspector was able to connect to the MCP server after that.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Tony

79665270

Date: 2025-06-13 18:58:29
Score: 2
Natty:
Report link

the suggested solution did not work for me, I got it working in MSSQL by using GETDATE()...

insert into "PRODUCT" ("createdAt", "updatedAt", "PRODUCT_ID", "USER_ID") values (GETDATE(),GETDATE(), 1, 1)
Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Charles Brusca

79665261

Date: 2025-06-13 18:41:25
Score: 4
Natty:
Report link

I also faced same issue, the issue is in "tailwind.config.js" file. when I give this command: "npx tailwindcss init -p" it gives me error. then I manually create both files: "tailwind.config.js" and "postcss.config.js". but still it didn't work. The issue was in the tailwind version, I had the new version of Tailwindcss. After that, I downgrade the version of Tailwind to "3.4.17" and run this command: "npx tailwindcss init -p". It works.

Reasons:
  • Blacklisted phrase (2): gives me error
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Arslan Akmal

79665253

Date: 2025-06-13 18:37:23
Score: 4
Natty:
Report link

I am also having this issue. It says everywhere to contact support, but support just refers to their github or stackoverflow subchannel, which neither does nothing to contact them.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: TRNDSTR

79665248

Date: 2025-06-13 18:34:21
Score: 1.5
Natty:
Report link

the truth is there is no way you are going to know the best learning algorithms until you have tried them.

Now that you have used XGBoost and the performance isn’t satisfactory I urge you try another learning algorithms however before doing that you may need to check your preprocessing steps.

and instead of assuming why not test out what is happening and see for yourself.

For example you may consider cross validation to check the class imbalance

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Adegbite Ibukunoluwa Mary

79665229

Date: 2025-06-13 18:05:13
Score: 2.5
Natty:
Report link

[BARK]

┌───────────────────────────────┐

│ **SAPWOOD** (Light-colored) │

│ --------------------------- │

│ **HEARTWOOD** (Dark) │ ← Central core

│ ANNUAL RINGS: │

│ [ ][ ] Earlywood (Light band)│

│ [██] Latewood (Dark band) │

│ [ ][ ] Earlywood │

│ [██] Latewood │

│ │

└───────────────────────────────┘

➔ **Pith** (center)

Reasons:
  • No code block (0.5):
  • No latin characters (0.5):
  • Filler text (0.5): ───────────────────────────────
  • Filler text (0): ---------------------------
  • Filler text (0): ───────────────────────────────
  • Low reputation (1):
Posted by: Raza kohli

79665227

Date: 2025-06-13 18:00:11
Score: 2.5
Natty:
Report link

check you router, firewall and nat rules
if you use mikrotik check ip->nat (you can have dst-nat rule)
you must have 80 and 443 port forwarded separately!!!!

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: иван хак

79665224

Date: 2025-06-13 17:56:10
Score: 3
Natty:
Report link

Check 'File' > 'Revision history' in Google Colab

Compare the execution time between the two cells to get an approximate time

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: pushpika liyanaarachchi

79665208

Date: 2025-06-13 17:46:07
Score: 3
Natty:
Report link

Try using a binary search to identify any incompatibilities. Also, check the mod’s official download page to confirm whether it supports your version of Minecraft.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mr Adam

79665204

Date: 2025-06-13 17:42:05
Score: 3
Natty:
Report link

As mentioned in the comment above, this feature exists only for LocalStack Pro users. However, there's an open-source project that enables this feature in the Community edition. You can check it out here: https://github.com/GREsau/localstack-persist.

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Obada Yahya

79665203

Date: 2025-06-13 17:39:05
Score: 1.5
Natty:
Report link

Ok, I will add to the Necro-posting. .NET (at least version 8) has a template that uses the ApplicationHostBuilder and hosted services to use the Background worker class type. This is probably the right way to go forward (2025). It enables things like dependency injection and built in logging. This should enable developers to leverage all the rich tooling built for .NET Web Hosts.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: crazywill32

79665199

Date: 2025-06-13 17:34:03
Score: 2
Natty:
Report link

I tried everything, the Snap version, the official .deb version. But the issue turned out to be related to GPU acceleration.

Disabling it solved my problem:
code --disable-gpu
you can permanently disable it in vscode settings:
"terminal.integrated.gpuAcceleration": "off"

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: mohamed bifenzi

79665196

Date: 2025-06-13 17:24:00
Score: 1
Natty:
Report link
echo 'Subject : "O=This is a test,CN=abc.def.com,L=North,ST=Arizona,C=CA"' |sed -r 's/.*CN=([^,]*)[,].*/\1/'
abc.def.com

linux bash sed: '-r' allows to use '()' without escaping search pattern: any char and "CN=" : .*CN= ( any char but not ',': [^,]* ) # remember/save this part in var 1 ',' and any char: [,].* replace with saved buffer/variable: \1

Cutting out strings is a very common task and can be done in various ways as shown above already: so I am also always looking for new ways and always taking into account the available tools and patterns to have an easy, fast and precise solution.

Happy cutting!

brgds

stefan

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Stefan

79665189

Date: 2025-06-13 17:19:59
Score: 2.5
Natty:
Report link

The AWS glue registry has a hard limit on the schema size of 170kb. We have many that are more than 200kb, so I'm forced to try a Frankensteinian solution like using the confluent schema registry with msk.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Wendell Nichols

79665183

Date: 2025-06-13 17:13:58
Score: 1
Natty:
Report link

I misput the closing bracket in the homeController file

router.post('/put-crud'), homeController.putCRUD;

// it should be

router.post('/put-crud', homeController.putCRUD);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Dr Linh Chi Nguyen

79665182

Date: 2025-06-13 17:13:58
Score: 0.5
Natty:
Report link

Instead of using IClassFixture<T> you should use ICollectionFixture which allows you to create a single test context and share it among tests in several test classes. You can find an example of the usage here Collection Fixtures. Hope it helps🤞🥲.

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ismael Herrera

79665175

Date: 2025-06-13 17:03:55
Score: 2.5
Natty:
Report link

I have always used it this way:

ifndef MAKECMDGOALS
        @echo "$$(MAKECMDGOALS) is not defined"
    else 
        @echo "$(MAKECMDGOALS) is defined"
    endif

No parentheses, or "$" sign. A lesson hard learned, or was it? What is the difference in these two syntaxes?

ifndef $(MAKECMDGOALS)
        @echo "$$(MAKECMDGOALS) is not defined"
    else 
        @echo "$(MAKECMDGOALS) is defined"
    endif
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Clarkman

79665170

Date: 2025-06-13 16:56:52
Score: 6.5 🚩
Natty:
Report link

I found a Way to Resolve the CSRF Token Mistach Error on Insomnia. By default we have a funcionality that takes a Header value and store it in a Tag/Environment Variable.

But the XSRF token comes with a bad formatation and just put it as reference on the headers is'nt enough to Correct it.

Below i'will pass a function that extract the corret value from the XSRF TOKEN in the header and store it correctly in a environment variable:

**1. Create an Empty envinronment variable**

```

{

"XSRF_TOKEN": ""

}

```

**2. Create a new HTTP Request on Insomnia, put your URL with GET method.**

````` you-api/sanctum/csrf-cookie` ``

**3. Below URL we have different paths of configuration like Params, Body, Auth, go to Scripts and put the code Below**

```

const cookieHeaders = insomnia.response.headers

.filter(h => h.key.toLowerCase() === 'set-cookie');

const xsrfHeader = cookieHeaders

.find(h => h.value.startsWith('XSRF-'));

console.log(xsrfHeader);

if (xsrfHeader) {

// 3. Extrai o valor do cookie

let xsrfValue = xsrfHeader.value

.split(';')\[0\]             // "XSRF-TOKEN=…"

.split('=')\[1\];            // pega só o valor

xsrfValue = xsrfValue.slice(0, -3);

// 4. Armazena na base environment

insomnia.environment.set("XSRF_TOKEN", xsrfValue);

console.log('⭐ XSRF-TOKEN salvo:', xsrfValue);

} else {

console.warn('⚠️ XSRF-TOKEN não encontrado no header');

}

```

In console of response you can see if any errors occurs.

**4. Finally put the variable on the Headers of any Http Request as you want. Like this:**

```

header value

X-XSRF-TOKEN {{XSRF_TOKEN}}

```

After that you will be able to make Your Request to your login and Have access to your application and Auth::user !

Obs: I already was receving the Token in Frontend so my Backend was okay, if you dont, just follow the steps of a lot of youtubers, in my case i've struggle for a while in this step because my domain of backend and frontend was not of the same origin.

i Create an environment domain for main application to redirect the localhost of Frontend and Backend.

My Backend is a server vagrant that points to **http://api-dev.local** and my frontend is

**http://frontend.api-dev.local**

Below my** vite.config.js** where i change the domain, "you have to point the domain in your hosts file of your system" i'm using Windows 11"

```

import { fileURLToPath, URL } from 'node:url'

import { defineConfig } from 'vite'

import vue from '@vitejs/plugin-vue'

import vueDevTools from 'vite-plugin-vue-devtools'

// https://vite.dev/config/

export default defineConfig({

plugins: [

vue(),

vueDevTools(),

],

resolve: {

alias: {

  '@': fileURLToPath(new URL('./src', import.meta.url))

},

},

// server: {

// host: 'test-dev.local',

// port: 5173,

// https: false, // ou true se você gerar certificado local

// }

server: {

host: 'frontend.api-dev.local',

port: 5173,

https: false,

cors: true

}

})

```

and my Important Variables in **.env** of laravel

`APP_URL=http://api-dev.local

SESSION_DOMAIN=.api-dev.local

SANCTUM_STATEFUL_DOMAINS=http://frontend.api-dev.local:5173

FRONTEND_URL=http://frontend.api-dev.local:5173`

Final OBS:

The routes are in WEB not in API, below you see my **web.php** file

```

<?php

use App\Http\Controllers\AuthController;

use Illuminate\Support\Facades\Route;

use App\Modulos\Usuario\Http\ApiRoute as UsuarioRoute;

Route::get('/', function () {

return view('welcome');

});

Route::middleware('web')->group(function () {

Route::post('/login', \[AuthController::class, 'login'\])-\>name('login');

Route::post('/logout', \[AuthController::class, 'logout'\])-\>name('logout');

Route::get('/user', \[AuthController::class, 'user'\])-\>name('user')-\>middleware('auth');

UsuarioRoute::routes();

});

```

I'm not using the user route in this case, just return the user data in login.

My English is so Bad, glad to Help!

Finally you will be able to Resolve the problem

Reasons:
  • Blacklisted phrase (3): você
  • Blacklisted phrase (1): não
  • RegEx Blacklisted phrase (2): encontrado
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dênio Clécio

79665158

Date: 2025-06-13 16:48:50
Score: 1.5
Natty:
Report link
Downloading Chromium 136.0.7103.25 (playwright build v1169) from https://playwright.download.prss.microsoft.com/dbazure/download/playwright/builds/chromium/1169/chromium-win64.zip
Error: getaddrinfo ENOTFOUND playwright.download.prss.microsoft.com
    at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:internal/dns/promises:99:17) {
  errno: -3008,
  code: 'ENOTFOUND',
  syscall: 'getaddrinfo',
  hostname: 'playwright.download.prss.microsoft.com'
}
Failed to install browsers
Error: Failed to download Chromium 136.0.7103.25 (playwright build v1169), caused by
Error: Download failure, code=1
    at ChildProcess.<anonymous> (G:\automatiza\Lib\site-packages\playwright\driver\package\lib\server\registry\browserFetcher.js:94:32)
    at ChildProcess.emit (node:events:518:28)
    at ChildProcess._handle.onexit (node:internal/child_process:293:12)

i am getting this error for all the 3 retries with 3 different domain names, in my docker file i am having command && playwright install --with-deps chromium, this command initially it was working but now after 3 retries also it is getting failed 
Reasons:
  • Blacklisted phrase (1): i am getting this error
  • RegEx Blacklisted phrase (1): i am getting this error
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Amit Ilakal

79665141

Date: 2025-06-13 16:32:46
Score: 1
Natty:
Report link

No negative impact—your approach is correct and commonly used.

Applying custom weights to the TF-IDF matrix (with norm=None), then normalizing each row using sklearn.preprocessing.normalize, produces unit vectors just like norm='l2' in TfidfVectorizer. This preserves cosine similarity and ensures each row has L2 norm = 1.

Key point: The order matters. Weighting first, then normalizing, gives you control over the influence of features before projecting vectors onto the unit sphere.

If you normalized before weighting, the vectors would not be unit length anymore.

There is no difference (other than order of operations) between the manual normalization and letting the vectorizer do it, as long as normalization is the last step.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Daniel