79761360

Date: 2025-09-10 23:06:04
Score: 1.5
Natty:
Report link

I know this is a late answer, but making a 4 set Venn diagram with circles is mathematically impossible.

https://math.stackexchange.com/questions/2919421/making-a-venn-diagram-with-four-circles-impossible

Looking at Allan Cameron's diagram, you can see he miscounted, and the diagram is missing 10 and 13. Use ellipses.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Phillip Feldman

79761359

Date: 2025-09-10 23:06:04
Score: 1.5
Natty:
Report link

First add the new SDKs (the box with a wee downward arrow)

enter image description here

Next click on the SDK Tools and there will be an option to update them.

enter image description here

Open the AVD Manager, Pick your Phone and I think you wll see more options available to you.

enter image description here

Hope this helps.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Gareth

79761357

Date: 2025-09-10 22:52:01
Score: 3.5
Natty:
Report link

Download the png and place it in the node program file folder, select browse on windows terminal and navigate to your logo png location and select

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

79761356

Date: 2025-09-10 22:51:01
Score: 3
Natty:
Report link

You can try red laser beams mixed with some green or UV or heating incandescent lights above 250W with some fans, also the direction of where do you locate the source is important.

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

79761330

Date: 2025-09-10 22:11:52
Score: 1.5
Natty:
Report link
inputs = processor('hello, i hope you are doing well', voice_preset=voice_preset)
## add this
for key in inputs.keys():
    inputs[key] = inputs[key].to("cuda")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Berg Ginú

79761324

Date: 2025-09-10 21:56:49
Score: 1
Natty:
Report link

The key part of the error is: ImportError: Missing optional dependency 'openpyxl'. Use pip or conda to install openpyxl. Pandas needs an engine to read the file-details in the docs here.

To install openpyxl run pip install openpyxl.

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

79761322

Date: 2025-09-10 21:55:49
Score: 1
Natty:
Report link

So, for a panda dataframe object, when using the .to_string method, there is a parameter you can specify now for column spacing! I do not know if this is just in newer versions and was not around when you had this problem 4 years ago, but:

print (#dataframeobjectname#.to_string(col_space=#n#)) Will insert spaces between the columns for you. With values of n of 1 or below, the spacing between columns is 1 space, but as you increase n, the number of spaces you specify does get inserted between columns. Interesting effect, though, it adds n-1 spaces in front of the first column, LOL.

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

79761319

Date: 2025-09-10 21:49:47
Score: 1.5
Natty:
Report link

Try to add the person objectclass to testuser in your bootstrap.ldif file because expects sn and cn as required attribute.

objectClass: person
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Carlos Alberto Minafra Junior

79761310

Date: 2025-09-10 21:40:45
Score: 1.5
Natty:
Report link

AnyPublisher itself doesn’t conform to Sendable, because Combines Publisher protocol isnt marked that way. However if both your Output and Failure types are Sendable, you can add a conditional conformance to make AnyPublisher usable across concurrency domains.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sarmad ch

79761305

Date: 2025-09-10 21:32:43
Score: 3.5
Natty:
Report link

In C language Division (/) has higher precedence than subtraction (-)

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

79761302

Date: 2025-09-10 21:26:42
Score: 0.5
Natty:
Report link

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map#using_map_on_sparse_arrays

The array you created with Array(3) is a sparse array where all elements are empty, and map doesn't call the callback function on the empty elements, so map passes through the array and returns the array unchanged. This is why your code doesn't work

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

79761301

Date: 2025-09-10 21:25:42
Score: 1
Natty:
Report link

A bit late for OP, but for people who land on this thread via search: my solution for this is a hack, but it works. I use the date range control since it's the only available date picker, and then add a metric called "Pick single date warning" defined as

IF(COUNT_DISTINCT(date) > 1, "SELECT A SINGLE DATE", "")

Then I add a "Scorecard" chart using this metric with the field name hidden and place it directly under the date picker. If a user selects a multi-date range they see the message, and it goes away when they have a single date.

Multi-date date picker with user warning message

Single day selected from date range picker with no warning

I have used this method extensively when it's hard to create the perfect dataset and some user selections may yield invalid results.

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

79761288

Date: 2025-09-10 21:09:38
Score: 1.5
Natty:
Report link

The setting is called zoneRedundant not isZoneRedundant according to the documentation: https://learn.microsoft.com/en-us/azure/templates/microsoft.web/2021-02-01/serverfarms?tabs=bicep&pivots=deployment-language-bicep

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

79761281

Date: 2025-09-10 20:56:35
Score: 2
Natty:
Report link

Anybody trying to setup FIGMA with MCP can refer to the below documentation.

https://help.figma.com/hc/en-us/articles/32132100833559-Guide-to-the-Dev-Mode-MCP-Server

I tried with VSCode and Github Copilot with agent mode and Gemini Pro and it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: letmesolve

79761273

Date: 2025-09-10 20:42:31
Score: 1.5
Natty:
Report link

Changing NavigationStack to NavigationView fixes the problem and you can keep large titles.

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

79761268

Date: 2025-09-10 20:31:29
Score: 3
Natty:
Report link

As of yesterday, none of these methods work at all. The only which is still functional is OAuth via the linkedin API.

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

79761263

Date: 2025-09-10 20:27:28
Score: 0.5
Natty:
Report link

ggplot2::theme(legend.location = "plot") will override the default legend.location = "panel" and center on the full plot area. ggplot2::theme(legend.justification ...) can be used to manually shift the legend position.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Josh

79761257

Date: 2025-09-10 20:18:26
Score: 2
Natty:
Report link

getEnvelope and getEnvelopeInternal return rectangles aligned with the xy axes. If you prefer the minimal bounding which may be aligned obliqely, use MinimumAreaRectangle.getMinumumRectangle

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

79761249

Date: 2025-09-10 20:08:23
Score: 0.5
Natty:
Report link

The issue stems from how the PowerShell handles the wildcard (*) in the *.c or *.cpp pattern.

Unlike Unix-based shells (like Bash), Windows shells do not automatically expand wildcards like *.c into a list of matching files, so GCC literally receives *.c, which is not a valid filename.

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

79761248

Date: 2025-09-10 20:06:22
Score: 2.5
Natty:
Report link

If OnBackButtonPressed() isn't getting called, it's possible that the callback isn't being setup successfully in the Awake() method. You could try changing Awake() to Start().

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

79761231

Date: 2025-09-10 19:44:16
Score: 2
Natty:
Report link

Construction estimating services Florida provide accurate cost projections for residential, commercial, and industrial projects. These services help contractors, builders, and homeowners manage budgets, avoid unexpected expenses, and streamline planning. Florida-based estimators understand regional costs, permitting, and materials unique to the state’s construction landscape.

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

79761228

Date: 2025-09-10 19:42:15
Score: 3
Natty:
Report link

According to this document, "AND EVER" can be used with @currentIteration +/-n when using the WIQL editor. With EVER, you should be able to accomplish your goal. See the link for more information, but something like this in WIQL should meet your needs. The syntax for the iteration name will vary.

AND [System.IterationPath] = @currentIteration('[Project]\Team')
AND EVER [System.IterationPath] = @currentIteration('[Project]\Team') -1

enter image description here

Reasons:
  • Blacklisted phrase (1): this document
  • RegEx Blacklisted phrase (1): See the link
  • Has code block (-0.5):
  • User mentioned (1): @currentIteration
  • Low reputation (0.5):
Posted by: alex2017

79761209

Date: 2025-09-10 19:15:08
Score: 1
Natty:
Report link

The answer is you can't do this in python. An AI told me this as to why you can't use an in memory location to recreate an object:

Why Direct Memory Control Isn't Possible in Python

  • Abstracted Memory Management: Python handles memory allocation and deallocation automatically, preventing direct user manipulation of memory addresses.

  • References, Not Pointers: Variables in Python are references to objects, not raw memory pointers.

  • Safety and Simplicity: This design choice avoids the complexities and potential errors (like memory leaks or dangling pointers) common in languages that provide direct pointer control.

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

79761207

Date: 2025-09-10 19:15:08
Score: 0.5
Natty:
Report link

I'm running Nuxt 4.x and suddenly hit this same issue after a long day of heavy dev work. I ended up running nuxi cleanup as well as blowing away my lockfile and node_modules and reinstalling. It fixed most of the issue: any changes in app.vue don't get hot reloaded: only changes to files in the pages directory seem to get reloaded. Even modifying components doesn't trigger it.

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

79761197

Date: 2025-09-10 19:05:05
Score: 3.5
Natty:
Report link

Thanks Ryan

I will give this a go tomorrow. You are correct I just wanted a count of the cells with a value returned by the Vlookup. It’s just used to compare that column with another as part of a tracking form.

Cheers,

Mick

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Cheers
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Desiato

79761188

Date: 2025-09-10 18:49:02
Score: 3.5
Natty:
Report link

I believe another workaround to this is to use glm() with the option family="gaussian" instead of lm()

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

79761185

Date: 2025-09-10 18:44:00
Score: 2
Natty:
Report link

[21:15:05] EnumToLowerCase\EnumToLowerCase.EnumWithPrefixGenerator\Unity.AppUI.Unity.AppUI.UI.AssetTargetField.GetSizeUssClassName.gen.cs(3,5): error CS0246: The type or namespace name 'internal' could not be found (are you missing a using directive or an assembly reference?)

[21:15:05] EnumToLowerCase\EnumToLowerCase.EnumWithPrefixGenerator\Unity.AppUI.Unity.AppUI.UI.ToastVisualElement.GetNotificationStyleUssClassName.gen.cs(3,5): error CS0246: The type or namespace name 'internal' could not be found (are you missing a using directive or an assembly reference?)

[21:15:05] EnumToLowerCase\EnumToLowerCase.EnumWithPrefixGenerator\Unity.AppUI.Unity.AppUI.UI.ToastVisualElement.GetNotificationStyleUssClassName.gen.cs(3,14): error CS0102: The type '<invalid-global-code>' already contains a definition for "

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: İsmail Z. AKIN

79761182

Date: 2025-09-10 18:41:00
Score: 1.5
Natty:
Report link

You can install expo-build-properties. In your app.json, add this to your plugins

[
        "expo-build-properties",
        {
          "ios": {
            "extraPods": [
              { "name": "Your Pod Name", "module_headers": true }
            ]
          }
        }
      ],

See https://docs.expo.dev/versions/latest/sdk/build-properties/#extraiospoddependency

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

79761181

Date: 2025-09-10 18:38:59
Score: 3
Natty:
Report link

There is an implementation of SQL/MED DATALINK for Postgres at github.com/lacanoid/datalink

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

79761170

Date: 2025-09-10 18:24:56
Score: 2.5
Natty:
Report link

This worked! Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Daniel Pires

79761169

Date: 2025-09-10 18:22:55
Score: 1.5
Natty:
Report link
    private void Update()
    {
        if (Application.platform == RuntimePlatform.Android)
        {
            if (UnityEngine.InputSystem.Keyboard.current.escapeKey.isPressed)
            {
                OnBackButtonPressed();
            }
        }
    }

This seems to be working

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

79761154

Date: 2025-09-10 18:10:51
Score: 2
Natty:
Report link

I figured it out, setLore cannot be used on items that are already present in-game.

Reasons:
  • Whitelisted phrase (-2): I figured it out
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rey Debida

79761151

Date: 2025-09-10 18:04:50
Score: 2
Natty:
Report link

In my case where I use authentication using RBAC.

I have already enabled system assigned managed identity in the Search Service > Settings > Identity but I was missing Search Service > Settings > Keys to also allow RBAC (option RBAC or Both).

This was my 2 hours journey.

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

79761146

Date: 2025-09-10 17:59:48
Score: 1
Natty:
Report link
hdc = win32gui.GetDC(0)
user32 = ctypes.windll.user32
user32.SetProcessDPIAware()
[w, h] = [user32.GetSystemMetrics(0), user32.GetSystemMetrics(1)]
win32gui.DrawIcon(
        hdc,
        random.randint(0, w),
        random.randint(0, h),
        win32gui.LoadIcon(None, win32con.IDI_ERROR),
    )

Draw Error Icon To Random Place.

import win32gui
import win32con
import ctypes
import random
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Xdart

79761123

Date: 2025-09-10 17:22:38
Score: 2.5
Natty:
Report link

You could also add this to the while loop after the break
// This await new promise function is when the code checks a condition repeatedly,
// pausing for 1 second between each check until the condition is met
await new Promise(resolve => setTimeout(resolve, 1000)) // Simple 1-second poll

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

79761122

Date: 2025-09-10 17:22:38
Score: 0.5
Natty:
Report link

The simplest way that work without weird window issue is to create a shortcut at %appdata%\Microsoft\Windows\Start Menu\Programs\Startup

The lnk Terminal quake mode, open and set target as wt.exe --window "_quake" pwsh -window minimized.

That’s it.

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

79761121

Date: 2025-09-10 17:19:37
Score: 1.5
Natty:
Report link

<script type="text/javascript" src="https://ssl.gstatic.com/trends_nrtr/4215_RC01/embed_loader.js"></script>

<script type="text/javascript">

trends.embed.renderExploreWidget("TIMESERIES", {"comparisonItem":[{"keyword":"perda de peso","geo":"BR","time":"now 7-d"}],"category":0,"property":""}, {"exploreQuery":"date=now%207-d&geo=BR&q=perda%20de%20peso&hl=pt","guestPath":"https://trends.google.com.br:443/trends/embed/"});

</script>

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

79761098

Date: 2025-09-10 16:49:29
Score: 0.5
Natty:
Report link

Adding to the answer by k_o_ I used the java-comment-preprocessor (jcp), and this is how my maven plugins looked:

      <!-- this plugin processes the source code and puts the 
           processed files into ${project.build.directory}/generated-test-sources/preprocessed -->
      <plugin>
        <groupId>com.igormaznitsa</groupId>
        <artifactId>jcp</artifactId>
        <!-- 7.2.0 is latest at this time, but 7.1.2 is latest that works 
             with jdk8. -->
        <version>7.1.2</version>
        <executions>
          <execution>
            <!-- Only my test source has conditionals.
                 Use generate-sources if using "main". --> 
            <phase>generate-test-sources</phase>
            <goals>
              <goal>preprocess</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <!-- not sure why , but I believe this is necessary when using
               generate-test-sources -->
          <useTestSources>true</useTestSources>
          <vars>
            <JDK11>true</JDK11>
          </vars>
          <sources>
            <source>${project.basedir}/src/test/java-unprocessed</source>
          </sources>
          <!-- I think I can use <targetTest> to specify where the processed files
               should be written. I just accepted the default. -->  
        </configuration>
      </plugin>

      <plugin>
        <!-- This plugin adds the generated (preprocessed) code from above, 
             into the build -->
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
        <version>3.5.0</version>
        <executions>
          <execution>
            <id>add-source</id>
            <phase>generate-test-sources</phase>
            <goals>
              <!-- Use add-source for "main". I think you need two different
                   execution entries if you need both phases.  -->
              <goal>add-test-source</goal>
            </goals>
            <configuration>
              <sources>
                <!-- This is the default output from the above jcp plugin -->
                <source>${project.build.directory}/generated-test-sources/preprocessed</source>
              </sources>
            </configuration>
          </execution>
        </executions>
      </plugin>

The result is, Java code files that are found in ${project.basedir}/src/test/java-unprocessed are processed by JCP and then dropped into ${project.build.directory}/generated-test-sources/preprocessed, and then the regular test compile includes those generated test sources.

My Java code has stuff like this in it:

//#ifdef JDK11
  code code code
//#endif
//#ifdef JDK8
  code code code
//#endif

And it does what you think it should do.

The jcp plugin is really handy, and confoundingly undocumented. There's literally no documentation, no public examples, no hints. The so-called "examples" on the wiki are not examples at all. They don't show how to do this ^^. Also I could not find a reference on all the expressions that are supported in comments. All I used was #ifdef. There's a bunch more. Good luck figuring out what's available!

For information on how to use it, I guess....read the source code?

Reasons:
  • Blacklisted phrase (1): this plugin
  • Blacklisted phrase (1): This plugin
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Cheeso

79761094

Date: 2025-09-10 16:44:28
Score: 1
Natty:
Report link

also, you can style it out in your custom-theme.scss:

mat-stepper.hideStepIcon .mat-step-icon {
    display: none;
}

and in your template:

<mat-stepper class="pt-2 hideStepIcon" ... >

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

79761083

Date: 2025-09-10 16:34:25
Score: 0.5
Natty:
Report link
<!--HTML CODE-->
<html>
    <head>
        <!-- CSS CODE-->
        <style>
            /* Background Image */
            body 
            {
                background-image: url(Background.png); /* Used to add the Background Picture */
                background-position: center; /* Used to center the Picture into the screen */
                background-size:cover; /* Used to cover the picture in the entire screen */
                background-repeat:repeat; /* Used to repeat the Background Picture */
                background-attachment: fixed; /* Used to keep the background fixed when scrolling */
            }

            #p1 
            {
                color:aqua;
            
            }
        </style>
    <head>

    <body>
        <header>
          
        </header>

        <main>
            
        <p id="p1"> GeorgeK@portfolio:~@</p>
        </main>

        <footer>

        </footer>

    </body>

</html>

THIS IS MY CODE

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

79761069

Date: 2025-09-10 16:24:22
Score: 1
Natty:
Report link

Why is this code different?

The difference is when and where you create the task. There is a big difference between

... Task.Run(async () => await CreateTheTaskInsideTheLambda().ConfigureAwait(false))...

and

var theTask = CreateTheTaskOutsideOfLambda();
... Task.Run(async () => await theTask.ConfigureAwait(false))...

The lambda is executed on the thread pool, so CreateTheTaskInsideTheLambda() cannot catch any ambient SynchronizationContext. .ConfigureAwait(false) here changes nothing, it's not necessary.

CreateTheTaskOutsideOfLambda() on the other hand may catch SynchronizationContext on the first await inside, if that await doesn't have .ConfigureAwait(false). This may cause a deadlock.
Again .ConfigureAwait(false) in Task.Run(async () => await theTask.ConfigureAwait(false)) changes nothing.

Reasons:
  • RegEx Blacklisted phrase (0.5): Why is this
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why is this code
  • Low reputation (0.5):
Posted by: Sinus32

79761067

Date: 2025-09-10 16:18:17
Score: 6 🚩
Natty:
Report link

Did build a persistence plugin that supports asynchronous storages in IndexedDB: https://github.com/erlihs/pinia-plugin-storage

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did
  • Low reputation (1):
Posted by: erlihs

79761065

Date: 2025-09-10 16:17:16
Score: 0.5
Natty:
Report link

This turned out to be a version difference in surveyJS.

Resolution
Upgrade to the latest SurveyJS. After upgrading, the configuration below behaves correctly:

{
  "pages": [
    {
      "elements": [
        {
          "type": "text",
          "name": "m",
          "title": "Month",
          "inputType": "month",
          "isRequired": true,
          "maxValueExpression": "today()"
        }
      ]
    }
  ]
}

Why others couldn't reproduce
They were testing on newer SurveyJS versions where this issue has already been fixed.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ariel Piyale-Anisman

79761059

Date: 2025-09-10 16:10:15
Score: 3.5
Natty:
Report link

so for everyone who googles this in the future, on mac it's a little icon like a rectangle between square brackets. looks like this: [▭]

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

79761041

Date: 2025-09-10 15:59:11
Score: 2
Natty:
Report link

That's what you should do with its suggestion there, before the code having issue, just add this command there:

@kotlin.ExperimentalStdlibApi

Or you can upgrade your IntelliJ to latest version and it also solved this issue. I got same one there and both ways work for me.

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

79761035

Date: 2025-09-10 15:53:10
Score: 1
Natty:
Report link

First WildFly 14 is quite old so I'm not sure what is supported and you should definitively upgrade (as 37.0.1 is out now). https://docs.wildfly.org/wildfly-proposals/microprofile/WFLY-11529_subsystem_metrics.html shows that metrics are exposed as Prometheus data to be consumed. I'm pretty sure yo can find documentation on how to do that on the web like https://www.mastertheboss.com/jbossas/monitoring/using-elk-stack-to-collect-wildfly-jboss-eap-metrics/

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

79761033

Date: 2025-09-10 15:52:09
Score: 3
Natty:
Report link

This is still one of the first results in Google so thought I'd answer even though it is an old post.

I did a spawned filter for GeoIP of email servers a bit ago. Code is on github if anyone wants it.

https://github.com/malacusp/policyd-geoip

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Malac

79761030

Date: 2025-09-10 15:47:08
Score: 4
Natty:
Report link

Size limit, probably. Did build a persistence plugin that supports asynchronous storages in IndexedDB: https://github.com/erlihs/pinia-plugin-storage

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

79761025

Date: 2025-09-10 15:41:06
Score: 1
Natty:
Report link

I know this is super late, but hopefully this helps anyone else needing a workaround for such function. I had a similar requirement. Permit me to tale my requirement for better context and to those who have similar problem. Except that in my case it wasn't a 5th or 30th record. It's expected to be dynamic.

On a stocks market analysis project, each day has a market record, but days aren't sequential there are gaps e.g weekends, public holidays etc. Depending on user's input the program can compute or compare across a dynamic timeline e.g 5 market days = 1 week, 2W, 3W, 52W comparison etc. Calendar isn't reliable here. Since data is tied to trading days, not calendar days. In my case it became expedient to leverage row number.

E.g. if date is 2024-08-05 and row_number 53,505. I can look up 25 market days or 300 records away to compute growth etc.

Back to the Answer.

I used Django's annotate() function with a subquery that leverages PostgreSQL's window function to filter the queryset. The answer q = list(qs) above would suffice in cases where data isn't much. I wanted to avoid materializing a large queryset into a list, which would be inefficient.

PostgreSQL's ROW_NUMBER() window function. The SQL query looked something like this:

SELECT subquery.row_num FROM (SELECT id, ROW_NUMBER() OVER (ORDER BY id ASC) as row_num FROM {table_name}) subquery WHERE subquery.id = {table_name}.id

Here's how I implemented it in my Django workflow:

from django.db.models.expressions import RawSQL

class YourModel
...

@classmethod
    def get_offset_record(cls, record_id, offset):
        """
        Returns X number of market record (days) ago
        """
        table_name = cls._meta.db_table
        qs = (
            cls.objects.all()
            .annotate(
                row_number=RawSQL(
                    f"(SELECT subquery.row_num FROM (SELECT id, ROW_NUMBER() OVER (ORDER BY id ASC) as row_num FROM {table_name}) subquery WHERE subquery.id = {table_name}.id)",
                    [],
                    output_field=models.IntegerField(),
                )
            )
            .order_by("id")
        )

        try:
            current_row = qs.filter(pk=record_id).first()
            target_row_number = current_row.row_number - offset
            return qs.get(row_number=target_row_number)
        except cls.DoesNotExist:
            return None

i'm aware there's a from django.db.models.functions import RowNumber But i find the raw sql easier to use.

I hope this helps someone, Cheers!

Reasons:
  • Blacklisted phrase (1): Cheers
  • Whitelisted phrase (-1): hope this helps
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): have similar problem
Posted by: Olamigoke Philip

79761016

Date: 2025-09-10 15:33:03
Score: 2
Natty:
Report link

There is also set key opaque (see also https://superuser.com/questions/1551391 and Set custom background color for key in Gnuplot).

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Friedrich -- Слава Україні

79761012

Date: 2025-09-10 15:27:01
Score: 2.5
Natty:
Report link

Igbinake, A. O., and C. O. Aliyegbenoma. "Estimation and Optimization of Tensile Strain in Mild Steel." Journal of Applied Sciences and Environmental Management 29.5 (2025): 1554-1559.

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

79761011

Date: 2025-09-10 15:26:01
Score: 0.5
Natty:
Report link

In the request headers, we can see:

Provisional headers are shown

It means the request is cached, Chrome doesn't need to execute it because the answer is in the cache. Cookies aren't cached, so their headers are missing.

  1. Force page reload with Ctrl + Shift + R.
  2. The cookie headers should appear.
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Luc PHAN

79761010

Date: 2025-09-10 15:26:01
Score: 3.5
Natty:
Report link

I know this thread is really old, but you can create PR templates these days - however they do not (yet) support the YAML form-field version, like issues templates do. https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/creating-a-pull-request-template-for-your-repository

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

79761000

Date: 2025-09-10 15:12:57
Score: 2.5
Natty:
Report link

Open Visual Studio Installer, then open Modify, click additional project template (previous version) and .net framework project and item templates, then install them. Finally, open visual studio and enjoy!!!

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bùi Khánh Minh

79760995

Date: 2025-09-10 15:01:53
Score: 0.5
Natty:
Report link

It has been a while but I can confirm that everything works fine as long as the secret rotation is done one step at a time:

- Rotating primary secret
- Deploy Pulumi
- Rotate Secondary secret

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Ole Albers

79760992

Date: 2025-09-10 14:58:53
Score: 2
Natty:
Report link
  1. Select the row containing the column header names.

  2. Copy this row.

  3. In a blank area, right-click, and select the "Transpose" button.

    A screenshot of the Transpose option in Excel's Paste Special menu

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

79760985

Date: 2025-09-10 14:42:49
Score: 0.5
Natty:
Report link

Whenever we see this error. Follow the below steps

Step 1: Find out whether the username has added into the GitBash or not

CMD: git config --list

enter image description here

Step 2: Add the username which is similar to github. Go to Github --> Profile --> You will see your name and next something like this basha_fxd

CMD: git config --global user.name "basha_fxd"

Step 3: Run the same code Step 1. You will see that your username has added.

Step 4: Run the below code and it will take your success.

git commit -m 'Updated the Code

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ibrahim Basha Imran

79760976

Date: 2025-09-10 14:36:47
Score: 1
Natty:
Report link

I was looking at this issue since I've been using remote compute for development, and with the workspace stored in azure blob storage making storing node_modules in the workspace inefficient and slow, and sometimes bricks my remote compute. Instead, I need to have node_modules stored locally on the azure remote compute instance - but since it's outside of my workspace I can't sync the package.json with changes that are live in the repository. I found:

symlink home/azureuser/.../package.json pointing to frontend/package.json

then symlink frontend/node_modules pointing to home/azureuser/.../node_modules

Basically, symlinking in opposite directions, one (package.json) reading from the workspace which is live and synced with the repo, and the other (node_modules) then reading from the remote compute

Another solution would be to have the entire workspace on the compute, but it's not company practice

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Awesomefly

79760971

Date: 2025-09-10 14:33:46
Score: 0.5
Natty:
Report link

After spending an entire afternoon going down the Google rabbit hole, I found a post here that referenced another post that appeared to be broken but the Wayback Machine came to the rescue here. After finding what I needed, I realized a couple of SO questions came close to providing an answer indirectly (here and here) but the information wasn't presented in a way I would have picked up on at the time.

For DB2 (i Series at least) use an "x" outside the single quotes with the hex string inside them, like so:

SELECT * FROM [schema].[tablename] WHERE fieldname=x'A0B1C2D3'

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Wildcat Matt

79760954

Date: 2025-09-10 14:09:39
Score: 1.5
Natty:
Report link
import seaborn as sns
sns.set_style("darkgrid")

It looks like the plot was previously styled with Seaborn. You might try adding the block above to set it again.

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

79760950

Date: 2025-09-10 14:05:38
Score: 1
Natty:
Report link

go to your /User/your_user/

type - open .zshrc

and go to the line specified after .zshrc in the error
/Users/mellon/.zshrc:12(<-- here): parse error near `-y'

remove/fix the error and you are good to go

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

79760948

Date: 2025-09-10 14:01:37
Score: 1
Natty:
Report link

Now the matplotlibs has changed to a bit modern style that is why you are seeing difference in the plots. Although you can still use the old style of plots using this line in your code -

plt.style.use('classic') 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abdul_Basit

79760947

Date: 2025-09-10 14:01:37
Score: 0.5
Natty:
Report link

Seems that Vert.x is delegating all JSON parsing to Jackson (com.fasterxml.jackson.databind.ObjectMapper under the hood).
Using the following before creating OpenAPIContract seems to fix the issue:


import com.fasterxml.jackson.databind.DeserializationFeature;import io.vertx.core.json.jackson.DatabindCodec;

// Disable using Long for integers so small numbers become IntegerDatabindCodec.mapper().configure(DeserializationFeature.USE_LONG_FOR_INTS, false);
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: mac johnsto

79760939

Date: 2025-09-10 13:54:35
Score: 2.5
Natty:
Report link

You might want to check your dependency tree to identify the conflict, see this Stackoverflow post and this documentation as your reference.

After confirming which dependency is pulling in the older version, exclude the transitive google-api-services-storage dependency from it. Then, explicitly declare the correct version you need as a new, top-level dependency in your pom.xml or build.gradle file.

This will allow Apache Beam 2.67.0 to provide its required, compatible version as a transitive dependency, which will resolve the NoSuchMethodError because the correct version contains the getSoftDeletePolicy() method.

Reasons:
  • Blacklisted phrase (1): this document
  • Blacklisted phrase (1): Stackoverflow
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: shiro

79760938

Date: 2025-09-10 13:53:34
Score: 2
Natty:
Report link

Simply had to update my Fastfile from

xcodes(version: "16.2")

to

xcodes(version: "16.4")
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Sami

79760936

Date: 2025-09-10 13:53:34
Score: 1
Natty:
Report link

You can try a singleValueLegacyExtendedProperty for outlook to sent custom key.

create key when send

 const replyMessage = {
            comment: comment
            message: {
                singleValueExtendedProperties: [
                    {
                        "id": "String {guid} Name Property-name",
                        "value": "String"
                    }
                ],
            }
        };

example guid: 66f5a359-4659-4830-9070-00040ec6ac6e

and on the event side you can fetch with expand.

const message = await this.graphClient
                .api(`/me/messages/${messageId}`)
                .expand("singleValueExtendedProperties($filter=id eq 'String {guid} Name X-CRM-IGNORE')")
                .get();

Hey here is the resources.

https://learn.microsoft.com/en-us/graph/api/singlevaluelegacyextendedproperty-post-singlevalueextendedproperties?view=graph-rest-1.0&tabs=javascript

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

79760913

Date: 2025-09-10 13:34:28
Score: 0.5
Natty:
Report link

NAV 2009 is tricky—its “classic” version has pretty limited integration options, mostly via direct SQL access, flat file export/import, or XML ports. The “RTC”/web services layer is more robust in NAV 2015, which supports OData and SOAP web services for exposing entities like customers and contacts.

For NAV 2009, you’ll likely end up using XML ports or automating flat file exports, then building something to sync those with Salesforce (either on a schedule or triggered). Direct SQL access is possible but not recommended unless you’re careful about data consistency and NAV’s business logic.

Once you upgrade to NAV 2015, things get easier—you can publish pages or codeunits as web services and consume them directly from Salesforce or an integration middleware. You’d expose the relevant entities (contacts, accounts, etc.) and pull data using standard web service calls.

If you need to write back from Salesforce to NAV, you’ll need to set up codeunits for that purpose and expose them as web services. Authentication and permissions can be a hassle, so plan some time for that.

In short, integration is much smoother in NAV 2015, but doable in 2009 with more workarounds. If the upgrade is coming soon, it might be worth waiting unless the client needs something ASAP.

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

79760912

Date: 2025-09-10 13:33:28
Score: 1
Natty:
Report link

You are asking GraphQL to instantiate an abstract class. That is simply impossible. Change your declaration in such a way Animal is not abstract any longer.

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

79760893

Date: 2025-09-10 13:13:23
Score: 0.5
Natty:
Report link

Okay, I see what's going on here. Your column has VLOOKUP formulas dragged down, so even the "empty" ones are returning an empty string (""), and Excel treats those as non-blank cells for counting purposes. That's why SUBTOTAL(3, ...) is counting everything with a formula, including the blanks. And your SUMPRODUCT attempt is skipping them all because every cell has a formula in it. Let's fix this step by step. I'm assuming you want to count the number of cells in that column (say, J5:J2000 based on your example) that actually have a value from the VLOOKUP (not just ""), and you want to use something like SUBTOTAL to respect any filters or hidden rows you might have.First, confirm your goal: If you're trying to sum the values instead of count them, let me know because that changes things (e.g., if it's numbers, SUBTOTAL(9, ...) might already work fine since "" gets treated as 0). But based on what you described, it sounds like a count of non-blank results. If the data from VLOOKUP is always numbers, we can use a simpler trick with SUBTOTAL(2, ...), which counts only numeric cells and ignores text like "". But if it's text or mixed, we'll need a different approach. For now, I'll give you a general solution that works for any data type.Here's how to set it up without a helper column, using a formula that combines SUMPRODUCT and SUBTOTAL to count only visible cells (ignoring filters) where the value isn't "".

  1. Pick the cell where you want this subtotal to go (probably below your data range or in a summary spot).

  2. Enter this formula, adjusting the range to match yours (I'm using J5:J2000 as an example, but swap in L5:L16282 if that's your actual column):=SUMPRODUCT(--(J5:J2000<>""), SUBTOTAL(3, OFFSET(J5, ROW(J5:J2000)-ROW(J5), 0)))Press Enter (or Ctrl+Shift+Enter if you're on an older Excel version that needs array formulas—most modern ones handle it automatically).

  3. What this does in simple terms:

    • The (J5:J2000<>"") part checks each cell to see if it's not an empty string, turning matches into 1s and non-matches into 0s.

    • The SUBTOTAL(3, OFFSET(...)) part creates an array of 1s for visible rows and 0s for hidden/filtered rows.

    • SUMPRODUCT multiplies them together and adds up the results, so you only count the visible cells that aren't "".

  4. Test it out: Apply a filter to your data (like on another column) to hide some rows, and watch the subtotal update automatically—it should only count the visible non-blank ones. If you have no filters, it'll just act like a smart COUNTIF that skips the "" cells.

If this feels a bit heavy for a huge range like 16,000 rows (it might calculate slowly), here's an alternative with a helper column, which is lighter on performance:

  1. Add a new column next to your data, say column K starting at K5.

  2. In K5, put: =IF(J5<>"", 1, "")

  3. Drag that formula down to match your range (all the way to K2000 or whatever).

  4. Now, in your subtotal cell, use: =SUBTOTAL(9, K5:K2000)

  5. This sums the 1s in the helper column, which effectively counts the non-"" cells in J, and SUBTOTAL(9) ignores any filtered rows. You can hide the helper column if it clutters things up.

If your VLOOKUP is always returning numbers (not text), reply and tell me—that lets us simplify to just =SUBTOTAL(2, J5:J2000), since it counts only numeric cells and skips "" (which is text).

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

79760882

Date: 2025-09-10 12:54:18
Score: 4
Natty:
Report link

In this blog post, you can see how to automate and accelerate chunk downloads using curl with parallel threads in Python.

https://remotalks.blogspot.com/2025/07/download-large-files-in-chunks_19.html

Reasons:
  • Blacklisted phrase (1): this blog
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: guest

79760880

Date: 2025-09-10 12:54:18
Score: 1.5
Natty:
Report link
  <preference name="scheme" value="app"/>
  <preference name="hostname" value="localhost"/>

adding the code to config.xml solve my problem.

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

79760875

Date: 2025-09-10 12:48:16
Score: 3.5
Natty:
Report link

Looking at the awnser, its probaly scaling. i would put it at a feature with the libary itself, but Im not to sure since I only really use tkkbootstrap for my GUI's.

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

79760873

Date: 2025-09-10 12:45:15
Score: 0.5
Natty:
Report link
Thank you for your quick reply and your suggestions. We initially implemented logging by creating a custom directory inside wp-content, and this approach worked well on most environments. Here's the code we used:
function site_file() {
    $log_dir = WP_CONTENT_DIR . '/site-logs';

    // Create directory if it doesn't exist
    if (!file_exists($log_dir)) {
        mkdir($log_dir, 0755, true);
        file_put_contents($log_dir . '/index.php', "<?php // Silence is golden");
        file_put_contents($log_dir . '/.htaccess', "Deny from all\n");
    }

    return $log_dir . '/site.log';
}


However, due to WordPress compliance guidelines and common restrictions on shared hosting, we cannot create writable files outside the uploads folder.So we updated our implementation to fallback to wp_upload_dir() when writing to the custom directory failed. Here's a simplified version of the updated logic:
$root_dir = dirname(ABSPATH);
$log_dir = trailingslashit($root_dir) . 'site-logs';

// Fall back to uploads folder if not writable
if (!wp_mkdir_p($log_dir) || !is_writable($log_dir)) {
    $upload_dir = wp_upload_dir();
    $log_dir = trailingslashit($upload_dir['basedir']) . 'site-logs';

    if (!file_exists($log_dir)) {
        wp_mkdir_p($log_dir);
    }

    // Add basic protections
    if (!file_exists($log_dir . '/index.php')) {
        @file_put_contents($log_dir . '/index.php', "<?php\n// Silence is golden.\nexit;");
    }

    if (!file_exists($log_dir . '/.htaccess')) {
        @file_put_contents($log_dir . '/.htaccess', "Deny from all\n");
    }

    // Generate obfuscated log filename
    $unique = substr(md5(wp_salt() . get_current_blog_id()), 0, 12);
    self::$log_file = trailingslashit($log_dir) . "site-{$unique}.log";
}

This fallback ensures logging works even in restrictive hosting environments, which is important for plugin compatibility. We do not log sensitive data, and we add basic protections like .htaccess and obfuscation.
On  Nginx servers, we realize .htaccess is ignored, and the file remains publicly accessible if its path is known — which is the core issue we're trying to mitigate without server-level config access.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: softscriptsolutions

79760871

Date: 2025-09-10 12:44:15
Score: 2.5
Natty:
Report link

Memory Safety in C++ is not really possible.

Here is why: https://sappeur.di-fg.de/WhyCandCppCannotBeMemorySafe.html

The best you can do is to be very disciplined, follow KISS and use modern C++.

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

79760866

Date: 2025-09-10 12:38:14
Score: 1
Natty:
Report link

I contacted Twilio support and got the feedback, that my account is connected to region Ireland (ie1). So the Twilio Client Constructor has to look like this:

client = Client(
    account_sid=account_sid,
    username=api_key_sid,
    password=api_key_secret,
    edge="dublin",
    region="ie1",
)

So be aware of the credentials you use.

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

79760863

Date: 2025-09-10 12:35:13
Score: 1
Natty:
Report link

I have a working setup but this error sometimes(very rarely) still happens and then fixes itself. Without any changes in the infra.

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

79760860

Date: 2025-09-10 12:34:12
Score: 2.5
Natty:
Report link

I'm Gonna Teach You New Skills And Rout In Gorilla Tag So You Can Become A Proand If You Wanna Film A Video Or You Wanna Chill And Have Fun | Got You For $2.5 And The 5 is Important.

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

79760856

Date: 2025-09-10 12:32:12
Score: 9.5
Natty: 7
Report link

did you succeed? I am trying to do the same thing to migrate my on-premise domain to EntraID

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): trying to do the same
  • Blacklisted phrase (3): did you succeed
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Sebastien

79760850

Date: 2025-09-10 12:21:08
Score: 3
Natty:
Report link

The problem occurs in the minification and shrink process. It is necessary to create an exception with a progrardFile removing the ExoPlayer class.

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

79760846

Date: 2025-09-10 12:15:06
Score: 4
Natty:
Report link

(Scenario) --> In the container instance

Even though i've given like below i can't able to curl....

env:
          - name: OPTION_LIBS
            value: ignite-kubernetes,ignite-rest-http

so done below:
netstat -tulnp
and i didn't find any http 8080 in the listeners.... and configured connectorConfiguration by using the below code in config

        <property name="connectorConfiguration">
            <bean class="org.apache.ignite.configuration.ConnectorConfiguration">
                <property name="host" value="0.0.0.0"/>
                <property name="port" value="8080"/>
            </bean>
        </property>

Then i can confirm that http server is started but in the name TCP binary (I'm expecting in the HTTP).... confirmed from the logs

[11:41:19,261][INFO][main][GridTcpRestProtocol] Command protocol successfully started [name=TCP binary, host=/0.0.0.0, port=8080]

so tried to curl

wget -qO- http://127.0.0.1:8080
wget: error getting response

and in the logs i've got below warning in the logs:


[12:06:56,874][WARNING][grid-nio-worker-tcp-rest-3-#42][GridTcpRestProtocol] Client disconnected abruptly due to network connection loss or because the connection was left open on application shutdown. [cls=class o.a.i.i.util.nio.GridNioException, msg=Failed to parse incoming packet (invalid packet start) [ses=GridSelectorNioSessionImpl [worker=ByteBufferNioClientWorker [readBuf=java.nio.HeapByteBuffer[pos=0 lim=90 cap=8192], super=AbstractNioClientWorker [idx=3, bytesRcvd=0, bytesSent=0, bytesRcvd0=0, bytesSent0=0, select=true, super=GridWorker [name=grid-nio-worker-tcp-rest-3, igniteInstanceName=null, finished=false, heartbeatTs=1757506016868, hashCode=1109163085, interrupted=false, runner=grid-nio-worker-tcp-rest-3-#42]]], writeBuf=null, readBuf=null, inRecovery=null, outRecovery=null, closeSocket=true, outboundMessagesQueueSizeMetric=o.a.i.i.processors.metric.impl.LongAdderMetric@27c2862d, super=GridNioSessionImpl [locAddr=/127.0.0.1:8080, rmtAddr=/127.0.0.1:59486, createTime=1757506016868, closeTime=0, bytesSent=0, bytesRcvd=90, bytesSent0=0, bytesRcvd0=90, sndSchedTime=1757506016868, lastSndTime=1757506016868, lastRcvTime=1757506016868, readsPaused=false, filterChain=FilterChain[filters=[GridNioCodecFilter [parser=GridTcpRestParser [marsh=JdkMarshaller [clsFilter=o.a.i.marshaller.IgniteMarshallerClassFilter@fbbedd80], routerClient=false], directMode=false]], accepted=true, markedForClose=false]], b=47]]
[12:06:56,874][WARNING][grid-nio-worker-tcp-rest-3-#42][GridTcpRestProtocol] Closed client session due to exception [ses=GridSelectorNioSessionImpl [worker=ByteBufferNioClientWorker [readBuf=java.nio.HeapByteBuffer[pos=0 lim=90 cap=8192], super=AbstractNioClientWorker [idx=3, bytesRcvd=0, bytesSent=0, bytesRcvd0=0, bytesSent0=0, select=true, super=GridWorker [name=grid-nio-worker-tcp-rest-3, igniteInstanceName=null, finished=false, heartbeatTs=1757506016868, hashCode=1109163085, interrupted=false, runner=grid-nio-worker-tcp-rest-3-#42]]], writeBuf=null, readBuf=null, inRecovery=null, outRecovery=null, closeSocket=true, outboundMessagesQueueSizeMetric=o.a.i.i.processors.metric.impl.LongAdderMetric@27c2862d, super=GridNioSessionImpl [locAddr=/127.0.0.1:8080, rmtAddr=/127.0.0.1:59486, createTime=1757506016868, closeTime=1757506016868, bytesSent=0, bytesRcvd=90, bytesSent0=0, bytesRcvd0=90, sndSchedTime=1757506016868, lastSndTime=1757506016868, lastRcvTime=1757506016868, readsPaused=false, filterChain=FilterChain[filters=[GridNioCodecFilter [parser=GridTcpRestParser [marsh=JdkMarshaller [clsFilter=o.a.i.marshaller.IgniteMarshallerClassFilter@fbbedd80], routerClient=false], directMode=false]], accepted=true, markedForClose=true]], msg=Failed to parse incoming packet (invalid packet start) [ses=GridSelectorNioSessionImpl [worker=ByteBufferNioClientWorker [readBuf=java.nio.HeapByteBuffer[pos=0 lim=90 cap=8192], super=AbstractNioClientWorker [idx=3, bytesRcvd=0, bytesSent=0, bytesRcvd0=0, bytesSent0=0, select=true, super=GridWorker [name=grid-nio-worker-tcp-rest-3, igniteInstanceName=null, finished=false, heartbeatTs=1757506016868, hashCode=1109163085, interrupted=false, runner=grid-nio-worker-tcp-rest-3-#42]]], writeBuf=null, readBuf=null, inRecovery=null, outRecovery=null, closeSocket=true, outboundMessagesQueueSizeMetric=o.a.i.i.processors.metric.impl.LongAdderMetric@27c2862d, super=GridNioSessionImpl [locAddr=/127.0.0.1:8080, rmtAddr=/127.0.0.1:59486, createTime=1757506016868, closeTime=0, bytesSent=0, bytesRcvd=90, bytesSent0=0, bytesRcvd0=90, sndSchedTime=1757506016868, lastSndTime=1757506016868, lastRcvTime=1757506016868, readsPaused=false, filterChain=FilterChain[filters=[GridNioCodecFilter [parser=GridTcpRestParser [marsh=JdkMarshaller [clsFilter=o.a.i.marshaller.IgniteMarshallerClassFilter@fbbedd80], routerClient=false], directMode=false]], accepted=true, markedForClose=false]], b=47]]

can anyone please help me....

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • RegEx Blacklisted phrase (0.5): anyone please help
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Manoj

79760840

Date: 2025-09-10 12:12:05
Score: 0.5
Natty:
Report link

Determining the attribute type from Akeneo attribute value from payload dynamically is not a reliable way as values may be present or absent in payload based on data in Akeneo or its family attributes association in Akeneo.

Better you create a configuration in Magento for attribute mapping between Magento and Akeneo. This would be one time config. And update it as and when there is new attribute introduced is Akeneo.

Then update your logic using that mapping + available attributes in payload and create/update product in Magento accordingly dynamically.

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

79760835

Date: 2025-09-10 12:08:04
Score: 0.5
Natty:
Report link

Your PINN may be overfitting because the network is learning to satisfy the boundary and initial conditions without correctly enforcing the underlying differential equation across the entire domain. The high weight given to the data loss (the training points) causes the model to prioritize fitting those points perfectly, neglecting the physics-based loss.

You MAY try to use a residual-based curriculum learning approach: try yo dynamically sample more points from regions where the physics-based loss is high. The model will focus on the areas where it is failing to satisfy the governing differential equation, this may improve its generalization.

To provide a better answer, we may need more details and clarification.

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

79760833

Date: 2025-09-10 12:08:04
Score: 3
Natty:
Report link

enter image description hereenter image description hereRight click on test folder in your project, then click on " Run 'test in test' " then wait for processing and check your console by clicking on tick in the left top corner of the console.

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

79760821

Date: 2025-09-10 11:56:01
Score: 0.5
Natty:
Report link

For future readers who wanted to "connect to a wss" instead of serving one, you can use HttpClient#wss instead of HttpClient#webSocket

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ejar rill

79760811

Date: 2025-09-10 11:46:59
Score: 3.5
Natty:
Report link

It seems to have changed again, now it's in the options at the right of the screen:

enter image description here

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

79760807

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

We used a CloudFront viewer-request 301 redirect. and it works good. The only “downside” is cosmetic: the browser URL changes to the Grafana workspace hostname.

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

79760798

Date: 2025-09-10 11:31:53
Score: 12.5 🚩
Natty:
Report link

Is there any solution to this? I have the same problem.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (2): any solution to this?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is there any solution to this
  • Low reputation (1):
Posted by: user2398244

79760791

Date: 2025-09-10 11:25:52
Score: 0.5
Natty:
Report link

As already stated in the comments by @yotheguitou you have to commit to save the changes made to your SQLite since the last commit.

After you executed a DELETE statement you need to call connection.commit().

cursor.execute("DELETE FROM ticket WHERE ROWID = (SELECT MAX(ROWID) FROM ticket)")

connection.commit()

If you want to automatically commit after any executed statement, set isolation_level=None.

conn = sqlite3.connect("example.db", isolation_level=None)
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @yotheguitou
Posted by: Bending Rodriguez

79760784

Date: 2025-09-10 11:19:50
Score: 3.5
Natty:
Report link

just 1 prefix backslash

\cp <source_file> <destiation addr>

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

79760776

Date: 2025-09-10 11:14:48
Score: 4
Natty: 4
Report link

Since android API 31: Build.SOC_MODEL
https://developer.android.com/reference/android/os/Build#SOC_MODEL

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

79760775

Date: 2025-09-10 11:13:47
Score: 0.5
Natty:
Report link

I had the same issue, and my problem was that I was trying to call http://www.example.com instead of https://www.example.com, and my nginx server was trying to redirect the request from http to https, which preflight didn't like.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Fusseldieb

79760774

Date: 2025-09-10 11:13:47
Score: 2.5
Natty:
Report link

The changes during the sequence updates are double protected: by an exclusive lock of the sequence block and by the SEQ latch. It’s not possible for two sessions to update simultaneously not only the same sequence but any two sequences in the same database.

If you would update a sequence inside a transaction and the AI logging is enabled for a database then you could restore the database to the state after any transaction and you could read the last sequence value. I don’t believe you will see the duplicate values for two transactions.

BTW, what is your OpenEdge version? There were a few changes in the ways how Progress works with the sequences. The most recent one was in 12.2

Reasons:
  • Blacklisted phrase (1): what is your
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: George Potemkin

79760773

Date: 2025-09-10 11:12:47
Score: 1.5
Natty:
Report link

I have recently had an issue from an update around that time which had this [completion](https://code.visualstudio.com/docs/copilot/ai-powered-suggestions) added with a green tab:

enter image description here

For this specific problem, go to settings.json, User, then search for @tag:nextEditSuggestion and change the following setting from Editor>Inline Suggest>Edits: Allow Code Shifting from always to never.

enter image description here

How I easily accessed the menu was when the green tab came up came up, hover over it and click settings.

enter image description here

Note - to activate the changes, I had to close the file after changing the settings and re open the file.

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

79760772

Date: 2025-09-10 11:11:46
Score: 3.5
Natty:
Report link

Just copy goalseek from VBA, there's one line

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

79760771

Date: 2025-09-10 11:09:45
Score: 1
Natty:
Report link

Now we have a new tool -- mise.

curl https://mise.run | sh

mise use -g [email protected]

Also, mise support uv. If you have installed uv (for example, with mise use -g uv@latest), mise will use it to create virtual environments.

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

79760767

Date: 2025-09-10 11:06:45
Score: 1
Natty:
Report link

Tampering with the scale sets that Kubernetes creates is not supported which seems to be the case. Most likely someone has tried to install this extension directly on the scale set which resulted in failure without being able to remove it. As it has failed there is not actual installation but the extension resource is in some state that cannot be removed. That is also causing the issue when you try to apply the kubernetes configuration via Bicep. My advise would be to re-create the AKS cluster or try to replace the current system pool with another one. You can also try to contact Azure Support to see if they can force the removal of the extension but it is unclear if they will provide support for something they have explicitly said it is not supported.

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

79760762

Date: 2025-09-10 10:59:43
Score: 1.5
Natty:
Report link

DigiCert timestamp server (http://timestamp.digicert.com) uses HTTP, not HTTPS. The error you were seeing occurred because the signing tool couldn't reach the HTTP timestamp server through your proxy.

By setting HTTP_PROXY, your signing process can now properly route the HTTP requests to the timestamp server through your corporate proxy, which should resolve the error you were encountering.

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

79760761

Date: 2025-09-10 10:54:42
Score: 0.5
Natty:
Report link

The issue was that I was importing toaster in View from this way:

import { toast } from 'vue-sonner'

But actually, if I installed Sonner as a component (in /ui), I need to import it in that way:

import {
  toast
} from '@ist/ui';

and I also must insert that:

import { toast } from 'vue-sonner'

into ui/index.ts

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Giacomo Brunetta

79760755

Date: 2025-09-10 10:50:41
Score: 1
Natty:
Report link

For anyone looking at this now, as noted when you have strings ("?") mixed in with ints you can do the following in pandas.

# convert the data to int64/float64 turning anything (i.e '?') that can't be converted into nan 
df["Bare Nuclei"] = pd.to_numeric(df["Bare Nuclei"], errors="coerce")
# if you really need it as int you can then do the following, Int64 can handle NaN values so is useful in these situations
df["Bare Nuclei"] = df["Bare Nuclei"].astype("Int64")
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: gj_overflow

79760750

Date: 2025-09-10 10:41:39
Score: 1.5
Natty:
Report link

Another way to do it is

use Data::Printer {
    class => {
        expand => 'all',           # default 1
    },
};

https://metacpan.org/release/GARU/Data-Printer-0.35/view/lib/Data/Printer.pm#CUSTOMIZATION

As of now we are 12 years in the future, I'm not sure when the expand param was added, but pretty useful!

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