79816661

Date: 2025-11-11 13:00:37
Score: 1
Natty:
Report link

You should likely implement a null object pattern.

so "static string[]" and not "static string[]?"

If you need a collection that can expand, then use List<string>

But most important, if something can be null at an interface to any external interface, wrap the handling logic in a nullObject pattern, and then let the program "do nothing" rather than send "nullable" values around. Likely the best option you have.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Morten Bork

79816659

Date: 2025-11-11 12:59:37
Score: 3.5
Natty:
Report link

I wanted to know how to get table data from data verse to databricks

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

79816658

Date: 2025-11-11 12:59:37
Score: 3
Natty:
Report link

Apparently this is a recent issue with the newest SDK version, reverting to 2.41.1 fixes it.

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

79816656

Date: 2025-11-11 12:55:36
Score: 0.5
Natty:
Report link

If you want ListView to act like Column if scrolling is not needed, meaning drag gestures are not occupied unnecessarily:

ListView(
  physics: const ScrollPhysics(),
),

This works (or it does not work by default), because the default scroll physics is AlwaysScrollableScrollPhysics for the primary and vertical ScrollViews.

This is the condition in the Flutter source code:

physics =
    physics ??
    ((primary ?? false) ||
            (primary == null &&
                controller == null &&
                identical(scrollDirection, Axis.vertical))
        ? const AlwaysScrollableScrollPhysics()
        : null);

https://github.com/flutter/flutter/blob/2981516d74bc2b3307a7386e7be906602b65cf22/packages/flutter/lib/src/widgets/scroll_view.dart#L135-L142

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

79816654

Date: 2025-11-11 12:53:35
Score: 7.5 đźš©
Natty: 4
Report link

I've maybe a follow up question. Currently, the default OpenMP version in GCC 15.2.0 is still 201511 ... i.e. 4.5. Is there a way to change that?
LLVM allows for the flag -fopenm-version=60 for switching to OpenMP version 6.0. Despite ChatGPT's claim, gcc does not accept this command-line option.

Do you know how this can be accomplished in GCC? Does one have to change something in the sources and rebuild GCC? I've tried setting _OPENMP to 202111 e.g. in different places, and rebuild GCC. But without success, yet.

Any idea is very welcome.

Cheers, Martin

Reasons:
  • Blacklisted phrase (1): Cheers
  • Blacklisted phrase (1): Is there a way
  • RegEx Blacklisted phrase (2.5): Do you know how
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Martin

79816653

Date: 2025-11-11 12:52:34
Score: 2.5
Natty:
Report link

You're reading freed memory, so the behavior is undefined and you can't rely on the contents at all. Also, glibc has a known bug with M_PERTURB causing an off-by-sizeof(size_t) overwrite, so the expected pattern won't fully appear.

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

79816651

Date: 2025-11-11 12:51:34
Score: 2.5
Natty:
Report link

You need to issue a certificate that includes

subjectAltName=DNS:localhost (or your domain)

Modern browsers ignore CN and look in

subjectAltName

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Oleksandr Kolesnikov

79816648

Date: 2025-11-11 12:46:32
Score: 4.5
Natty: 4.5
Report link

This cookie-button stuff is annoying, I developed a generalized popup-closer. have a look at the closepopup-routines

https://github.com/dornech/utils-seleniumxp/blob/main/src/utils_seleniumxp/webdriver_addon.py

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: dornech

79816643

Date: 2025-11-11 12:43:27
Score: 6 đźš©
Natty:
Report link

is there a way to let multiple boards feed into a bigger one? For example the screenshot of Fabio where there is a "dev boards" and a "produto boards" that you can combine in a bigger board? Where tasks or epics from dev and produto are shown in the same board?

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):
  • Starts with a question (0.5): is there a
  • Low reputation (1):
Posted by: Yuri de Ridder

79816637

Date: 2025-11-11 12:37:25
Score: 1
Natty:
Report link

Apparently, Apple changed the API in favour of a new isEnabled parameter: tabViewBottomAccessory(isEnabled:content:).
In contrast to the documentation I couldn't find the new overload in iOS 26.1 SDK, but it seems to be available from iOS 26.2 Beta.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Meyssam

79816630

Date: 2025-11-11 12:25:23
Score: 2.5
Natty:
Report link

To make it work in GitHub, don't use BrowserRouter, use HashRouter instead.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: eventHandler

79816605

Date: 2025-11-11 12:05:18
Score: 1
Natty:
Report link
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Dandy's World</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div id="app">
        <!-- Content will be generated by JavaScript here -->
    </div>

    <script src="script.js"></script>
</body>
</html>
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: stackoverflow develpor

79816604

Date: 2025-11-11 12:00:17
Score: 2
Natty:
Report link

Removing all volumes, changing the compose file to this

services:
  hellodocker:
    image: hellodocker:latest
    user: 1000:1000
    volumes:
      - file-data:/xxx:rw
    environment:
      - HELLODOCKER_VALUEFILE_FULLNAME=/xxx/file.txt

volumes:
    file-data:

and then doing docker compose up doesn't seem to help.

Is this diffferent from the -v option?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
Posted by: Volker

79816593

Date: 2025-11-11 11:49:14
Score: 0.5
Natty:
Report link

Yes fs watch listens to hidden folders.

I was running custom logic in a file system watcher with recursive: true. Since my watcher also observed the .git folder, running Git commands inside the watcher created a feedback loop: the Git commands modified the .git folder, which triggered the watcher again, and so on.

Fix: Ignore changes in the .git folder:

const watcher = fs.watch(dir, { recursive: true }, (eventType, filename) => {
  if (filename && (filename.startsWith(".git") || filename.includes(`${path.sep}.git`))) {
    console.log("Git folder changed, ignoring...");
    return;
  }

  throttledNotify();
});

Somewhere in throttledNotify i was running const stdout = await runGitCommand(["status", "--porcelain"], dir); which causes the infinite feedback loop

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Yousaf Wazir

79816591

Date: 2025-11-11 11:48:14
Score: 5
Natty:
Report link

I do face the same issue in Chrome browser Version 142.0.7444.135 (Official Build) (64-bit)
Screenshot Devtools

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): face the same issue
  • Low reputation (1):
Posted by: lanzi8

79816590

Date: 2025-11-11 11:46:13
Score: 1
Natty:
Report link

Personaly I prefer mode type-controlled aproach

function* handleAuthUser({ payload: { fields, isRegister } }: ReturnType<typeOf startAuth>)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: szogun1987

79816580

Date: 2025-11-11 11:34:11
Score: 1
Natty:
Report link

Ok, so, i'm coming here years later, because I had the same problem ("Formula Error: Unexpected operator '&'").

No real answer here, so I tried a few things, and...

I found that I had HTML entities in some cells, like "=&gpt;", and Excel gets it as a formula instead of a "standard string value".

My solution was to change my code from :

$this->Excel->getActiveSheet()->setCellValue($column . $row, $value);

to :

$this->Excel->getActiveSheet()->setCellValueExplicit($column . $row, $value, \PhpOffice\PhpSpreadsheet\Cell\DataType::TYPE_STRING);

And it worked. Maybe you have the same problem.

Be aware that this workaround only works if you don't WANT formulas in your Excel output, obviously.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): I had the same
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): have the same problem
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Obsidyan

79816578

Date: 2025-11-11 11:30:10
Score: 2
Natty:
Report link

This part of the code should work with a data set, as in the original example of comparing color data from the iris.txt file. Hence the NumberFormatException, because you are writing a string that will give an error when converted to a number. To work with words, use the Word2Vec method of the Deeplearning4j library. An example of comparing words with the source code is described DL4J NLP Word2Vec Java.

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

79816564

Date: 2025-11-11 11:22:08
Score: 1.5
Natty:
Report link

You don't actually need PCRE to identify offices documents. For example, PDF can be identified using this simple rule:

rule pdf {
strings:
$pdf = "%PDF-"
condition:
$pdf at 0
}

For other documents, since they are actually packaged inside zip archives, you could search for the zip magic at offset 0, and search for the document type identifiable paths as strings in you yara

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nova I Elithor

79816562

Date: 2025-11-11 11:19:07
Score: 1.5
Natty:
Report link

Few things that you could try:

  1. The Blender Python API provides access to the quadriflow_remesh function (Requires Blender, and a triangle mesh is needed as input)

  2. https://www.hellotriangle.io/ You will need to split your 2D polygon and create patches of quads between pairs of line segments using the connect() method.

  3. https://github.com/hjwdzh/QuadriFlow (Also requires a triangle mesh as input. Not a Python package, but you could run this as a subprocess)

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

79816560

Date: 2025-11-11 11:16:06
Score: 0.5
Natty:
Report link

I had the same issue and solved it by cloning the repository in a new empty folder, and then copying the .git folder created to the directory of my project. It worked perfectly.

Reasons:
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Mario Vázquez

79816559

Date: 2025-11-11 11:08:05
Score: 3.5
Natty:
Report link

I've encountered this problem on Python 3.12

It just helped to switch back to 3.10

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Oleg Cherenkov

79816554

Date: 2025-11-11 11:04:04
Score: 3
Natty:
Report link

I am aware of that, but this is also not under my control and I have to process what is being served 🤷‍♂️

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

79816549

Date: 2025-11-11 11:00:03
Score: 2.5
Natty:
Report link

I would strongly suggest to use

df.to_csv("mydata.csv", index=False)

this would display your data in a excel sheet

where df here would be the name of the data frame

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

79816540

Date: 2025-11-11 10:54:01
Score: 1
Natty:
Report link

When integrating with third-party manufacturing APIs or services, rate limits restrict the number of requests you can make in a given period. To handle these effectively:

Understand the Limitations

Review the third-party API documentation to know the exact rate limits (e.g., requests per minute/hour).

Implement Caching

Store frequently requested data locally or in a cache (like Redis or Memcached) to reduce repetitive API calls.

Use Rate Limiting / Throttling Logic

Implement a queue or delay mechanism to space out requests and avoid hitting the limit (e.g., exponential backoff or token bucket algorithm).

Monitor API Usage

Track request counts and responses to identify when you’re approaching the limit.

Handle Errors Gracefully

If a rate limit error (e.g., HTTP 429) occurs, retry after the suggested “Retry-After” time rather than immediately resending the request.

Batch Requests When Possible

Combine multiple smaller requests into a single batch API call if supported.

Request Higher Limits

For production or high-demand use cases, contact the API provider for increased quotas or enterprise plans.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Starts with a question (0.5): When in
  • Low reputation (1):
Posted by: Orange Biotech

79816528

Date: 2025-11-11 10:42:58
Score: 0.5
Natty:
Report link

Still not entirely sure why it happened here, but this solved it:

externalApi
    .WithHttpsEndpoint()
    .WithExternalHttpEndpoints()
    .AddEnvironmentVariable("ASPNETCORE_URLS", "http://0.0.0.0:8080")
    .AddEnvironmentVariable("DOTNET_URLS", "http://0.0.0.0:8080")
    .AddEnvironmentVariable("ASPNETCORE_FORWARDEDHEADERS_ENABLED", "true");
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Alexander Vestergaard Eriksen

79816527

Date: 2025-11-11 10:42:58
Score: 3
Natty:
Report link

Flutter now has an optionsViewOpenDirection option: https://github.com/flutter/flutter/pull/129802

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: emersion

79816526

Date: 2025-11-11 10:41:58
Score: 1.5
Natty:
Report link

Yes, Vuforia has some limitations compared to ARCore and ARKit. While it supports a broader range of devices and platforms, it relies more on image-based tracking and offers less advanced environmental understanding. ARCore and ARKit provide superior plane detection, light estimation, motion tracking, and depth sensing due to their tight hardware integration with Android and iOS. Vuforia’s performance can vary across devices, and its 3D object recognition is generally less accurate and slower. Additionally, some advanced features in Vuforia require paid licences, whereas ARCore and ARKit offer powerful capabilities for free within their ecosystems.

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

79816519

Date: 2025-11-11 10:38:57
Score: 1.5
Natty:
Report link

For MacOS, open the AppInfo.xcconfig file by following the path macos/Runner/Configs/AppInfo.xcconfig and edit the product name section.

PRODUCT_NAME = your_app_name
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Emre Acar

79816515

Date: 2025-11-11 10:36:56
Score: 4
Natty:
Report link

sorry miss click, but i dont know how can i change it

Reasons:
  • Blacklisted phrase (0.5): how can i
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: fladon

79816512

Date: 2025-11-11 10:33:55
Score: 2.5
Natty:
Report link

maybe it is with your tier. for instance I am on Usage tier 1, where I think I can make request 500/m. Check your tier

then, if you want, you can add logics.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shakhruz Bakhtiyarov

79816511

Date: 2025-11-11 10:33:55
Score: 1
Natty:
Report link

I am having trouble to understand how a tooling quesitons like this one fits in a "open-ended question" format. If you post this as proper question, it will be more thouroughly reviewed and critizised, but eventually you would receive an answer rather than a endless thread of comments that might lead nowhere.

Reasons:
  • RegEx Blacklisted phrase (2): I am having trouble
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: 463035818_is_not_an_ai

79816498

Date: 2025-11-11 10:19:52
Score: 2.5
Natty:
Report link

I am in the process of developing a python DataGridView that handles big datasets with easiness
Take a look if you want
pyDataGridView

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

79816495

Date: 2025-11-11 10:15:51
Score: 1.5
Natty:
Report link

Thanks @Jillian Hoenig for confirming this was resolved.

We have added an issue to our sprint to rewrite the Faust tutorial to use wp-env instead of wp-now - https://github.com/wpengine/faustjs/issues/2211

We feel this might be more reliable going forward for all systems. Additionally this is something we have used recently in our hwptoolkit examples.

I can let you know once this is implemented.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • User mentioned (1): @Jillian
  • Low reputation (0.5):
Posted by: Colin Murphy

79816486

Date: 2025-11-11 10:05:49
Score: 2.5
Natty:
Report link

The value isn’t rendered because the Float32Array isn’t reactive in Svelte when mutated. You must assign a new instance (or use $derived) so Svelte detects the change and updates the display.

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

79816485

Date: 2025-11-11 10:05:49
Score: 4
Natty:
Report link

I thought since Yocto Project is a tool for building, it should be posted here.

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

79816477

Date: 2025-11-11 09:47:46
Score: 3
Natty:
Report link

The build has been published in the production track of the Play Store, and real purchases seem to work as expected, so it seems that's a requirement for real purchases to work.

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

79816471

Date: 2025-11-11 09:42:44
Score: 3
Natty:
Report link

I need a personal information code that works in Python. My personal information is: My name is Hadi Amin, my major is Business Intelligence, I am 21 years old, and my university ID number is 202316697.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hadi Amen

79816468

Date: 2025-11-11 09:38:43
Score: 1.5
Natty:
Report link
<html>

<head>
    <title>400 Bad Request</title>
</head>

<body>
    <center>
        <h1>400 Bad Request</h1>
    </center>
</body>

</html>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Butani Nirva

79816458

Date: 2025-11-11 09:29:41
Score: 1
Natty:
Report link

Recently, I happened to discover a safe way to do this in any language, though I’ve only tested it on Windows 11 25H2.

1 | ChkDsk.exe [Drive] /F /R

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

79816457

Date: 2025-11-11 09:28:41
Score: 1
Natty:
Report link

Personally, my OSTS files are stored in a SharePoint document library. I synchronized the related folder with my local OneDrive. I created a JS file with my content, and then I have a Power Automate Flow that detects changes on the file with extension .js and that will automatically convert it into a .osts format.

enter image description here

The Convert step

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

79816455

Date: 2025-11-11 09:27:40
Score: 3
Natty:
Report link

gotcha, yeah i was already using memtester for memory test, might need to look into xsensors

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

79816452

Date: 2025-11-11 09:26:40
Score: 1.5
Natty:
Report link
today = datetime.datetime.now()
    future = today + datetime.timedelta(days=30)

you can add days with this model; first import the datetime Python package.

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

79816449

Date: 2025-11-11 09:24:40
Score: 2.5
Natty:
Report link

Start your career with 360DigiTMG’s Data Analyst Internship for Freshers. Learn SQL, Python, Excel, data visualization, and analytics while working on live projects and receiving expert mentorship. Placement support ensures practical skills for entry-level analytics roles.

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

79816441

Date: 2025-11-11 09:13:37
Score: 3
Natty:
Report link

I have the same issue, I have a dependency on an observable and I wanted to call toSignal in a way that it's not in a reactive context, so basically I wanted to have a withMethods with a private method returning the signalified observable to consume in the computed. There are some workaround but I think the methods defined in the withMethods should be available in the withComputed, there is plenty of other ways to do stupid things, this restriction is completely unnecessary.

So workaround 1:

withComputed(store => {
      const yourMethod = () => { };
      return {
        yourComputed: computed(() => store.yourState() * yourMethod()),
      };
    }),

This works fine, but the method is only reusable if you define it as a function outside of the signalStore.

Workaround 2:

withComputed((store, yourService = inject(YourService)) => ({
      yourComputed: computed(() => store.yourState() * yourService.yourMethod()),
    })),

By extracting your dependencies to a separate injectable you can reuse the methods and it looks a bit nicer also. In this case the YourService needs to be provided (I mean a mocked version) if you are using the createSignalStoreMock from ngx-signals-plus (this is also true for the first workaround if that contains injection).

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (1):
Posted by: dszendrei

79816439

Date: 2025-11-11 09:12:36
Score: 3
Natty:
Report link

If I am not mistaken, you can put @Startup on your manager to have it perform eager initialization at startup. Else your container will decide when to initialize it

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Startup
  • Single line (0.5):
Posted by: pebble unit

79816433

Date: 2025-11-11 09:06:34
Score: 2.5
Natty:
Report link

Overall, I want to implement a graceful shutdown for proper process handling, at least to send what's already been processed and set statuses so it doesn't have to be reprocessed on subsequent restarts. Ideally, this shouldn't take more than 5 seconds. I'm also just wondering what the best way to do this is. Many people simply use asyncio.all_tasks and cancel them, but that's fine if you don't have other libraries and only work with the tasks you're currently running.

I work within K8s, so I don't think there will be any SIGKILLs (they usually give 30 seconds for a graceful shutdown) or power outages.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Uoyroem

79816425

Date: 2025-11-11 09:04:33
Score: 3
Natty:
Report link

You need to be a developer of "Microsoft 365 and Copilot" apps. When adding yourself as developer or editing an existing developer (https://partner.microsoft.com/en-us/dashboard/account/v3/organization/identity?publisher=true&panelOpen=AddPublisher-SelectProgram) choose the program "Microsoft 365 and Copilot".

It may take some time until the Office tab (now it is "Microsoft 365 und Copilot") appears at the offers page (https://partner.microsoft.com/de-de/dashboard/marketplace-offers/overview).

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

79816422

Date: 2025-11-11 08:58:32
Score: 3
Natty:
Report link

I hope this can help you fix your issue, sir - https://mui.com/material-ui/integrations/tailwindcss/tailwindcss-v4/#next-js-app-router :)

Reasons:
  • Whitelisted phrase (-1): hope this can help
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: XxXtraCookie

79816408

Date: 2025-11-11 08:49:29
Score: 3.5
Natty:
Report link

BTW, don't choose the "Tooling" tab, if you want "normal" Stackoverflow Q and A where you can earn reputation. Stick with the default "Debugging"

Reasons:
  • Blacklisted phrase (1): Stackoverflow
  • RegEx Blacklisted phrase (1.5): reputation
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Mo_

79816406

Date: 2025-11-11 08:48:29
Score: 4.5
Natty:
Report link

That's perfect. Thank you very much for your support. The tests show that it works.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Karl-Heinz

79816394

Date: 2025-11-11 08:36:26
Score: 0.5
Natty:
Report link

Assuming this is Web app on Windows plan you should set netFrameworkVersion to value v8.0 and metadata to [{ "name": "CURRENT_STACK", "value": "dotnet"}]. I do not think windowsFxVersion is used in that case and it should be empty string. Note that you mention web app but your code says function app so it is unclear which is it. If it is for function app the same value is for netFrameworkVersion but metadata property is not needed for functions.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Stanislav Zhelyazkov

79816391

Date: 2025-11-11 08:33:25
Score: 6.5 đźš©
Natty: 5.5
Report link

i need help with c programming....Is anyone here

Reasons:
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (2.5): i need help
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: aditi jyoti

79816390

Date: 2025-11-11 08:33:24
Score: 4.5
Natty:
Report link

ok, this suggestion removed the StackOverFlowError exception.

Reasons:
  • Blacklisted phrase (1): StackOverFlow
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: numberfourteen

79816386

Date: 2025-11-11 08:30:24
Score: 1.5
Natty:
Report link

First of all inspect stack's _Change sets_. There might be one waiting to be executed.

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

79816384

Date: 2025-11-11 08:28:23
Score: 1.5
Natty:
Report link

You can try with LaunchedEffect in your LazyColumn.

And use snapTo , resetState animates again.

LaunchedEffect(item.id) {
    dismissState.snapTo(SwipeToDismissBoxValue.Settled)
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tigran Parsadanyan

79816380

Date: 2025-11-11 08:26:22
Score: 4
Natty: 4.5
Report link

Thank you Barmar! This one is precious.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: myname

79816379

Date: 2025-11-11 08:25:21
Score: 5
Natty:
Report link

And there is no need to 'create/instantiate' the SomeManager in the constructor of the bean class?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: numberfourteen

79816375

Date: 2025-11-11 08:22:21
Score: 1.5
Natty:
Report link

It doesnt look like a DI issue but more of a code design issue. StartupBean produces your two MyImplementations, but it also needs to inject a SomeManager during construction, but this manager needs the two MyImplementations... I m guessing the init is not complete and there is some sort of circular dependency? I would just delete the StartupBean constructor since nothing happens there

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
Posted by: pebble unit

79816373

Date: 2025-11-11 08:20:20
Score: 4
Natty:
Report link

Yes, absolutely, but the package deming with the function deming() does not use least squares it uses maximum likelihood estimation to find the best fit of coefficients. Therefore, I am trying to find a package which uses least squares and with the option of getting the regression through the origin.

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user25269951

79816366

Date: 2025-11-11 08:10:18
Score: 0.5
Natty:
Report link

Why at all do you use demjson3 ? Python and javascript have builtin JSON support.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why
  • High reputation (-2):
Posted by: Maurice Meyer

79816358

Date: 2025-11-11 07:59:16
Score: 1
Natty:
Report link

You can resolve this issue by converting the tbl_hierarchical object to a standard gtsummary table using as_gt() or as_tibble() before merging. The “Zero rows” output causes incompatibility during stacking, so ensure each table has consistent structure (e.g., same columns) or use tbl_merge() after standardizing formats.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Orange Biotech

79816354

Date: 2025-11-11 07:50:14
Score: 3
Natty:
Report link

{"isLoggedIn":true,"uuidToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1dWlkIjoiY2Q3ODU4NWYzYmU3NDU1MDk0NzhmZjNmZWExMmQ3ZGEiLCJleHAiOjE3NjU0Mzg1NTJ9.oQ7DQZZVfHQ0bt-LNeiw7onBPFkGZqWW43p_e26UslU"}

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ateeb Hassan

79816338

Date: 2025-11-11 07:29:09
Score: 1
Natty:
Report link

Add 'preferCurrentTab: true' to the method. You can ignore the type error, since it seems to be a typing problem. This param is indeed correct!

navigator.mediaDevices
    .getDisplayMedia({
      video: true,
      preferCurrentTab: true,
    })
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Patryk Stemporowski

79816334

Date: 2025-11-11 07:24:08
Score: 3
Natty:
Report link

Pick a suitable way to style your polygon:

https://github.com/lclpedro/leaflet.pm?tab=readme-ov-file#customize-style

Then read the state from your color atom and use it.

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

79816324

Date: 2025-11-11 07:11:06
Score: 2
Natty:
Report link

The 400 error happens because the Agent Builder sends an incomplete message payload when the thread exceeds limits.
Keep conversations shorter or restart sessions to avoid truncating reasoning items.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Prateek Mani Tripathi

79816318

Date: 2025-11-11 07:05:04
Score: 8
Natty:
Report link

Thank you very much. I understand now, and it makes sense. Could you post that as an answer?

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2.5): Could you post
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: pietro

79816316

Date: 2025-11-11 07:01:03
Score: 3
Natty:
Report link
  1. You cannot make the type checker infer the return type from a runtime argument like rtype: type[T]. The type checker sees that both str and int are possible return types and cant guarantee which will be returned at call sites.

    1. Why? TypeVar substitution only works when the type is known at type-check time, usually from the argument type, not its value.

    2. How can it be done? Overloads

from typing import overload

VALUES: dict[str, str] = {"SIZE": "100", "ADDR": "0x100", "NAME": "potato"}

@overload
def get_parameter(parameter: str, rtype: type[int]) -> int: ...
@overload
def get_parameter(parameter: str, rtype: type[str]) -> str: ...

def get_parameter(parameter: str, rtype: type[str] | type[int] = str) -> str | int:
    value = VALUES[parameter]
    if rtype is int:
        return int(value, 0)
    return value

2. Yes, the overload works in Python 3.10 as long as youre using from typing import overload

3. Yes, the example above shows defaulting rtype to str, but you can default to int if you prefer:

def get_parameter(parameter: str, rtype: type[str] | type[int] = int) -> str | int:
    # implementation...

However, the type checker will assume calls without rtype return int. You should add corresponding overload for that:

@overload
def get_parameter(parameter: str) -> int: ...

IDK if this helps you but I hope so - If it does not help you just downvote my answer or I can delete it if you want me to.

Have a great day.

PS: i dont know either why the downvotes xD

Reasons:
  • Blacklisted phrase (0.5): How can i
  • Blacklisted phrase (0.5): Why?
  • RegEx Blacklisted phrase (2): downvote
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: ChichiKugel

79816309

Date: 2025-11-11 06:51:01
Score: 1
Natty:
Report link

I use something like this in a @Configuration annotated class

    @ConfigurationProperties(prefix = "some.prefix")
    @ConditionalOnProperty(prefix = "enabled")
    MyConfigProperties myConfigProperties() {
        return new MyConfigProperties();
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Martijn Stalenhoef

79816307

Date: 2025-11-11 06:51:01
Score: 0.5
Natty:
Report link
  1. Check your active plugins, especially:

    • Jetpack (or Site Stats)

    • Any optimization plugin (e.g., Autoptimize, WP Rocket, LiteSpeed Cache, etc.)

    • Any custom performance or HTML minifier plugin

  2. Temporarily disable optimization/minification and clear your cache.
    Then reload your site and check the browser console/network tab:

    • If the malformed URLs disappear → the issue is from a minifier plugin.

    • If they remain → the issue is likely from Jetpack or theme code.

  3. Check your theme footer (often in footer.php or similar):

    • Search for stats.wp.com or <script src="https://stats.wp.com

    • If you find a script tag with ' defer='defer in it, remove the extra ' after .js

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

79816303

Date: 2025-11-11 06:39:59
Score: 2
Natty:
Report link

web apps can download files, but they cannot automatically save them inside system folders like %AppData%

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Prateek Mani Tripathi

79816298

Date: 2025-11-11 06:34:58
Score: 1
Natty:
Report link

Prepare the PKG for Proper Installation (Key Step from Official Docs):

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

79816296

Date: 2025-11-11 06:33:57
Score: 2.5
Natty:
Report link

In my case, there was a existing rebase was in process which I didn't completed. I aborted that after that this issue resolved.

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

79816276

Date: 2025-11-11 06:00:50
Score: 0.5
Natty:
Report link

You can try to wrap your safeAreaView in a View give full backgroundColor to the view so it extends.
OR
You could try using -
const insets = useSafeAreaInsets()
and then apply the insets inside your LinearGradient like this -
paddingTop: insets.top
paddingBottom: insets.bottom

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

79816275

Date: 2025-11-11 05:59:50
Score: 0.5
Natty:
Report link
"assumeChangesOnlyAffectDirectDependencies": true,

added in tsconfig.node.json and it worked

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yousif AL Badri

79816274

Date: 2025-11-11 05:59:50
Score: 1
Natty:
Report link
add this <meta-data> tag inside the <application> tag in your AndroidManifest.xml 
 <meta-data
        android:name="io.flutter.embedding.android.EnableImpeller"
        android:value="false" />
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bibin Baby Avira

79816268

Date: 2025-11-11 05:52:48
Score: 0.5
Natty:
Report link

You may want to plug in your questions into your favorite browser and see what comes up.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Thomas Matthews

79816260

Date: 2025-11-11 05:42:45
Score: 0.5
Natty:
Report link

I don't think it is possible to use dataclasses.

Lists do work

list_temp = [1, 2, 4, 8, 16, 32]
list_press = [1, 3, 9, 27, 81, 243]


sns.lineplot(data={'Temperature': list_temp, 'Pressure': list_press})

You can also nest the lists ...

hourly_reading = [list_temp, list_press]
sns.lineplot(data=hourly_reading)

... however you lose the series names. In the legend they will appear as generic index numbers (0, 1, 2 ...)

Dictionaries work quite well

met_dict = {"Temperatures": list_temp, "Pressures": list_press}
sns.lineplot(met_dict)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: timelessbeing

79816258

Date: 2025-11-11 05:36:44
Score: 1.5
Natty:
Report link

You can set workbook.default_format_properties in 2 ways:

  1. When you create workbook, set the 'options' parameter:

    wb = Workbook(options={'default_format_properties': {'font_name': ...., 'font_size': ....}})

  2. After workbook created, before add_format(), set the 'default_format_properties' property:

    wb.default_format_properties = {'font_name': ...., 'font_size': ....}

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

79816251

Date: 2025-11-11 05:15:39
Score: 1
Natty:
Report link

enter image description here

I created the design without external packages by extracting and customizing the necessary shape from the convex_bottom_bar package for my bottom navbar.

Full Code:

import 'dart:math' as math;

import 'package:flutter/material.dart';

class ConvexNotchedRectangle extends NotchedShape {
  /// The corner radius of the top-left and top-right edges of the bar.
  final double radius;

  /// Create a convex notched rectangle with optional rounded top corners.
  const ConvexNotchedRectangle({this.radius = 0});

  @override
  Path getOuterPath(Rect host, Rect? guest) {
    if (guest == null || !host.overlaps(guest)) {
      // If there’s no overlap or no guest (FAB), just draw a normal rectangle.
      return Path()..addRect(host);
    }

    // The guest (FAB) is circular, bounded by the guest rectangle.
    final notchRadius = guest.width / 2.0;

    // These control the smoothness of the convex curve.
    const s1 = 18.0;
    const s2 = 2.0;

    final r = notchRadius;
    final a = -1.0 * r - s2;
    final b = host.top - guest.center.dy;

    // Compute control points using Bezier curve math
    final n2 = math.sqrt(b * b * r * r * (a * a + b * b - r * r));
    final p2xA = ((a * r * r) - n2) / (a * a + b * b);
    final p2xB = ((a * r * r) + n2) / (a * a + b * b);
    final p2yA = -math.sqrt(r * r - p2xA * p2xA);
    final p2yB = -math.sqrt(r * r - p2xB * p2xB);

    final p = List<Offset>.filled(6, Offset.zero, growable: false);

    // p0, p1, and p2 are control points for the left side curve
    p[0] = Offset(a - s1, b);
    p[1] = Offset(a, b);
    final cmp = b < 0 ? -1.0 : 1.0;
    p[2] = cmp * p2yA > cmp * p2yB ? Offset(p2xA, p2yA) : Offset(p2xB, p2yB);

    // p3, p4, and p5 are mirrored on the x-axis for the right curve
    p[3] = Offset(-1.0 * p[2].dx, p[2].dy);
    p[4] = Offset(-1.0 * p[1].dx, p[1].dy);
    p[5] = Offset(-1.0 * p[0].dx, p[0].dy);

    // Translate all control points to the FAB’s center position
    for (var i = 0; i < p.length; i++) {
      p[i] = p[i] + guest.center;
    }

    // Build the final path with optional corner radius
    return radius > 0
        ? (Path()
            ..moveTo(host.left, host.top + radius)
            ..arcToPoint(
              Offset(host.left + radius, host.top),
              radius: Radius.circular(radius),
            )
            ..lineTo(p[0].dx, p[0].dy)
            ..quadraticBezierTo(p[1].dx, p[1].dy, p[2].dx, p[2].dy)
            ..arcToPoint(
              p[3],
              radius: Radius.circular(notchRadius),
              clockwise: true,
            )
            ..quadraticBezierTo(p[4].dx, p[4].dy, p[5].dx, p[5].dy)
            ..lineTo(host.right - radius, host.top)
            ..arcToPoint(
              Offset(host.right, host.top + radius),
              radius: Radius.circular(radius),
            )
            ..lineTo(host.right, host.bottom)
            ..lineTo(host.left, host.bottom)
            ..close())
        : (Path()
            ..moveTo(host.left, host.top)
            ..lineTo(p[0].dx, p[0].dy)
            ..quadraticBezierTo(p[1].dx, p[1].dy, p[2].dx, p[2].dy)
            ..arcToPoint(
              p[3],
              radius: Radius.circular(notchRadius),
              clockwise: true,
            )
            ..quadraticBezierTo(p[4].dx, p[4].dy, p[5].dx, p[5].dy)
            ..lineTo(host.right, host.top)
            ..lineTo(host.right, host.bottom)
            ..lineTo(host.left, host.bottom)
            ..close());
  }
}

 BottomAppBar(
          padding: EdgeInsets.zero,
          color: Colors.white,
          shape: const ConvexNotchedRectangle(),
          notchMargin: 8,
          elevation: 0,
          clipBehavior: Clip.antiAlias,
          child: SizedBox(
            height: 88,
            child: Row(
              mainAxisAlignment: MainAxisAlignment.spaceAround,
              children: [
                _buildNavItem(0),
                _buildNavItem(1),
                _buildNavItem(2),
                _buildNavItem(3),
                _buildNavItem(4),
              ],
            ),
          ),
        ),
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Raju Islam

79816231

Date: 2025-11-11 04:28:29
Score: 2.5
Natty:
Report link

I was finally able to get it to work by encoding the String to : Base64.NO_WRAP

This was accepted in the Retrofit Header

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Toufiq Akbar

79816205

Date: 2025-11-11 03:02:10
Score: 7 đźš©
Natty: 4
Report link

really related? why do you have .gitignore file in strapi directory? because i have the same issue and do not have .gitignore file in the server.

Reasons:
  • Blacklisted phrase (1): i have the same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i have the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: TGC

79816203

Date: 2025-11-11 03:00:09
Score: 2.5
Natty:
Report link

You can add your specific feature file path in the cucumber.json file that you created after installation then run the command

It will works

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

79816197

Date: 2025-11-11 02:50:06
Score: 0.5
Natty:
Report link

Off topic here. Try superuser. This site is for programming questions.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: user207421

79816189

Date: 2025-11-11 02:31:02
Score: 0.5
Natty:
Report link

I have a similar task and solve it as pointed in Ahmet Emrebas's post. The div, I want to have all time content scrolled down, needs to be included in other dummy/container div. I call divbot.scrollIntoView({ behavior: "smooth", block: "end" }) after adding a new content in the divbot. CSS may look like:

.container-div {
    opacity:0.9;
    background-color:#ddd;
    position:fixed;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    overflow:auto;
    z-index:998;
}

.container-div > div {
    padding: 1em;
    color: #0e131f;
    font-family: monospace; 
}

CSS needs to be edited to reflect actual div size and other attributes as desired.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Don Cesar D'Bazar

79816181

Date: 2025-11-11 02:15:59
Score: 1.5
Natty:
Report link

when adding

    $U/_sleep\
    $U/_pingpong\
    $U/_primes\
    $U/_find\
    $U/_xargs\

make sure the number of spaces before $the same as lines above, and do not use tab, which will make mistake in makefile.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): when addin
  • Low reputation (1):
Posted by: Amemiya

79816178

Date: 2025-11-11 02:12:58
Score: 2.5
Natty:
Report link

# Source - https://stackoverflow.com/q

# Posted by troy_achilies

# Retrieved 2025-11-10, License - CC BY-SA 3.0

from docx import Document

from docx.shared import RGBColor

document = Document()

run = document.add_paragraph('some text').add_run()

font = run.font

font.color.rgb = RGBColor(0x42, 0x24, 0xE9)

p=document.add_paragraph('aaa')

document.save('demo1.docx')

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • No code block (0.5):
  • Low reputation (1):
Posted by: Claudia GarzĂłn

79816175

Date: 2025-11-11 02:11:58
Score: 0.5
Natty:
Report link

If you're ok with showing the link itself showing as the link text, this is simplest:

df.style.format(hyperlinks="html")

Documentation:

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

79816170

Date: 2025-11-11 01:58:55
Score: 2.5
Natty:
Report link

Here is my latest discovering. Through debugging, I found that the code is reentered, and all entries are via the main thread. This might be related to the content of my code. I obtained the ServletContext through ApplicationContext, then retrieved all filters in the servlet container, and subsequently obtained all HandlerInterceptors via reflection.

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

79816151

Date: 2025-11-11 00:58:42
Score: 0.5
Natty:
Report link

I know it may be late. I tried all of them, and none worked. I had my app available only in my country, but I changed that and selected all countries. Then I tried the price schedule solution, and it worked for me

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: troudi abderrahim

79816145

Date: 2025-11-11 00:49:40
Score: 1
Natty:
Report link

That looks like a live activity

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

79816132

Date: 2025-11-10 23:49:28
Score: 1
Natty:
Report link

After more hours than I care to admit:

Even though it's completely irrelevant to my setup, apparently registration.url on the target needs to be identical to sync.url on source for push registration to work. Since source is firewalled it doesn't even have a URL, so I just made something up that ends in /sync/<source engine name>.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mark G

79816118

Date: 2025-11-10 23:15:20
Score: 2
Natty:
Report link

I hope I am not to late to comment on this. Gprbuild is far superior to gnatmake. I've built windows programs with Ada libaries built with gnatmake. The process with gprbuild hides so much of the complexity. And it can build C++ code too while gnatmake is Ada only.

To my taste, your solution relies too heavily on libraries. The Ada source already contains most of the depedency information. Have shared.gpr list the shared source directories. Let exes_comp-x.gpr with "shared"; and add its own source directories and list all the executables in the Main list.

And without the DLLs programs should load faster and have fewer security holes!

Reasons:
  • Blacklisted phrase (1): to comment
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Chris M Moore

79816115

Date: 2025-11-10 23:06:18
Score: 5
Natty: 5.5
Report link

Lightsail bucket now support CORS configuration, please refer to: https://docs.aws.amazon.com/en_us/lightsail/latest/userguide/configure-cors.html

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Joy

79816112

Date: 2025-11-10 22:52:15
Score: 2
Natty:
Report link

You're more likely to get help if your question included representative sample data, see How to make a great R reproducible example , [mcve], and https://stackoverflow.com/tags/r/info.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: r2evans

79816109

Date: 2025-11-10 22:45:13
Score: 0.5
Natty:
Report link

Dragging up an old question, but in my case the exception page I got when trying to load one of our ASP.NET Web Forms sites wasn't telling me WHAT it couldn't load, just that there was an exception.

The Event Viewer didn't provide any better details than "csc.exe" and "System.IO.FileLoadException".

After enabling Fusion logging (assembly binding), I was able to track down that csc.exe was failing to load bin\roslyn\System.Runtime.CompilerServices.Unsafe.dll because of a version mismatch. Turns out csc.exe.Config was missing so a bindingRedirect (0.0.0.0-5.0.0.0 -> 5.0.0.0) wasn't happening.

Since this was the top result for "iis .net runtime csc.exe System.IO.FileLoadException" on Google, maybe this will save somebody else a few hours of head scratching.

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

79816108

Date: 2025-11-10 22:45:13
Score: 3
Natty:
Report link

You're not showing how or where you're doing the sorting. Are you sorting in the view or are you using a SortDescriptor in the Query, or else?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Andrei G.

79816103

Date: 2025-11-10 22:35:11
Score: 3.5
Natty:
Report link

Also, to motivate the discussion, imagine the following syntaxic sugar application: getitem transforms a[key1:val1, key2:val2,... ] into an ordered dict

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

79816101

Date: 2025-11-10 22:32:10
Score: 2.5
Natty:
Report link

Aparrently OpenJDK 8 Temurin using Alpine (8-jdk-alpine) currently has an issue with missing ECDHE Ciphers (see https://github.com/adoptium/temurin-build/issues/3002). This probably leads to the issue with the failed handshake.

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

79816100

Date: 2025-11-10 22:31:10
Score: 2.5
Natty:
Report link

Thanks, I rephrased "returns" to "received". I meant the argument received.

In your class B above, you are implicitly assuming that individual indices cannot be tuple:

I am comparing to function, foo(**args) vs. foo[**args], because they are mathematically equivalent (indexing is a function from index space), and share a similar "argument (un)packing" functional feature (and because in the end both are written as methods)

I understand that 1-length tuples have been identified with their scalar value (its single entry), but I find it weird and can't understand why

So I see what you lose and don't guess what you gain.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: nath