79665967

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

✅ Confirmed by Microsoft: The inbound traffic issue with IKEv2-based P2S VPN in Azure is a known platform limitation. Azure doesn't symmetrically route return traffic from VM to VPN client unless the client initiates the session — resulting in broken ICMP or similar inbound flows.

✔️ OpenVPN works better in these scenarios due to how Azure handles its routing behavior internally. It treats OpenVPN clients more reliably as routable endpoints, resolving the asymmetric routing problem.

⚠️ IKEv2 relies heavily on traffic selectors, and return traffic isn't always respected by Azure's routing logic.

🧠 Recommendations included:

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

79665959

Date: 2025-06-14 15:47:44
Score: 1
Natty:
Report link

Try to replace Navigate("/decks") with useNavigate from react-router-dom like this :
const navigate = useNavigate();
And then in onCompleted function call it:
navigate("/decks");

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

79665958

Date: 2025-06-14 15:45:43
Score: 1
Natty:
Report link

There used to be a way to run Vert.x with the command line tool, but this has been deprecated and by the looks of it also all the downloads have been disabled, but some of the references might not have been removed. You should use the application launcher to launch Vertx.

You can check the roadmap that has a whole section on cleaning up the CLI tool: https://github.com/vert-x3/issues/issues/610

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

79665957

Date: 2025-06-14 15:42:42
Score: 2
Natty:
Report link

م.ش.و.ذ.م.م : كسيــــــلة للاستيراد و التصدير. رأس المال الاجتماعي 10.000.000.00دج المقر الاجتماعي : حي النصر رقم 02 بريكة.
رقم السجل التجاري: 14 ب 0225068-00/05

محضر اجتماع الجمعية العامة العادية بتاريخ: 12/06/2025.

    في عام ألفين و خمسة و عشرين في الثاني عشر   من شهر جوان   وعلى الساعة التاسعة صباحا اجتمعت الجمعية   العامة العادية  بمقر  الشركة أعلاه .

حضر الشركاء السادة: شريك مسير:دراجي الجمعي .

اللائحة الأولى : دراسة الحسابات الاجتماعية لسنة 2024. هذه اللائحة مصادق عليها بالإجماع.

              إجمـــالي الأصول الصافي: 20 724 543.11   دج.
         إجمـــالي الخصوم الصافي:   20 724 543.11 دج.
            النتيجة الصافية للدورة: =  1 020 721.69  دج 

*انظر جداول الأصول ’الخصوم و حسابات النتائج الملحقة.

المسير

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: Sellaoui Rami

79665948

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

If you are on Alpine Linux, try installing libcurl-dev to fix the error:

sudo apk add curl-dev
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: RhodanV5500

79665940

Date: 2025-06-14 15:13:35
Score: 2
Natty:
Report link

I think the problem was that I only had the bloc package as a dependency. After I installed flutter_bloc as well, it started working as expected.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: KiriLL Sabko

79665939

Date: 2025-06-14 15:11:34
Score: 0.5
Natty:
Report link

Add this to your import

import { DefaultHttpClient } from '@azure/core-http'

Pass httpClient explicitly while creating client

const blobServiceClient = new BlobServiceClient(
    url,
    creds,
    {
        httpClient: new DefaultHttpClient()
    }
);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Atishay

79665938

Date: 2025-06-14 15:10:34
Score: 1
Natty:
Report link

Here’s a clean and safe batch script that will move files from one folder to another, creating the destination folder if it doesn’t exist, and without overwriting existing files:

@echo off
set "source=C:\SourceFolder"
set "destination=C:\DestinationFolder"

REM Create destination folder if it doesn't exist
if not exist "%destination%" (
    mkdir "%destination%"
)

REM Move files without overwriting
for %%F in ("%source%\*") do (
    if not exist "%destination%\%%~nxF" (
        move "%%F" "%destination%"
    ) else (
        echo Skipped existing file: %%~nxF
    )
)

echo Done!
pause

Let me know if you need any help. Feel free to ask any question

Reasons:
  • Blacklisted phrase (1): any help
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: gardener jeffon

79665922

Date: 2025-06-14 14:44:27
Score: 0.5
Natty:
Report link

What indices should be in the answer? In other words, what should I be looking for in order to solve the question?

The thing you should be looking for is: the index in the histogram, by whose height, the largest rectangle can be formed.

The reason is quite straightforward, the largest rectangle must be formed by a height of one of the heights, and you only have that much heights. Your mission is to loop for each of them, and see which is the largest. Which brings up the answer for your question #2.

Why do I need the index of the first bar to the left and right for each index? What does it serve?

To get the rectangle area formed by height at index i, i.e., heights[i], you need to find the left boundary left and right boundary right, where left < i and right > i , and both heights[left - 1] and heights[right + 1] are smaller than heights[i]. Because for indices, let denotes them as j and k, outside the two boundaries, the rectangle formed in the range [j, k] won't be formed by height[i].

Hope it helps resolve your confusion.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-1): Hope it helps
  • RegEx Blacklisted phrase (1.5): solve the question?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What in
Posted by: PkDrew

79665921

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

I have realised the answer. The program being invoked (by a full pathname) could invoke another without the full path, and thus use $PATH.

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

79665919

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

The first formula uses k as the number of independent variables, but it does not include the intercept. The second formula uses k + 1, meaning it includes the intercept in the count.

The first formula is not wrong but it is using a different definition for k. But since Python includes the intercept, you need to use the second formula to match it.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Zeynep Savaş

79665904

Date: 2025-06-14 14:19:21
Score: 2.5
Natty:
Report link

I needed to use

df_dm.dropna(axis = 1, how="all", inplace = True)

I was only dropping rows with all Nans since:

axis = 0

is the standard.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: David B.

79665900

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

As per this discussion on the LLVM Forum, the solution is to build with -DLLVM_TARGETS_TO_BUILD="host;NVPTX;AMDGPU" .

The Dockerfile can be found on GitHub

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Florian Becker

79665891

Date: 2025-06-14 14:00:16
Score: 2
Natty:
Report link

@Patrik Mathur Thank you, sir. I didn’t realize it provides a ready to use loop

My previous code in the original post is working now by correctly setting the reuse addr and reuse port like this

```server->setsockopt<int>(SOL_SOCKET, SO_REUSEADDR, 1);

server->setsockopt<int>(SOL_SOCKET, SO_REUSEPORT, 1);

```

But the performance is very low, probably because it spawns a new thread for every incoming connection

I'm trying the built in loop now like this

```

void HttpServer::start() {
    photon::init(photon::INIT_EVENT_DEFAULT, photon::INIT_IO_DEFAULT);
    DEFER(photon::fini());

    auto server = photon::net::new_tcp_socket_server();
    if (server == nullptr) {
        throw std::runtime_error("Failed to create TCP server");
    }
    DEFER(delete server);

    auto handler = [this](photon::net::ISocketStream* stream) -> int {
        DEFER(delete stream);
        stream->timeout(30UL * 1000 * 1000);
        this->handle_connection(stream);
        return 0;
    };

    server->set_handler(handler);

    int bind_result = server->bind(options_.port, photon::net::IPAddr());
    if (bind_result != 0) {
        throw std::runtime_error("Failed to bind to localhost:" + std::to_string(options_.port));
    }

    if (server->listen() != 0) {
        throw std::runtime_error("Failed to listen on port " + std::to_string(options_.port));
    }

    LOG_INFO("Server is listening on port ", options_.port, " ...");
    LOG_INFO("Server starting main loop...");
    server->start_loop(true);
}

```

But I’m still trying to fix it because I’m getting a segmentation fault :(

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): :(
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Patrik
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Fuji

79665890

Date: 2025-06-14 13:59:15
Score: 4.5
Natty: 4
Report link

How would you go backwards given the date column? Or better yet, add a day-of-year column that ranges from 1 - 365 and generate the others. I apologize if I should have started a new question instead - let me know.

Reasons:
  • Blacklisted phrase (1): How would you
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How would you
  • Low reputation (1):
Posted by: Jott

79665877

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

[UPDATE – RESOLVED]

After extensive troubleshooting and countless hours analyzing packet captures, NSG/UDR configurations, and effective routes, the P2S VPN routing issue has finally been resolved – and the root cause was surprising.

Problem:

Inbound ICMP (or any traffic) from Azure VMs to the VPN client (192.168.16.x) failed when using IKEv2, even though outbound traffic from the VPN client to VMs worked fine. All routes, NSGs, diagnostics, and logs showed expected behavior. Yet, return traffic never reached the VPN client.

Solution:

Switched the Azure VPN Gateway tunnel type from IKEv2 to OpenVPN (SSL) and connected using the OpenVPN client instead. Immediately after connecting, inbound and outbound traffic between the VPN client and Azure VMs started working perfectly.

Key Observations:

No changes were made to the NSG, UDR, or VM firewall after switching protocols.

It appears the IKEv2 connection had an underlying asymmetric routing or encapsulation issue that Azure didn’t route correctly.

OpenVPN (SSL) handled the return traffic properly without additional UDRs or complex tweaks.

Both Linux (Ubuntu VM) and Windows 11 confirmed bidirectional ICMP now works.

Tip for others facing similar issues:

If you're using Azure P2S with IKEv2 and experiencing one-way traffic issues (especially inbound failures), switch to OpenVPN and test again. It might save you days of debugging.

Next Steps:

I'm now migrating the Raspberry Pi VPN client to OpenVPN (CLI-only) and keeping FreeRADIUS on EC2 for centralized auth.

Reasons:
  • Whitelisted phrase (-2): Solution:
  • Long answer (-1):
  • No code block (0.5):
  • Me too answer (2.5): facing similar issue
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: what_me

79665876

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

Learn Java, be clever, love computer science

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Маріанна Нікольська

79665862

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

I was having the same problem too with git push command in my Linux and just adding sudo command at the start of the command solved it for me
The right command is sudo git clone example.git

For Windows users I guess you'll have to run the IDE or CMD/Powershell as administrator

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

79665858

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

This started happening for me in PyCharm2025.1. The fix was simple. Ensure quick fixes are enabled in the menu (click on the 3 dots on the right hand side):

Pycharm quickfix screenshot

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Matthew Hegarty

79665854

Date: 2025-06-14 12:58:00
Score: 1.5
Natty:
Report link

Do not forget what sorting means when there are multiple columns to sort by. Is this exactly what you want to achieve? df.sort(["group","value","value2"])

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: figs_and_nuts

79665848

Date: 2025-06-14 12:48:58
Score: 0.5
Natty:
Report link

Since you've already synced your AWS Knowledge Base with Bedrock, you're ready to query it using an Amazon Bedrock Runtime API with a RAG (Retrieval-Augmented Generation) setup. Here's how you can get started programmatically:

1. Set up your environment

2. Use RetrieveAndGenerate API

Here’s an example in Python using boto3:

Replace YOUR_KB_ID with the actual Knowledge Base ID
Replace modelArn with the model you want to use (e.g., Claude 3, Titan, etc.)

import boto3

bedrock_agent_runtime = boto3.client('bedrock-agent-runtime')

response = bedrock_agent_runtime.retrieve_and_generate(
    input={
        "text": "What are the benefits of using Amazon SageMaker?"
    },
    retrieveAndGenerateConfiguration={
        "knowledgeBaseConfiguration": {
            "knowledgeBaseId": "YOUR_KB_ID"
        },
        "modelArn": "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-3-sonnet-20240229-v1:0"
    }
)

print(response['output']['text'])

More details and examples on Cloudoku.training here - https://cloudoku.training/blog/aws-knowledge-base-with-bedrock

Good Luck! let me know how it goes.

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

79665840

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

Your situation looks like a race condition and time-of-check/time-of-use, and locks must be used to make those inserts not parallel but serial.
My guess is that SELECT ... FOR UPDATE can lock more rows than needed (depend on ORDER BY in select statement), so causing lock timeouts.

Try using Advisory Locs (https://www.postgresql.org/docs/15/functions-admin.html#FUNCTIONS-ADVISORY-LOCKS) to avoid parallel execution of some part of code.
Just grab the lock (pg_advisory_lock) before selecting the "last" row, and release it (pg_advisory_unlock) after insertion new one.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Игорь Тыра

79665839

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

I repeated all your steps exactly you described here and when pressing "Build skill" it start building it, but at the end it fails - so no new model is present.

When I also added a custom intend with one single sample utterance building the skill is not failing anymore. So new model present and when testing, "hallo wereld" is enough and skill get invoked.

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

79665833

Date: 2025-06-14 12:23:51
Score: 0.5
Natty:
Report link

Got the similar problem. I tried to copy the main part of the private key and type the other part by myself.

And I typed letter O as number 0 for the similarity.

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

79665828

Date: 2025-06-14 12:15:50
Score: 1.5
Natty:
Report link

Run the following commands to resolve this error;

rm -rf var/cache/prod php

bin/console oro:assets:install --env=prod

You should get this results when it's successful

The last command would reinstall the assets. you need to see the following to know this has worked.

If this doesn't work. Run them again and again until it works. if this fails, run these in succession;

rm -rf var/cache/prod

php bin/console oro:assets:install --env=prod

rm -rf var/cache/prod

bin/console oro:platform:update --force --env=prod

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: charles ansong

79665824

Date: 2025-06-14 12:11:48
Score: 3.5
Natty:
Report link

Azure Container Apps - Fully managed serverless container platform
https://azure.microsoft.com/en-us/products/container-apps

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Jojo Joseph Kunathucherry

79665820

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

I solved "that problem in kernel function" by Project properties -> C/C++ -> Command line -> Additional parameters = --offload-arch=gfx900 (I have Vega 56, set your arch gfx????).

enter image description here

I use HIP 5.5 because 6.2 does not work with my GPU ("Unsupported hardware"). I also found that last ROCm to work with Vega 56 was 4.5.2 . To check GPU arch, you may do:

C:\> hipinfo

or also clinfo

Reasons:
  • Blacklisted phrase (1): ???
  • Whitelisted phrase (-2): I solved
  • Probably link only (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Sergei Koshman

79665817

Date: 2025-06-14 12:00:45
Score: 3.5
Natty:
Report link

click on the :app:mergeDebugResources, then scroll to the top to see the source of error.

enter image description here

This error usually comes from the resource file, check your resource xml file.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user1749845

79665802

Date: 2025-06-14 11:36:39
Score: 5.5
Natty:
Report link

I honestly can't understand the meta API. If we had to go through the rigorous process of storing messages, why not just use the On-Premise API to begin with? I'm seriously stressed out... I particularly need to retrieve the message in the context. Is there a way to request for this feature?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: TunaWire

79665801

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

// server.js

const express = require('express');

const QRCode = require('qrcode');

const app = express();

app.get('/:name', async (req, res) => {

const name = req.params.name;

const url = `https://love.tsonit.com/${name}`;

// Tạo mã QR PNG (hoặc SVG)

const qr = await QRCode.toDataURL(url, {

errorCorrectionLevel: 'H',

margin: 1,

color: {

  dark: '#000000',

  light: '#ffffff'

}

});

// HTML trả về

res.send(`

\<html\>

  \<head\>\<title\>QR Love\</title\>\</head\>

  \<body style="text-align:center; margin-top:50px;"\>

    \<h2\>Quét để tỏ tình với: ${name}\</h2\>

    \<img src="${qr}" style="width:300px; clip-path: path('M128 8c70 0 128 56 128 128s-128 128-128 128S0 206 0 136 58 8 128 8z');" /\>

  \</body\>

\</html\>

`);

});

app.listen(3000, () => console.log('Running on http://localhost:3000'));

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30801100

79665788

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

proxy may be a possible cause. I had a similar issue, it turns out proxy is turned on globally by a software. curl can be affected by proxy setup, and this is why it tries to access a port on a local machine even if it is not mentioned anywhere.

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

79665779

Date: 2025-06-14 11:03:30
Score: 4
Natty:
Report link

Thank you for sharing these logs. I understand that the issue may no longer be relevant, but I found your question quite interesting and took the opportunity to review it to better understand what might have caused the login problem after the update.

From what I can see in the logs, there doesn't appear to be anything suspicious - everything seems to be functioning as expected to me. After updating to a new version, GitLab prompts for reauthentication. If the login form fields were not displaying, it could be related to a front-end issue. Have you tried recompiling your assets? The official GitLab documentation might be helpful in this case. Additionally, clearing your browser cache could also resolve such display issues.

However if the problem was still reproducible on a clean install with your data, that might indicate an issue with the data itself or the configuration settings, rather than with the GitLab system environment. Possible causes could include corrupted or incomplete database entries, misconfigurations, or even something customization related. For example, I noticed in the logs that a custom header logo is being used:

"/uploads/-/system/appearance/header_logo/1/ytlc.png"

Since this post is 6 years old, I am curious were you eventually able to fix the issue? If so, what was the fix?

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): Have you tried
  • RegEx Blacklisted phrase (1.5): fix the issue?
  • RegEx Blacklisted phrase (1.5): fix?
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Viktor

79665776

Date: 2025-06-14 11:00:29
Score: 2
Natty:
Report link

I would suggest trying the OAuth2 approach with dependency injection via Depends(oauth2_scheme).

There is an example in the docs: https://fastapi.tiangolo.com/tutorial/security/oauth2-jwt/

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

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