79791262

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

After contacting Sectigo, I had to install a CA bundle with cross-signed intermediate chain certificate AND delete the new root certificate on the server. That did the job. Thanks to all who helped.

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

79791256

Date: 2025-10-15 14:13:13
Score: 4.5
Natty: 5
Report link

Use this; Life will become Easy :)
https://tools.simonwillison.net/incomplete-json-printer

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

79791253

Date: 2025-10-15 14:08:12
Score: 0.5
Natty:
Report link

When you try convert your Map into custom POJO class , objectMapper is giving error because in your map, some of the values are json strings and object mapper will not be able to convert it directly. You may have to check for Json pattern satisfying values within your map and explicity convert them to objects before going for Map to POJO conversion.

You can try something similar to this for those map values which are json strings and then do your conversion:

newMap.put(entry.getKey(), objectMapper.readValue(mapValue, Object.class);
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Sathya Priya

79791250

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

I’ve figured out how to fix this Facebook bug.

Go to https://www.facebook.com/settings/?tab=notifications, and at the bottom of the page, make sure to check the box under Where you receive notifications -> Email -> Primary email address.

After that, retrieving the email via OAuth will work correctly.

Screenshot: https://github.com/supabase/auth/issues/1791#issuecomment-3406564184

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

79791249

Date: 2025-10-15 14:05:10
Score: 3
Natty:
Report link

Ok, resolved.
I already use a ".noinit" ram zone, to obtain different behaviours of boot-code.
I just added a new status code and modify the boot code for immediatly jump to main code.
Thank you all.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Pietro66

79791247

Date: 2025-10-15 14:04:09
Score: 7.5 🚩
Natty:
Report link

check this video https://youtu.be/-WteiPaUv-U it has clear explanation.

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Blacklisted phrase (1): check this video
  • Blacklisted phrase (1): this video
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sateesh Peetha

79791238

Date: 2025-10-15 14:00:08
Score: 0.5
Natty:
Report link
var env = await CoreWebView2Environment.CreateAsync();
var options = env.CreateCoreWebView2ControllerOptions();
options.IsInPrivateModeEnabled = true;
await WebView2.EnsureCoreWebView2Async(env, options);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: eric-v

79791236

Date: 2025-10-15 13:58:07
Score: 1.5
Natty:
Report link

I had a similar issue, but in my case it was an .editorconfig file in my root folder with the following settings

insert_final_newline = true
trim_trailing_whitespace = true
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Luis Martins

79791235

Date: 2025-10-15 13:57:07
Score: 4
Natty:
Report link

In order to fix the issue, I had to Re-Register the application in ADB2C tenant specifically with below Account Type under Authentication -

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Anurag Chugh

79791210

Date: 2025-10-15 13:20:58
Score: 0.5
Natty:
Report link

Shortly after posting, I found uncount()which addresses my issue.

data.frame(year = rep(c(1, 2), each = 5),
           site = rep(LETTERS[1:2], 5),
           n    = sample(1:25, 10, replace = TRUE)) %>% uncount(n)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: tnt

79791206

Date: 2025-10-15 13:14:56
Score: 0.5
Natty:
Report link

Peter Steinberger’s workaround no longer works on iOS 26. You can now use the native API instead:

let viewController = UIHostingController(rootView: YourSwiftUIView())
viewController.safeAreaRegions.remove(.keyboard)

Note: safeAreaRegions is available starting from iOS 16.4.

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

79791187

Date: 2025-10-15 12:56:51
Score: 4
Natty: 4.5
Report link

The only solution I've found is to install this extension: https://marketplace.visualstudio.com/items?itemName=FortuneWang.search-folder

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

79791184

Date: 2025-10-15 12:52:50
Score: 1.5
Natty:
Report link

you can try:

pixi add --pypi package_name@file:///path/to/project/folder
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: FGV

79791183

Date: 2025-10-15 12:51:50
Score: 2.5
Natty:
Report link

the issue was on the key/pair generated with ES256, and the pre-script in the postman collection set the 'alg' header as RSA256, I just changed it to ES256 and it worked.

So thus question can be marked as resolved, but I don't know how to do it.

Regards!

Reasons:
  • Blacklisted phrase (1): Regards
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Javier Sivack

79791181

Date: 2025-10-15 12:50:49
Score: 1.5
Natty:
Report link

You can mount cloud storgafge buckets on your host server and use volume mounts in the container to read and write to the cloud file system.

GCS: https://github.com/GoogleCloudPlatform/gcsfuse/

S3 compatible cloud storage systems: https://github.com/s3fs-fuse/s3fs-fuse

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Christopher Broderick

79791174

Date: 2025-10-15 12:47:48
Score: 5
Natty: 6
Report link

Refer to this article Sucuri bypass techniques

Reasons:
  • Blacklisted phrase (1): this article
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Sanushi Salgado

79791173

Date: 2025-10-15 12:46:47
Score: 3
Natty:
Report link

For the record: this bug was fixed in https://github.com/dhall-lang/dhall-haskell/issues/2467. It is not present in the 1.42.2 release. (The earlier 1.42.0 and 1.42.1 releases also shouldn't have the bug, but the binaries for these releases are missing/wrong, see https://github.com/dhall-lang/dhall-haskell/issues/2514 and https://github.com/dhall-lang/dhall-haskell/issues/2628).

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

79791171

Date: 2025-10-15 12:41:46
Score: 1
Natty:
Report link

I was connected to broken local repo (mirror).

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Michał Niklas

79791170

Date: 2025-10-15 12:39:46
Score: 1.5
Natty:
Report link

I'm not going to ask why you want to do this, but here's a quick way to crash any given computer.

import os
while True:
    os.fork()
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: andmicha

79791169

Date: 2025-10-15 12:39:46
Score: 2.5
Natty:
Report link

I managed to fix the code, although my first solution did not work in the full example. The code below seems to work however. The reason my I added the Selection.MoveDown at the end of the macro is that I wanted the selection to be below the table just to make sure that I don't create another table inside the first table. There are probably much better ways to do this, also I want to avoid creating a table while the cursor is for example within a heading.

The problem with the em dash was actually related to me using Chr(151) on the Windows system originally, instead of the ChrW(8212). The latter works on the Mac as well.

Thanks

Sub Data_Object_Description()
'
' Macro Data_Object_Description
' Create a Microsoft Word table with a CANopen compliant object description
'
'
    Dim cmbCategory As ContentControl
    Dim cmbObjectCode As ContentControl
    Dim cmbDataType As ContentControl
    Dim rng As Range
    
    ActiveDocument.Tables.Add Range:=Selection.Range, NumRows:=4, NumColumns:= _
        4, DefaultTableBehavior:=wdWord9TableBehavior, AutoFitBehavior:= _
        wdAutoFitFixed
    With Selection.Tables(1)
'        If .Style <> "Table Grid" Then
'            .Style = "Table Grid"
'        End If
        .ApplyStyleHeadingRows = True
        .ApplyStyleLastRow = False
        .ApplyStyleFirstColumn = True
        .ApplyStyleLastColumn = False
        .ApplyStyleRowBands = True
        .ApplyStyleColumnBands = False

        .Range.ParagraphFormat.KeepWithNext = True
        .Range.ParagraphFormat.KeepTogether = True
        .Range.ParagraphFormat.SpaceBefore = 3
        .Range.ParagraphFormat.SpaceAfter = 3
        .Range.Font.Name = "Arial"
        .Range.Font.Size = 8
    
        .PreferredWidthType = wdPreferredWidthPoints
        .PreferredWidth = MillimetersToPoints(160)

        .Cell(1, 1).Merge MergeTo:=.Cell(2, 1)
        .Cell(3, 1).Merge MergeTo:=.Cell(4, 1)
        .Cell(1, 1).Shading.BackgroundPatternColor = RGB(128, 128, 128)
        .Cell(1, 2).Shading.BackgroundPatternColor = RGB(128, 128, 128)
        .Cell(2, 2).Shading.BackgroundPatternColor = RGB(128, 128, 128)
        .Cell(2, 3).Shading.BackgroundPatternColor = RGB(128, 128, 128)
        .Cell(2, 4).Shading.BackgroundPatternColor = RGB(128, 128, 128)

        Selection.Move Unit:=wdColumn, Count:=-1
        Selection.SelectColumn
        Selection.Columns.PreferredWidthType = wdPreferredWidthPoints
        Selection.Columns.PreferredWidth = MillimetersToPoints(20)
        Selection.Move Unit:=wdColumn, Count:=1
        Selection.SelectColumn
        Selection.Columns.PreferredWidthType = wdPreferredWidthPoints
        Selection.Columns.PreferredWidth = MillimetersToPoints(32)
        Selection.Move Unit:=wdColumn, Count:=1
        Selection.SelectColumn
        Selection.Columns.PreferredWidthType = wdPreferredWidthPoints
        Selection.Columns.PreferredWidth = MillimetersToPoints(32)
        Selection.Move Unit:=wdColumn, Count:=1
        Selection.SelectColumn
        Selection.Columns.PreferredWidthType = wdPreferredWidthPoints
        Selection.Columns.PreferredWidth = MillimetersToPoints(76)

        .Cell(1, 1).Select
        Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter
        Selection.Font.Bold = True
        Selection.Font.TextColor = vbWhite
        Selection.TypeText Text:="Index"

        ...

        .Cell(3, 2).Merge MergeTo:=.Cell(3, 4)

        Set rng = .Cell(4, 2).Range
        Set cmbCategory = rng.ContentControls.Add(wdContentControlComboBox)
        cmbCategory.Range.Text = "Select category"
        cmbCategory.SetPlaceholderText Text:=cmbCategory.Range.Text
        With cmbCategory
            .Title = "Category"
            .Tag = "Category"
            .DropdownListEntries.Clear
            .DropdownListEntries.Add Text:="mandatory", Value:="mandatory"
            .DropdownListEntries.Add Text:="optional", Value:="optional"
            .DropdownListEntries.Add Text:="conditional", Value:="conditional"
        End With
        Set rng = Nothing

        ...

    End With
    Set rng = Selection.Tables(1).Range
    rng.InsertCaption Label:="Table", Title:=" " + ChrW(8212) + " Object description", Position:=wdCaptionPositionAbove, ExcludeLabel:=0
    ActiveDocument.Range(rng.Start + Len("Table"), rng.Start + Len("Table") + 1).Text = ChrW(160)
    Set rng = Nothing

    Selection.MoveDown Count:=3
    Selection.TypeParagraph

End Sub
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): did not work
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Martin Merkel

79791166

Date: 2025-10-15 12:28:43
Score: 3.5
Natty:
Report link

We had the same issue. Uninstalling the update helps. Hope that Microsoft will fix this soon...

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

79791158

Date: 2025-10-15 12:22:41
Score: 2.5
Natty:
Report link

I had this problem some time ago. SecureAnywhere required fixing they told me, so I think had to turn off the Realtime shield. I have version 25.4 now and I don't have the problem now.

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

79791155

Date: 2025-10-15 12:21:41
Score: 0.5
Natty:
Report link

Try adding the following to the custom css

body {
background-color: #FFFFFF;
}

Replace #FFFFFF with your desired color.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Bending Rodriguez

79791147

Date: 2025-10-15 12:12:38
Score: 2
Natty:
Report link

False sharing is a scenario in which different address locations in the same cache line is accessed by multiple cores. This can cause performance degradation due to the cache line being marked as invalid and the cores required to load the data from main memory, even without a real necessity to do so. You can read more about it here: https://vayavyalabs.com/blogs/cache-coherence-in-risc-v/

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

79791146

Date: 2025-10-15 12:11:38
Score: 2
Natty:
Report link

The issue was caused by a missing font on the new Windows server. Some reports failed to render because they used the Arial font, which wasn’t installed, while others worked fine using Times New Roman. The fix was simply to change the font in the report file to a font that exists on the server, such as Times New Roman. After updating the font and redeploying the report, it rendered successfully without any errors.

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

79791143

Date: 2025-10-15 12:11:38
Score: 2.5
Natty:
Report link

That code seems to be correct. I used these steps to recreate the project:

grails create-app com.demo.Person
grails create-domain-class Person
grails create-controller Person

Added an attribute in the Person domain class and your add-method to the controller:

package com.demo.person

class Person {
    String name
}
package com.demo.person

import grails.converters.JSON

class PersonController {

    def index() { }

    def add() {
         def person = new Person(name: params.name)
        if (person.validate() && person.save(flush: true)) {
            render([success:true, data:[id:person.id, name:person.name]] as JSON)
        } else {
            render([success:false, errors:person.errors.allErrors.collect{ it.defaultMessage }] as JSON)
        }
    }
}

Starting the app with grails run-app and then making the post with the name param in the url (here with httpie). If you're posting JSON you should use the request.JSON instead of params.

http -v POST "http://localhost:8080/com.demo.Person/person/add?name=HolyGrail"

This is the result:

HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Date: Wed, 15 Oct 2025 11:55:54 GMT
Server: Apache-Coyote/1.1
Transfer-Encoding: chunked

{
    "data": {
        "id": 1,
        "name": "HolyGrail"
    },
    "success": true
}

If you try these steps, do you get the correct result? Do you have any other setup in your project that might interfer? Compare your project files with the new project. Does grails url-mappings-report give you the expected result? You should have something like the default:


Dynamic Mappings
 |    *     | /${controller}/${action}?/${id}?(.${format)?              | Action: (default action) |
Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Johannes

79791134

Date: 2025-10-15 11:57:35
Score: 1
Natty:
Report link

Both versions compile to nearly identical bytecode, so the else isn’t what speeds things up. The small timing difference comes from how CPython handles sets internally and from random cache or branch-prediction effects at the C level, not from Python’s control flow. In short, it’s just measurement noise — not a real optimization. Use whichever version reads clearer.

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

79791132

Date: 2025-10-15 11:56:34
Score: 2.5
Natty:
Report link

To get the expected exception in the desired format, GlobalExceptionHandler can be used usually annotated with @ControllerAdvice. But for the custom exception format and the expected HttpCode to work as expected, few other configurations have to be taken into consideration. In API end point along with @RequestBody , you have to add @Valid annotation to consider the request body for validation. The POJO class against which this request object will be mapped should have the @NotNull and similar annotations on fields as required. Also, ensure pom file includes the necessary dependency to support the annotation driven validations.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @ControllerAdvice
  • User mentioned (0): @RequestBody
  • User mentioned (0): @Valid
  • User mentioned (0): @NotNull
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sathya Priya

79791109

Date: 2025-10-15 11:30:27
Score: 0.5
Natty:
Report link

You could use this media query

@media (prefers-contrast: more) or (forced-colors: active) {
  /* User has a vision issue */
}

https://developer.mozilla.org/en-US/docs/Web/CSS/@media/forced-colors
https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-contrast

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

79791106

Date: 2025-10-15 11:28:27
Score: 0.5
Natty:
Report link

If you’re facing a blank screen after scanning a QR code and returning the result using Navigator.pop, the issue is typically related to context handling or improper widget rebuilding after navigation.

When the QR code scanner screen pops, the main screen may not refresh its state correctly to display the returned data. This can happen if:


💡 How to Fix the Blank Screen Issue

Here’s the recommended approach from WebOdoctor, one of the best Flutter app development companies in India, known for solving such real-time app bugs efficiently:

// Example: Opening the QR scanner and handling result
Future<void> _scanQRCode(BuildContext context) async {
  final result = await Navigator.push(
    context,
    MaterialPageRoute(builder: (context) => QRScannerScreen()),
  );

  if (result != null && mounted) {
    setState(() {
      qrResult = result;
    });
  }
}

Key Points to Remember:

  1. ✅ Always use await Navigator.push() so the parent waits for the result.

  2. ✅ Call setState() after receiving the result to rebuild your UI.

  3. 🚫 Avoid using a stale BuildContext after the widget has been disposed.

  4. 🔁 If using camera or scanning plugins like mobile_scanner or qr_code_scanner, ensure you dispose controllers properly in the scanner screen’s dispose() method:

    @override
    void dispose() {
      controller?.dispose();
      super.dispose();
    }
    
    

🚀 Why Choose WebOdoctor for Flutter App Development

At WebOdoctor, our expert Flutter app developers specialize in building smooth, bug-free applications with advanced integrations like QR code scanning, AI-based automation, and real-time navigation handling.
We ensure your app not only performs flawlessly but also provides a seamless user experience.

💬 Get in touch with WebOdoctor – India’s best Flutter app development agency – to solve your app challenges and build future-ready mobile solutions.

📞 Visit: www.webodoctor.com

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

79791101

Date: 2025-10-15 11:23:25
Score: 1
Natty:
Report link

Probably someone still need it, so I'll try to answer.

I used triangular barycentric approach for image interpolation, and, as I hoped, it's quite nice. All the math is simplified by the fact that pixels may be considered square and one unit in size, I guess this match you problem description. The main point is dividing square onto triangles by either / or \ diagonal depending on local contrast. Probably that's what you need to avoid artifacts you mentined.

It's rather big (full of comments) so I'll put it on gist: Barycentric image interpolation.

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

79791093

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

I encountered the same issue before, where jsonDecode() was throwing a FormatException because the string I passed wasn't valid json. After validating it using json Formatter & Validator, https://jsonformatter.curiousconcept.com/#, I realized the structure was malformed (missing quotes or braces). Once I corrected the format, the error was resolved.

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

79791091

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

There is a change in the exception behavior that you receive from Spring version 3.4.7. If a @RequestBody is annotated as @Valid and the request object passed to it is null, the object will be created but all the fields within it will be null. If the POJO class to which this request object is mapped has @NotNull annotation in the fields, then that will result in 500 Internal server error due to ConstraintViolationException.

We can configure a GlobalExceptionHandler to throw Http Status Code 400 for any kind of Bad Request. GlobalExceptionHandler is generally annotated with @ControllerAdvice and will have a method annotated with @ExceptionHandler with the Exception class tagged with it.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @RequestBody
  • User mentioned (0): @Valid
  • User mentioned (0): @NotNull
  • User mentioned (0): @ControllerAdvice
  • User mentioned (0): @ExceptionHandler
  • Low reputation (1):
Posted by: Sathya Priya

79791084

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

Sleep between each line:


while IFS='' read -r line; do
    echo "$line"
    sleep 5
done < data.txt | ./main.sh
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Verpous

79791082

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

Click on Spaces: or Tab Size: in the lower right corner, select Indent Using Spaces or Indent Using Tabs and set the tab size.

enter image description here

enter image description here

Result:

enter image description here

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

79791080

Date: 2025-10-15 11:01:19
Score: 2
Natty:
Report link

On Linux to create services commands

nohup /usr/bin/java -jar my.jar > /dev/null &
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Phearun Um

79791077

Date: 2025-10-15 10:54:17
Score: 10.5 🚩
Natty: 5.5
Report link

How did you manage to solve it, I'm facing the same error now!

Reasons:
  • RegEx Blacklisted phrase (3): did you manage to solve it
  • RegEx Blacklisted phrase (1): I'm facing the same error
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same error
  • Single line (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: xdpsd

79791076

Date: 2025-10-15 10:52:16
Score: 2.5
Natty:
Report link

The following link explains the reason for cross-validation (note it is not a hyperparameter tunning)

Cross-validation in LightGBM

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

79791071

Date: 2025-10-15 10:48:15
Score: 0.5
Natty:
Report link

For traits we can use

UITraitCollection *realTraits = [super traitCollection];
    if (@available(iOS 26.0, *) ){
        shouldOverride = (self.viewControllers.count > 5);
    } else {
        shouldOverride = (self.viewControllers.count == 6);
    }

Where tabbar's are created we can use below code. This resolved my issue

 if (@available(iOS 26.0, *) ){
        [self updateTraitsIfNeeded];
 } 
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Suraj SS

79791064

Date: 2025-10-15 10:43:13
Score: 3.5
Natty:
Report link

Ah it allows you on the top rhs to open the original symbol and edit that.

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

79791062

Date: 2025-10-15 10:40:12
Score: 1
Natty:
Report link

I recently found this type of need & I got Best Solutions as below for ?ver="1.0.0" etc which will remove version from every css & script.

This may be helpfull in your coding journey.

function theme_remove_script_version( $src ) {
    if ( strpos( $src, 'ver=' ) ) {
        $src = remove_query_arg( 'ver', $src );
    }
    return $src;
}
add_filter( 'script_loader_src', 'theme_remove_script_version', 15, 1 );
add_filter( 'style_loader_src', 'theme_remove_script_version', 15, 1 );
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ravina Madhani

79791055

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

We can reproduce your DOMAIN ERROR.

You are on the right track by mentioning ⎕DL.

We have looked at your code and suggest a ⎕DL 0.1 after the ⎕EX 'F.C' in ChangeClipboard.

I think that this gives a chance for Windows messages to come through and be processed. I have tested and it fixes the DOMAIN ERROR.

Regards,

Vince

Dyalog Support

Reasons:
  • Blacklisted phrase (1): Regards
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Dyalog Limited

79791053

Date: 2025-10-15 10:33:10
Score: 0.5
Natty:
Report link

You could also ask the row order to be reversed in the legend.

barchart(N ~ type,
         groups = form,
         stack = TRUE,
         par.settings = simpleTheme(col = colvec),
         auto.key = list(space = "right", reverse.rows = TRUE)
         )
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Deepayan Sarkar

79791048

Date: 2025-10-15 10:30:10
Score: 3.5
Natty:
Report link

You are not allowed to proxy the method with annotation @PostConstruct, that is the reason why the aspect will not be executed. You can remove the code from @PostContruct and use it in a separate method to avoid the issue.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @PostConstruct
  • User mentioned (0): @PostContruct
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sathya Priya

79791026

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

Github released rulesets which now allow, for given branches, specific allowed merge methods

enter image description here

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

79791012

Date: 2025-10-15 09:48:59
Score: 4
Natty: 5
Report link

I had this issue with a payroll system displaying REP-0606 error. After resizing the image to below 8KB it finally worked. Thanks for the insights!

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

79791005

Date: 2025-10-15 09:40:56
Score: 2.5
Natty:
Report link

You can set the application to run at server.port=5000

You need to allow traffic from the security group of your beanstalk environment into your database's security group.

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

79791001

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

For me adding a @config '../tailwind.config.ts' line to globals.css works
(current package.json: next: 15.5.3, react: 19.1.0, tailwindcss: 4.1.14, postcss: 8.5.6)

my app/globals.css now:

@import 'tailwindcss';

@config '../tailwind.config.ts';

@theme {
  --color-primary: #000;
}

tailwind.config.ts:

import type { Config } from 'tailwindcss';

const config: Config = {
  content: ['./app/**/*.{js,ts,jsx,tsx,mdx}', './components/**/*.{js,ts,jsx,tsx,mdx}'],
  theme: {
    //rest default tailwind colors
    colors: {},
  },
  plugins: [],
};
export default config;

postcss.config.mjs:

const config = {
  plugins: {
    '@tailwindcss/postcss': {},
  },
};

export default config;

app/layout.tsx:

...
import '@/app/globals.css';
...
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @config
  • Low reputation (1):
Posted by: saldatkin

79790989

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

I solved the problem of running the project using "npx yarn react native run android" after building it;

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ha_ha_ha_ha

79790976

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

Is your JSON string properly formatted? Check for missing quotes around keys or missing braces. If it isn't properly formatted, then json.decode(s) will throw a FormatException

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

79790967

Date: 2025-10-15 08:56:44
Score: 1.5
Natty:
Report link

Super late reply here, but putting this here in case someone needs it later:

The second test is not using the Http header "Accept" with value "application/json"

The first test is using postJson and getJson which adds this header automatically. Therefore you are not receiving json for your get, and seem to be redirected to a login-form.

Assuming this is Laravel + Passport & phpUnit heh.

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

79790961

Date: 2025-10-15 08:51:43
Score: 4
Natty:
Report link

From Spring 4.3 version, dependency will be considered automatically without adding @Autowired. But @Autowired is mandatory if multiple constructors are used.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Autowired
  • User mentioned (0): @Autowired
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sathya Priya

79790956

Date: 2025-10-15 08:48:42
Score: 1
Natty:
Report link

If you’re using an older version (e.g., 1.0.x):

CRYPTO_set_locking_callback(lock_function);
CRYPTO_set_id_callback(id_function);

Ensure each thread allocates and initializes its own SHA context:

SHA_CTX ctx;
SHA1_Init(&ctx);
SHA1_Update(&ctx, data, len);
SHA1_Final(hash, &ctx);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: star

79790953

Date: 2025-10-15 08:45:41
Score: 2
Natty:
Report link

After searching in Oracle documentation:

If your password contains the "@" character, then the password must be enclosed in double quotes, and the quotes must be escaped using backslash (\).

sqlplus USER/\"P@123\"@TNS_ENTRY

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

79790947

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

So in App.Razor I needed to add renderMode

<Routes @rendermode="InteractiveServer" />

The component now shows as expected.

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

79790943

Date: 2025-10-15 08:39:39
Score: 1.5
Natty:
Report link

The Dapper doesn't support Positional record syntax.
For more details, you can see this answer A parameterless default constructor or one matching signature is required

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

79790938

Date: 2025-10-15 08:30:37
Score: 1
Natty:
Report link

Try This

Two ways:-

a) Comma-separated

npx tsc --init --types node,express,jest

"types": ["node", "express", "jest"]

b) Quoted comma-separated

npx tsc --init --types "node,express,jest"

Reasons:
  • Whitelisted phrase (-1): Try This
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Krishan Salgotra

79790935

Date: 2025-10-15 08:26:36
Score: 1.5
Natty:
Report link

The issue was that AsyncImagePainterState only loads when the image is present on screen. My component had two separate modifiers, one for the whole group (loader and image), one just for the image. If the image Modifier is not defined, the image has no dimension, is not considered present, and Coil does not attempts to load it.

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

79790930

Date: 2025-10-15 08:18:33
Score: 1.5
Natty:
Report link

You have to properly set the "authority" value in your application's settings.

Authority should be in this format:

https://techmindfactoryforcustomers.ciamlogin.com/eb79875d-bf91-4654-9af1-62aa93e6554e/v2.0/

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

79790929

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

add this config

  "topic.creation.enable": "true",
  "topic.creation.default.replication.factor": "1",
  "topic.creation.default.partitions": "1"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: seunggabi

79790914

Date: 2025-10-15 08:01:29
Score: 1
Natty:
Report link

I've modified my code to the following:

var sel = app.activeDocument.selection;
for (var i = 0; i < sel.length; i++) {
    if (sel[i].typename === "TextFrame") {
        sel[i].textRange.characterAttributes.textFont = textFonts.getByName("ArialMT");
    }
}

Which outputs an alert:

Error 21: undefined is not object.
Line:16
-> if(sel[i].typename==="TextFrame"){

I select the text

My edition is 28.1 (64bit).

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

79790913

Date: 2025-10-15 07:59:28
Score: 1
Natty:
Report link

.over for pandas is implemented via groupby operation, in which we only support elementary expressions (as we want to avoid running .groupby(...).apply(...) for the user).

One workaround is to split it into two chained over statements:

(
    pd_df
    .with_columns(x = nw.col('x').cum_sum().over('group'))
    .with_columns(x = nw.col('x').shift(1).over('group'))
)

I am not sure we will be able to support complex expressions.


linking because the tag doesn't exist on stackoverflow yet

Fun fact: SO doesn't let me create a narwhals tag as there is a narwhal one and they are too similar. Should I create python-narwhals?

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

79790911

Date: 2025-10-15 07:58:28
Score: 0.5
Natty:
Report link

Resolved. This is a known issue when your Flutter or Xcode project lives inside an iCloud-synced directory (like Desktop or Documents).
macOS offloads files that aren’t frequently used, leaving “cloud placeholders” instead of actual files.

How to fix this

Create a directory that’s not part of iCloud sync, for example:

mkdir ~/Development
mv ~/Desktop/my_flutter_app ~/Development/
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Daniel Xav De Oliveira

79790907

Date: 2025-10-15 07:55:27
Score: 1.5
Natty:
Report link

Or by using saschiwy/HeicConverter:

for %%f in (*.heic) do heicconverter --skip-prompt --files "%%f"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Amadeus

79790902

Date: 2025-10-15 07:49:26
Score: 1.5
Natty:
Report link

I was unable to reproduce the issue, as running your example on Presidio's demo site detected all the names you've mentioned (Karthik, Priya Sharma, Rajesh Gupta) on most of the NER models.

Maybe you are running on a different spacy model or different spacy version?

I would also recommend trying to replace spacy with transformers before training a custom model, see the documentation site for full explanations and samples.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Sharon Hart

79790899

Date: 2025-10-15 07:44:25
Score: 2.5
Natty:
Report link

In Excel window:

Click File -> Options -> Add-in -> Go

Then:

Right click on the xlam file -> Properties -> check Unblock -> Apply -> Ok

Check the xlam file

Restart file excel

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

79790892

Date: 2025-10-15 07:33:22
Score: 1
Natty:
Report link

Hi,it looks you are testing with creating a new issue from APS Viewer with the cut planes are applied. Could you try with the code below? I believe you are using pushpinExtension. e.value.data is what comes from the event: pushpin.created of pushpinExtension. With this newIssue, use its position and viewState etc when calling POST Issues API.

 const newIssue = _this.pushPinExtension.getLegacyPushPinData
                      ? _this.pushPinExtension.getLegacyPushPinData(e.value)
                      : e.value.data;  

If this is not helpful and your scenario / code is different, please share the details on how you reproduced the problem.

Reasons:
  • RegEx Blacklisted phrase (2.5): please share
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Xiaodong Liang

79790890

Date: 2025-10-15 07:30:21
Score: 3
Natty:
Report link

I can use iOS 26 device for debugging after changing the flutter stable version to the master version, for complete details you can check here : https://github.com/flutter/flutter/issues/163984

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

79790886

Date: 2025-10-15 07:23:19
Score: 1
Natty:
Report link

I feel the simplest way is to check the value.

bool_value = "false"
convert_to_bool = True if bool_value.lower() == 'true' else False
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sam

79790881

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

你的问题看起来是一个刚接触训练的人会有的困惑。

使用EOS充当PAD会导致模型不会预测EOS本身就是一个错误的观测。首先,PAD token具体是什么没有意义,因为在正确的设置里,他不会被注意力观测(通过MASK屏蔽),不会被学习,PAD位置的标签应当被设置成-100(torch的默认屏壁值),因此即使EOS被充当PAD,也不会影响EOS本身的行为。

让我简单举一个例子,

Hello [EOS] [PAD] 假设有这样一句话,他需要被补齐一个token,而EOS是你选择的PAD,那么这句话看上去会是Hello [EOS] [EOS],第一个EOS是会作为hello的label被正常要求学习的。

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: How Range

79790880

Date: 2025-10-15 07:15:16
Score: 0.5
Natty:
Report link

Currently, Snowflake does not have a built-in feature that provides a straightforward, Databricks-like event history for Inference Service ingress URLs. The available service logs may contain some relevant information, but extracting access history details (such as user identity and timestamps for ingress URL access) is not directly supported or well-documented.

But instead, there are other General Logging and Auditing in Snowflake as below:

Account Usage Views, Access History, Event Tables

Account Usage Views: Snowflake offers a set of ACCOUNT_USAGE and INFORMATION_SCHEMA views that allow administrators to track query history, login attempts, user activity, and changes to objects. These are useful for monitoring SQL-based interactions and general platform usage.

Access History: The ACCESS_HISTORY view provides information about which users accessed which data, when, and how. This is primarily focused on data access within Snowflake tables and objects, not external service endpoints.

Event Tables: Snowflake supports event tables for capturing certain types of activity, but these are generally focused on data changes and task executions.

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

79790879

Date: 2025-10-15 07:14:16
Score: 0.5
Natty:
Report link

In the latest Keycloak release 26.4.0 the first milestone for the new workflows feature was introduced.

Workflows in Keycloak are aiming to automate administrative tasks as described in this blog post: https://www.keycloak.org/2025/10/workflows-experimental-26-4.

In the near future, with Keycloak 27, workflows will allow bulk edits on users (like setting required actions) and more.

Reasons:
  • Blacklisted phrase (1): this blog
  • Has code block (-0.5):
Posted by: aemaem

79790878

Date: 2025-10-15 07:13:16
Score: 0.5
Natty:
Report link

I have added this to .profile and it worked!

export PATH:$PATH:/Applications/Postgres.app/Contents/Versions/latest/bin

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

79790877

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

Does anyone know if I can nest the schedule inside an object like so:

{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  {
   "description": "Schedule to run daily at night",
   "schedule": ["* 20-23,0-6 * * *"]
  }
  "timezone": "Europe/London",
  ...
}

Because I saw in the documentation they use:

{
  "description": "Schedule daily before 4 AM",
  "schedule": ["* 0-3 * * *"]
}

but it's probably referring to the top level config braces...

Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Daniel Sergeievich Karamazov

79790874

Date: 2025-10-15 07:11:15
Score: 1
Natty:
Report link

We faced the same problem as we realized that the Upload control for Domino 12.0.2 still would only upload on file.

On OpenNTF there's a project YouAtNotes HTML5 Multi File Upload control that showed us a way to solve our problem. In short: as the Upload control renders as standard HTML <input type="file"> the OpenNTF solution uses a hidden upload control and some JavaScript code to iterate through all files and do a XHR post request for each of these files.

Probably the OpenNTF project can guide you to a solution, too.

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

79790868

Date: 2025-10-15 07:01:12
Score: 1
Natty:
Report link

I had exactly the same problem. Please check here. In short, I think that the core of this problem was with either Jupyter extension for VSCode or version 7.0.0 of ipykernel. Those two have been recently updated. Right now I work on Jupyter extension 2025.9.1 and ipykernel 7.0.1 and haven't noticed any problems.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Soren V. Raben

79790867

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

replacing

echo $x

with

printf "%q" "$x"

to escape non-printable characters with the POSIX $'' syntax

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

79790864

Date: 2025-10-15 06:56:11
Score: 2
Natty:
Report link

I think its more of performance issue. When we are building a React application we have to keep this thing in mind that the more code gets large there are chances of performance getting poor. I think you should probably check your app performance and optimize it. There are couple of ways you can optimize the app performance. I can refer to this article which you can study: https://www.freecodecamp.org/news/react-performance-optimization-techniques/

Also if you want to take chance deploy the app on another platform like AWS. If it works fine there then GCP has something to do with it.

Reasons:
  • Blacklisted phrase (1): this article
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ayan Upadhaya

79790863

Date: 2025-10-15 06:54:10
Score: 1.5
Natty:
Report link

To save a trained machine learning model as a zip file, frameworks like ML.NET and TensorFlow Keras offer built-in methods to save models into compressed files containing architecture and learned weights. This approach allows easy later loading or deployment. In Python, models can be serialized using pickle or joblib, then compressed as zip files for transport and reuse. Proper model saving is essential for efficient deployment in machine learning workflows.

An OMS software (Order Management System software) is a crucial digital solution used by businesses in India, including AI order management software in Chandigarh, India, to automate and manage the entire lifecycle of customer orders. It integrates inventory management, order tracking, fulfillment automation, and customer communication to ensure efficient operations and improve order accuracy. OMS software in india streamlines multi-channel sales, provides real-time inventory visibility, and supports performance monitoring, helping businesses meet customer demands effectively without promotional language.

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

79790862

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

In the android/gradle.properties file changed newArchEnabled=true to newArchEnabled=false

This works for me

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Harsha Pamnani

79790857

Date: 2025-10-15 06:41:07
Score: 2
Natty:
Report link

You probably should take a look at lazy loading your routes. Since your index.js is so big, i guess you are not doing any lazy loading of routes and thus end up with 1 giant bundle. Lazy loading routes is dependent on the router you are using, but for react-router i would take a look at https://reactrouter.com/6.30.1/route/lazy#lazy

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Kenneth Van den Berghe

79790855

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

maybe you can use a professional Shopify Theme Detector to detect and recognize the active theme.

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user5177

79790854

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

Customizing or injecting new notifications from outside Fusion is not straightforward.

Creating completely custom bell notifications typically requires development using Oracle Fusion Application Composer or using Notification Message Framework APIs if available.

OIC can integrate with Fusion apps using REST APIs or SOAP services.

However, there is no direct public API to send custom bell notifications into Fusion’s notification bell system.

You can trigger business processes or workflows inside Fusion via OIC that, as a side effect, generate notifications.

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

79790848

Date: 2025-10-15 06:24:04
Score: 2.5
Natty:
Report link

The dialog shown in the above image is called a targeted in-meeting notification. It requires the bot to be present in the meeting. The bot captures all participants’ meeting IDs and sends the notification once the organizer triggers it from your app.

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

79790840

Date: 2025-10-15 06:13:01
Score: 2.5
Natty:
Report link

The CAT S62 Pro is not supported by ARCore, so AR features would not work. Using professional AR Development Services, you can implement alternative AR SDKs like Vuforia or OpenXR to make AR work on unsupported devices

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

79790838

Date: 2025-10-15 06:08:59
Score: 4
Natty:
Report link

after uninstalling some latests updates iis working again

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

79790837

Date: 2025-10-15 06:08:59
Score: 5.5
Natty:
Report link

I'm having the same problem with my clients, and I have to uninstall the security update KB5066835 I'm having the same problem with my clients, and I have to uninstall the security update KB5066835 to make it work.

If someone has a better solution, it would be better.

Reasons:
  • Blacklisted phrase (1): I'm having the same problem
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Low reputation (1):
Posted by: Tatarry

79790836

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

You should build framework in code part of the IDE.It should be located on at the bottom

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

79790834

Date: 2025-10-15 05:58:56
Score: 1.5
Natty:
Report link
fun composer( a: () -> Int, b: () -> Int) -> Int {
    return a() + b()
}



val first: (Int, Int) -> Int = { a, b -> a + b }
val second: (Int, Int) -> Int = { a, b -> a - b }

var x = composer( { first(1,2)}, {second(3,4)})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Guest

79790825

Date: 2025-10-15 05:41:53
Score: 2.5
Natty:
Report link

I have tried to use these commands

  1. Version my python script for each change and push to S3 with new version

    aws s3 cp aws_glue_script_v1.0.3_1.py s3://mytestcicdglue/glue-scripts/aws_glue_script_v1.0.3_1.py

  2. I have skeleton json of glue job downloaded and i keep changing the s3 location to apply changes for the glule job

    aws glue update-job --job-name glue-cicd-test --job-update file://glue_job_updated_sample.json

Issue with this approach : With this implementation i see is once a new file is pushed automatically glue is updating the script that is currently there which is old code. Is there any other solution or approach to update glue job script only while retaining all the other properties of data sources ?

Sample : glue_job_updated_sample.json

{
  "JobMode": "VISUAL",
  "JobRunQueuingEnabled": false,
  "Description": "",
  "Role": "arn:aws:iam::xxxxx:role/Glue-cicd-test-role",
  "ExecutionProperty": {
    "MaxConcurrentRuns": 1
  },
  "Command": {
    "Name": "gluestreaming",
  // Below file name needs to be changed 
    "ScriptLocation": "s3://mytestcicdglue/glue-scripts/aws_glue_script_v1.0.3_1.py",
    "PythonVersion": "3"
  },
  "DefaultArguments": {
    "--enable-metrics": "true",
    "--enable-spark-ui": "true",
    "--extra-py-files": "s3://aws-glue-studio-transforms-xxxxx-prod-ap-southeast-1/misc/openpyxl.zip,s3://aws-glue-studio-transforms-xxxxxx-prod-ap-southeast-1/misc/et_xmlfile.zip",
    "--spark-event-logs-path": "s3://aws-glue-assets-xxxxx-ap-southeast-1/sparkHistoryLogs/",
    "--enable-job-insights": "true",
    "--enable-observability-metrics": "false",
    "--enable-glue-datacatalog": "true",
    "--job-bookmark-option": "job-bookmark-disable",
    "--job-language": "python",
    "--TempDir": "s3://aws-glue-assets-xxxxx-ap-southeast-1/temporary/"
  },
  "MaxRetries": 0,
  "Timeout": 480,
  "WorkerType": "G.1X",
  "NumberOfWorkers": 10,
  "GlueVersion": "5.0",
  "CodeGenConfigurationNodes": {
    "node-1759912958741": {
      "CatalogKafkaSource": {
        "Name": "Apache Kafka",
        "WindowSize": 100,
        "DetectSchema": true,
        "Table": "glue-cicd-test",
        "Database": "testdb",
        "StreamingOptions": {
          "StartingOffsets": "earliest"
        }
      }
    },
    "node-1759909124967": {
      "S3ExcelSource": {
        "Name": "Amazon S3",
        "Paths": [
          "s3://xxxxx/access-list_v1.1.xlsx"
        ],
        "Exclusions": [],
        "Recurse": true,
        "AdditionalOptions": {
          "EnableSamplePath": false,
          "SamplePath": "s3://xxxx/access-list_v1.1.xlsx"
        },
        "OutputSchemas": [
          {
            "Columns": []
          }
        ]
      }
    }
  },
  "ExecutionClass": "STANDARD"
}
Reasons:
  • Blacklisted phrase (1): Is there any
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: aparnagottumukkala

79790824

Date: 2025-10-15 05:41:53
Score: 1.5
Natty:
Report link
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Arash

79790822

Date: 2025-10-15 05:29:50
Score: 1
Natty:
Report link
Execution failed for task ':app:kspDebugKotlin'.
> Inconsistent JVM-target compatibility detected for tasks 'compileDebugJavaWithJavac' (1.8) and 'kspDebugKotlin' (11).

* Try:
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
> Get more help at https://help.gradle.org.

* Exception is:
org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':app:kspDebugKotlin'.

there is something you missing in lib versing or hilt module annotation check this for
Error:Execution failed for task ':app:kaptDebugKotlin'
Hilt: https://developer.android.com/training/dependency-injection/hilt-android[Hilt](https://developer.android.com/training/dependency-injection/hilt-android)
kapt to ksp: https://developer.android.com/build/migrate-to-ksp

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

79790815

Date: 2025-10-15 05:10:45
Score: 1
Natty:
Report link

My code:

import math
import os
import random
import re
import sys


def even_or_odd(n):
    r=n%2
    if r==0:
      return False
    else:
      return True
    
n=int(input(""))
type= even_or_odd(n)
if (type) or (6<=n<=20):
    print("Weird")
else:
    print("Not Weird")

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

79790806

Date: 2025-10-15 04:50:40
Score: 2.5
Natty:
Report link

And if you want to search for a word that starts with a letter this works:

This will find any columns that have a word starting with the letter m, case insensitive.

Where <column name> REGEXP '\\bm.*\\b'

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

79790798

Date: 2025-10-15 04:27:36
Score: 0.5
Natty:
Report link

When you open talend using big data integration, dont use thte usual "standard" design. but use the big data batch version. then there is component like telasticsearchinput, telasticoutput and telasiticsearchconfiguration. then you can input the connection, and in input n output you can use "use an existing configuration". pardon my english
this is the example component
big data batch design

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • No code block (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Clean Sepokat

79790790

Date: 2025-10-15 04:07:31
Score: 1
Natty:
Report link

No, the Google Analytics Data API v1 does not directly provide a method for retrieving pre-built Path Exploration reports. The API is designed to return tabular data based on dimensions and metrics you specify, not the complex, visual graph-like structure of a Path Exploration report.

There has been a feature request submitted to Google to add this capability, but it is not currently implemented.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Chowdhury Tafsir Ahmed Siddiki

79790775

Date: 2025-10-15 03:14:20
Score: 3.5
Natty:
Report link

This issue was fixed in go 1.24
https://tip.golang.org/doc/go1.24#linker
It seems that there has been a change in the behavior of macOS
https://developer.apple.com/documentation/technotes/tn3178-checking-for-and-resolving-build-uuid-problems

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

79790770

Date: 2025-10-15 03:08:19
Score: 5
Natty:
Report link

My app is experiencing the same issue — the watchdog stack trace is almost identical to the one you provided. Are you able to reproduce this situation consistently?

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

79790751

Date: 2025-10-15 02:29:10
Score: 1.5
Natty:
Report link

Now you can. External print operations are added from v25.x onwards. You need to trigger the print functions at once.

Check out the sample app where this is in action - https://angular-pdf-viewer-demo.vercel.app/

PS: I am the author of ng2-pdfjs-viewer

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Aneesh Gopalakrishnan

79790748

Date: 2025-10-15 02:26:09
Score: 2
Natty:
Report link

Try the latest version 25.0.11. Most phone viewing issues are addressed.

PS: I am the author of the library in question here.

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