79667420

Date: 2025-06-16 10:27:03
Score: 1.5
Natty:
Report link

I cannot find a way to add this additional connection property to the Oracle linked service?

In Oracle linked service version 1.0, custom connection properties like workaround=536870912 could be passed directly through the connection string but in version 2.0, it doesn't allow to pass through connection string. Try by adding the workaround parameter by manually editing the linked service JSON.

Try with the below steps to connect the connection property to the Oracle linked service:

Refer to this article for more information on Create a linked service to Oracle using UI.

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (1.5): I cannot find
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Balaji

79667414

Date: 2025-06-16 10:20:01
Score: 2
Natty:
Report link

Figured it out:

InAppWebView has a constructor param

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

79667406

Date: 2025-06-16 10:16:00
Score: 1.5
Natty:
Report link

Encoded in Binary Code is:

01010100 01101000 01100101 01101010 01100101 01100100 01101001 01100011 01101111 01110101 01101110 01110011 01100101 01101100 01110100 01101111 01110111 01101000 01101111 01101101 01110100 01101000 01101001 01110011 01101111 01100001 01110100 01101000 01101001 01110011 01101011 01100101 01110000 01110100 01110100 01101111 01101101 01111001 01110101 01110100 01101101 01101111 01110011 01110100 01100010 01100101 01101100 01101111 01101110 01100111 01110011 01110100 01101000 01100101 01101010 01110101 01110011 01110100 01101001 01100011 01100101 01101111 01100110 01110100 01101000 01100101 01101010 01100101 01100100 01101001 01110100 01101111 01110010 01100101 01110011 01110000 01100101 01100011 01110100 01110100 01101000 01100101 01110100 01110010 01100001 01101110 01100100 01101001 01110100 01101001 01101111 01101110 01110011 01101111 01100110 01110100 01101000 01100101 01101010 01100101 01100100 01101001 01110100 01101111 01110111 01101111 01110010 01101011 01110111 01101001 01110100 01101000 01101101 01111001 01101010 01100101 01100100 01101001 01110000 01100001 01110010 01110100 01101110 01100101 01110010 01110011 01100001 01110011 01110100 01101000 01100101 01100100 01100001 01110010 01101011 01110011 01101001 01100100 01100101 01101001 01110011 01110111 01101001 01110100 01101000 01101101 01100101

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

79667404

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

Exactly the same problem as you, except that when I run this project at home, even the first load is ultra fast. On the other hand, at work, the first load is catastrophic: 3 minutes waiting time for the vendor.scss file.

I'd advise you to drop the package.json tracks or reduce the number of vendors - that's not the problem.

For example, it takes 30 to localhost:8080 to render a 200kb jpg...

Once the first launch is completed, all subsequent launches run smoothly.

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

79667394

Date: 2025-06-16 10:01:56
Score: 4
Natty: 4
Report link

i think the config file setup handles video record as per the playwright documentation

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

79667380

Date: 2025-06-16 09:52:53
Score: 1.5
Natty:
Report link

Good question. You showed one approach. Here's another approach to show the same thing you wanted. The main difference is that there is more configurability using my barebones approach rather than using a simplifying framework like in your approach.

runtime screenshot

from datetime import datetime
import matplotlib.pyplot as plt
import numpy as np
import math
"""
https://stackoverflow.com/questions/79554216/year-comparison
"""

def is_prefix_of_any(substring, string_list):
    return any(item.startswith(substring) for item in string_list)

def nearest_neighbor(input_number, number_list):
    nearest = min(number_list, key=lambda x: abs(x - input_number))
    return nearest

def rgb2hex(r,g,b):
    hex = "#{:02x}{:02x}{:02x}".format(r,g,b)
    return hex

def compass_to_rgb(h, s=1, v=1):
    h = float(h)
    s = float(s)
    v = float(v)
    h60 = h / 60.0
    h60f = math.floor(h60)
    hi = int(h60f) % 6
    f = h60 - h60f
    p = v * (1 - s)
    q = v * (1 - f * s)
    t = v * (1 - (1 - f) * s)
    r, g, b = 0, 0, 0
    if hi == 0: r, g, b = v, t, p
    elif hi == 1: r, g, b = q, v, p
    elif hi == 2: r, g, b = p, v, t
    elif hi == 3: r, g, b = p, q, v
    elif hi == 4: r, g, b = t, p, v
    elif hi == 5: r, g, b = v, p, q
    r, g, b = int(r * 255), int(g * 255), int(b * 255)
    return rgb2hex(r, g, b)

file_path = 'tga-deposits-taxes.csv'

with open(file_path) as file_in:
    lines = []
    for line in file_in:
        lines.append(line.strip())

lines2 = []
lines2.append("year,month,date,amt")
for x in range(len(lines)):
    if x != 0:
        lines[x] = lines[x].split(",")
        lines[x] = lines[x][0].split("-")+lines[x][1:]
        lines2.append(','.join(lines[x]))

years = set()
months = set()
days = set()

date_objs = [datetime.strptime(date_str[:10], "%Y,%m,%d").date() for date_str in lines2[1:]]
for x in date_objs:
        years.add(x.year)
        months.add(x.month)
        days.add(x.day)
years = sorted(years)
months = sorted(months)
days = sorted(days)

lines3 = {}
for y in months:
     lines3[y] = {}

for x in years:
     for y in months:
          substring1 = str(x)+","+str(y).zfill(2)
          if is_prefix_of_any(substring1,lines2):
                lines3[y][x] = {}
                for z in days:
                        substring2 = str(x)+","+str(y).zfill(2)+","+str(z).zfill(2)
                        if is_prefix_of_any(substring2,lines2):
                            for i in lines2:
                                 if (str(x)==i.split(",")[0]) and (str(y).zfill(2)==i.split(",")[1]) and (str(z).zfill(2)==i.split(",")[2]):
                                    lines3[y][x][z] = int(i.split(",")[3])
                        else:
                            number_list = set()
                            for i in lines2:
                                 if (str(x)==i.split(",")[0]) and (str(y).zfill(2)==i.split(",")[1]):
                                      number_list.add(int(i.split(",")[2]))
                            number_list = sorted(number_list)
                            nearest_neighbor_result = nearest_neighbor(z,number_list)
                            for i in lines2:
                                 if (str(x)==i.split(",")[0]) and (str(y).zfill(2)==i.split(",")[1]) and (str(nearest_neighbor_result).zfill(2)==i.split(",")[2]):
                                      lines3[y][x][z] = int(i.split(",")[3])

month_list = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
color_list = {}
for x in range(len(years)):
     color_list[years[x]] = compass_to_rgb(360.0/float(len(years))*(x+1))

for y in range(len(months)):
    plt.subplot(1, len(months)+1, y+1)
    current_dict = lines3[months[y]]
    current_dict_keys = current_dict.keys()
    for x in current_dict.keys():
        list_of_keys = []
        list_of_values = []
        for key,val in current_dict[x].items():
            list_of_keys.append(key)
            list_of_values.append(val)
        plt.plot(list_of_keys,list_of_values, color=color_list[x])
    plt.xlabel("Date")
    plt.ylabel("Amt")
    plt.title(month_list[months[y]-1])
plt.subplot(1, len(months)+1, len(months)+1)
keys = list(color_list.keys())
for x in range(len(keys)):
    plt.text(0, x, keys[x], color=color_list[keys[x]], fontsize=10)
plt.plot([],[])
plt.xlabel("")
plt.ylabel("")
plt.ylim(0, len(keys) + 1)  # ensure all labels fit
plt.axis('off')
plt.title("Legend")
plt.show()
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: workhandle

79667377

Date: 2025-06-16 09:50:52
Score: 7.5 🚩
Natty: 4.5
Report link

I'm just going through this headache at the moment to reduce dynamodb costs. Have created a GSI with the partition key being similar to your createdAt time. Did you find a way to query the table without knowing what items you are actually going to get?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a way to
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jonathan Barrett PsV Eagle

79667373

Date: 2025-06-16 09:46:51
Score: 5
Natty: 5.5
Report link

https://github.com/DULAKSHANA404/heart-tumor.git here a ff-nn model with web app

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

79667366

Date: 2025-06-16 09:41:49
Score: 1
Natty:
Report link

enter image description here
I Have Updated Your Code With Just Few Lines Updated
Check It Out

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Row double 50% height with gap</title>


    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" />
    <style>
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html,
        body {
            height: 100%;
        }

        .container-fluid {
            width: 80% !important;
            margin: 200px auto;
            background-color: green;
            height: 500px;
        }

        .row-double {
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .row-double>.row {
            flex: 1;
            margin: 0;
        }

        .row-double img {
            aspect-ratio: 1 / 1;
        }

        figure {
            margin-bottom: 0 !important;
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            aspect-ratio: 16 / 9;
        }

        .gap-15 {
            gap: 15px;
            padding: 0 !important;
            margin: 0 !important;
        }

        .gap-15>* {
            padding: 0 !important;
            max-width: calc(50% - 15px *1/2);
        }
    </style>
</head>

<body>
    <section class="mosaic mosaic-02 container-fluid fade-slide fade-slide-down px-0">
        <div class="row h-100 gap-15">
            <div class="col-6">
                <figure id="main" class="h-100 m-0">
                    <img src="https://picsum.photos/1200/800" alt="Placeholder" />
                </figure>
            </div>
            <div class="row col-6 gap-15">
                <figure class="col-6">
                    <img src="https://picsum.photos/1500/800" alt="Placeholder" />
                </figure>
                <figure class="col-6">
                    <img src="https://picsum.photos/1200/850" alt="Placeholder" />
                </figure>
                <figure class="col-6">
                    <img src="https://picsum.photos/800/800" alt="Placeholder" />
                </figure>
                <figure class="col-6">
                    <img src="https://picsum.photos/1200/900" alt="Placeholder" />
                </figure>
            </div>
        </div>
    </section>
</body>

</html>
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (0.5): Check It Out
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Xeeshan Bug

79667361

Date: 2025-06-16 09:37:48
Score: 4
Natty:
Report link

Can you please provide what is full command and where you running this ?
Also, you can try this ,
Try to run this command in native terminal like (CMD/PowerShell, macOS teminal
Also try after enable virtual environment

python manage.py createsuperuser

python3 manage.py createsuperuser

py manage.py createsuperuser

Reasons:
  • Whitelisted phrase (-1): try this
  • RegEx Blacklisted phrase (2.5): Can you please provide what
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you please
  • Low reputation (1):
Posted by: Amisha Chauhan

79667356

Date: 2025-06-16 09:32:47
Score: 1.5
Natty:
Report link

I looked into the source code of mqtt.js and found that TLS related options are really just forwarded to "node:tls" module's tls.connect(opt) method, so the docs you wanna consult are here:

After reading, it just makes me wonder: where did you got the impression that these are valid options to pass into mqtt.connectAsync({ caPaths, certPath, keyPath })? 👈 Those 3 fields doesn't exist in docs of MQTT.js nor Node.js...

So I think @hardillb's answer is on the right track after all, not sure what's still missing that prevents it to work, but read the docs ™️ please.

Telling from the node.js docs, obviously you can simply pass in rejectUnauthorized: false to mute the error:

await mqtt.connectAsync(
  'mqtts://localhost:8883',
  {
    protocol: 'mqtts',
    rejectUnauthorized: false
  }
)

Although you said in your question updates "Option 1: No, I cannot do that", it's not clear whether you just don't accept this solution, or you simply mean you cannot set NODE_TLS_REJECT_UNAUTHORIZED="0" globally but are still open to set it in one instance, thus I'm post this solution anyways, it's up to you.

As of "Option 2: I cannot do that as I use MQTT." Nay, in fact you can, because no matter you're using mqtt.js or postman, those options are passed into "node:tls" under the hood.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (3): did you got the
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @hardillb's
  • High reputation (-2):
Posted by: hackape

79667348

Date: 2025-06-16 09:27:45
Score: 11.5
Natty: 7.5
Report link

a have the same problem with graphical card GeForce 315M NVidia, I can`t play with Homeworld 3 at now in notebook. can you help me? actually my driver is 342.01 (2016 edition). maybe i should instal not fo notebook version for my Samsung RC710 ?

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can you help me
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ascen-149

79667347

Date: 2025-06-16 09:27:45
Score: 3.5
Natty:
Report link

Thanks to @TilmanHausherr for his suggestions, i had to use this function while embedding the font to the pdf

PDType0Font.load(doc, new FileInputStream(fontPath), false);
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @TilmanHausherr
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: rec7y33

79667330

Date: 2025-06-16 09:16:42
Score: 1.5
Natty:
Report link

The server can’t guarantee detection if the HTTP response is lost after reaching a proxy or load balancer. Once a proxy ACKs the response, the server assumes it's delivered — even if the client never gets it.

So, always design your REST service with idempotent endpoints and retry logic, just like Brewed to Greed handles duplicate chai orders — calmly and correctly.

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

79667317

Date: 2025-06-16 09:05:39
Score: 2.5
Natty:
Report link

Use SEO (organic) for long-term growth and brand authority.

Use PPC for quick results, testing, or new product launches.

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

79667315

Date: 2025-06-16 09:03:39
Score: 1.5
Natty:
Report link

To store the heapdump files in a custom directory, use --diagnostic-dir= flag while running the node process.

Refererence - https://github.com/nodejs/node/pull/47854

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

79667307

Date: 2025-06-16 08:59:38
Score: 2
Natty:
Report link

I got it finally. Interesting that LLM (Claude) was not helpful.

I would say that the design is a bit confusing, so I post this additionally to the accepted answer.

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Yuriy N.

79667306

Date: 2025-06-16 08:58:37
Score: 1.5
Natty:
Report link

A disk space of around 20GB is assigned to each job. with all the linked files, I am guessing you will hit the limit since Revit doe create temporary files to work with.

You can join https://aps.autodesk.com/adn and ask your question for the Revit team to be contacted.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Moturi George

79667300

Date: 2025-06-16 08:57:37
Score: 0.5
Natty:
Report link

I faced the same issue and solved it.
You can try this line:

dataSet.mode = LineDataSet.Mode.HORIZONTAL_BEZIER
Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tadashi

79667296

Date: 2025-06-16 08:52:35
Score: 2
Natty:
Report link

I'm not using Flask (FastAPI), found simple and independent from framework solution here: https://stackoverflow.com/a/10611713/7213505

{% for line in post.content.splitlines() %}
    {{ line }}<br>
{% endfor %}
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: C0oo1D

79667290

Date: 2025-06-16 08:45:33
Score: 1.5
Natty:
Report link

It has been resolved. when you uses sha256sum to calculate a url string, should be like this:

echo -n "url" |. sha256sum
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: mac.ma

79667256

Date: 2025-06-16 08:18:25
Score: 3.5
Natty:
Report link

I had this problem, i solve with define custom Elements in app.component's constructor.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Carlos Alberto Ribeiro Bicudo

79667246

Date: 2025-06-16 08:12:23
Score: 0.5
Natty:
Report link

Thank you @Thom A, @GSerg, and @Dai for the helpful clarifications and suggestions especially for identifying that the root cause lies in the SQL query generated by the third-party client and for suggesting the TDS proxy workaround.

The error Table hint NOLOCK is not allowed occurs when a third-party application tries to query an Azure Fabric SQL Database using the WITH (NOLOCK) table hint.

Azure Fabric SQL (SQL endpoint of Microsoft Fabric) does not support NOLOCK or other unsafe table hints (READUNCOMMITTED) to maintain data consistency and isolation guarantees in its distributed architecture.

This issue cannot be fixed from the Azure SQL side. Instead, it must be addressed on the 3rd party application side, where the SQL query is constructed or passed to the engine.

If you have control over the 3rd party application's source code or configuration, then firstly Locate and update any queries like:

SELECT * FROM dbo.MyTable WITH (NOLOCK)

Then Replace them with:

SELECT * FROM dbo.MyTable

If applicable, remove any setting that globally injects READUNCOMMITTED or similar behavior.

And, If You Do Not Control the Application Code then as @Dai pointed out, you can insert a TDS proxy between the application and the database. This proxy can rewrite SQL queries in-flight

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Thom
  • User mentioned (0): @GSerg
  • User mentioned (0): @Dai
  • User mentioned (0): @Dai
  • Low reputation (0.5):
Posted by: Mihir Saxena

79667245

Date: 2025-06-16 08:12:23
Score: 3.5
Natty:
Report link

Working solution is to delegate build operations to Maven if you are using IntelliJ Ideaenter image description here

Reasons:
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: pbuxaroff

79667233

Date: 2025-06-16 07:58:19
Score: 6 🚩
Natty: 4
Report link

But Still the question remains: "How to find if a coulmn is part of a Functional Index?" The following query errors with "ORA-00932: inconsistent datatypes: expected - got LONG"...

SELECT i.index_name,
       i.table_name,
       e.column_expression
FROM   user_indexes i
JOIN   user_ind_expressions e
ON     i.index_name = e.index_name
WHERE  to_lob(e.column_expression) LIKE '%<COLUMN_NAME%';

Any help in this matter is appreciated
Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (3): Any help in this matter is appreciated
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Vijay

79667232

Date: 2025-06-16 07:58:19
Score: 1.5
Natty:
Report link

Using python and <filename> as your file you want to update:

import numpy as np
import netCDF4 as nc


with nc.Dataset(<filename>, mode="r+") as ds:
    np.int32(ds.variables['time'][:])
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Kerry

79667228

Date: 2025-06-16 07:53:18
Score: 2.5
Natty:
Report link

VPN tools is the most convenient choice to fake location. I also found there are many different kind of tools recently, like Magfone Location Changer, which seems different from traditional VPN tools, it runs on computer, and you can fake the iPhone location or android location freely.

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

79667224

Date: 2025-06-16 07:52:17
Score: 2.5
Natty:
Report link

in ios/Runner/Info.plist change Light to Automatic in this key value

<key>UIUserInterfaceStyle</key>
<string>Automatic</string>

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

79667210

Date: 2025-06-16 07:46:15
Score: 3.5
Natty:
Report link

use float modbus the example are pretty easy wishing you luck

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

79667204

Date: 2025-06-16 07:42:14
Score: 0.5
Natty:
Report link

@jeko's answer is good, here are a few additional ways to get the response body:

let-values

(use-modules
  (srfi srfi-11)
  (web client))

(let-values
  (((response response-body) (http-request "http://www.gnu.org")))
  (display response-body))

define-values

(use-modules
  (srfi srfi-244)
  (web client))

(define-values (response response-body) (http-request "http://www.gnu.org"))
(display response-body)
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @jeko's
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: Daniel

79667200

Date: 2025-06-16 07:37:13
Score: 1
Natty:
Report link

a bit late to the party but it may help people landing on this page with the same issue.

I had a similar problem trying integrate conan 2 into my CMake workflow so wrote a CMake module to invoke (and even install, if needed) conan, possibly depending on CMake options or variables. It is available from https://github.com/tkhyn/cmake-conanfile. It requires a conanfile.py and doesn't work with conanfile.txt but the conversion is easy enough.

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

79667198

Date: 2025-06-16 07:33:12
Score: 1.5
Natty:
Report link

The below code works. But using $filter directly as a parameter doesn't work.

Scenario: Get one user details
    * def filter = "(user eq 'ABC')"
    * def encodedFilter = encodeURIComponent(filter)
    Given url baseURL + 'Users?language=en&$filter=' + encodedFilter
    When method Get
    Then status 200
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Chinmayee

79667194

Date: 2025-06-16 07:30:11
Score: 6 🚩
Natty: 6
Report link

Thank you!! Also was wondering if there is a working v.5 of this script.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (2): was wondering
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alex Zuyev

79667188

Date: 2025-06-16 07:24:08
Score: 7.5 🚩
Natty: 5.5
Report link

أواجه نفس المشكلة ما هو الحل؟؟

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: Hamid Feham

79667183

Date: 2025-06-16 07:20:07
Score: 0.5
Natty:
Report link
  "[python]": {
    "editor.codeActionsOnSave": {
      "source.fixAll": "explicit"
    },
    "editor.defaultFormatter": "charliermarsh.ruff",
    "editor.formatOnSave": true
  }

I use Ruff and those are the settings for python files. For me the editor.codeActionsOnSave did the trick.

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

79667179

Date: 2025-06-16 07:19:06
Score: 0.5
Natty:
Report link

In my case, I had pod running which was using the PVC. I deleted the pod and the PV / PVC which were in terminating state were automatically deleted. Ofcourse the earlier solution bt Dragomir Ivanov does work. But before that, try deleting the pod :)

Conclusion - If a user deletes a PVC in active use by a Pod, the PVC is not removed immediately. PVC removal is postponed until the PVC is no longer actively used by any Pods. Also, if an admin deletes a PV that is bound to a PVC, the PV is not removed immediately. PV removal is postponed until the PV is no longer bound to a PVC.

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

79667168

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

In my case, helped to delete yarn.lock and then running yarn install

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

79667164

Date: 2025-06-16 07:04:02
Score: 9 🚩
Natty: 5
Report link

did you get the solution for this , it would be helpful since I am facing exactly same problem. I tried different methods to install it didn't work

Reasons:
  • RegEx Blacklisted phrase (3): did you get the solution
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing exactly same problem
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Shashank B

79667163

Date: 2025-06-16 07:04:02
Score: 4
Natty: 6
Report link

Nee oru aalu punda unakku oru answer punda venumaa poda dei

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

79667153

Date: 2025-06-16 06:55:58
Score: 2
Natty:
Report link

I set up a similar environment for my storage account by creating it using the CLI.

az storage account create --name mystoragecdnbab --resource-group anji-rg --location centralindia --sku Standard_LRS --kind StorageV2  

Then i enable static website to my storage account

az storage blob service-properties update --account-name mystoragecdnanji --static-website --index-document index.html                                

Then I created DNS profile

az cdn profile create --name mycdnprofile --resource-group anji-rg --location centralindia --sku Standard_Microsoft

Then I created DNS endpoint

az cdn endpoint create --name mycdnendpoint --profile-name mycdnprofile --resource-group anji-rg --origin mystoragecdnbab.z29.web.core.windows.net --origin-host-header mystoragecdnbab.z29.web.core.windows.net

I added dummy index.html file to my setup got access in web using DNS endpoint https://mycdnendpointbab.azureedge.net/

enter image description here

In your case, since you have another domain name, you need to add that domain name to access your service on the web. To do this, you should map Azure CDN to your custom domain like cdn.domain.com, ensure that you have a valid domain since you already purchased from Namecheap. In your DNS provider, add a CNAME record for 'cdn' pointing to your Azure CDN endpoint like mycdnendpointbab.azureedge.net. Once DNS propagates, validate this custom domain in Azure CDN Profile under 'Custom domains' section. This will allow traffic to cdn.domain.com to be served via Azure CDN.

Similar issue: Azure FrontDoor CDN Classic add custom domain Please let me know how it goes. -Thank you @Nicke Manarin

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): In your case
  • RegEx Blacklisted phrase (2.5): Please let me know how
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Nicke
  • Low reputation (0.5):
Posted by: Bheemani Anji Babu

79667145

Date: 2025-06-16 06:46:57
Score: 2
Natty:
Report link

Open the browser network tab and look at user suggestions when you're adding a mention comment on a Bitbucket PR.

Posting a mention comment

Request - https://bitbucket.org/gateway/api/v1/recommendations

{
    "recommendedUsers": [
        {
            "entityType": "USER",
            "id": "xxxxxxxxxxxxxx",
            "name": "John Doe",
            ......
        }
    ],
}
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Manuka Prabath

79667144

Date: 2025-06-16 06:45:56
Score: 2.5
Natty:
Report link

It has got to do with your imports, your IDE could have imported clearTimeout from timers.

Please check Nick Parsons shared link.

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

79667139

Date: 2025-06-16 06:38:53
Score: 7.5 🚩
Natty: 4.5
Report link

do you have idea about the issue? I have the same error.

Reasons:
  • RegEx Blacklisted phrase (1): I have the same error
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same error
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jiqi Li

79667116

Date: 2025-06-16 06:09:47
Score: 2.5
Natty:
Report link

You can check the package’s dependencies using deps.dev. For example, for langchain-core version 0.3.65, here's the direct link:

🔗 https://deps.dev/pypi/langchain-core/0.3.65/dependencies

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

79667110

Date: 2025-06-16 05:54:44
Score: 3.5
Natty:
Report link

In addition to the answer from @kokoko, I found out that running the app directly from Xcode also solves this problem. If still things don't work, just restart Xcode.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @kokoko
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: sm-sayedi

79667101

Date: 2025-06-16 05:40:40
Score: 6.5 🚩
Natty: 5.5
Report link

15 years later I have the same problem with my Entity-Model when migrating from Hibernate 5 to 6. Everthing works fine with WildFly 26 and Hibernate 5. Changing to WildFly 35 with Jakarta EE 10 and Hiberenate 6 results in this error.

So the question is: what's the reason for this error in Hibernate 6 and where to find relevant documentation?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: raho

79667099

Date: 2025-06-16 05:39:39
Score: 2.5
Natty:
Report link

Rat SMS stands out as a premier bulk SMS service provider in Delhi, offering a range of services including promotional, transactional, and OTP SMS. Our platform ensures instant delivery, high open rates, and compliance with TRAI regulations. With features like Unicode support and SMPP integration, we cater to businesses of all sizes, ensuring effective communication with your target audience

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

79667097

Date: 2025-06-16 05:37:38
Score: 1
Natty:
Report link

In my case the problem solved after i removed this from style.css :


.cdk-overlay-backdrop {
  pointer-events: none !important;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ashrik Ahamed

79667096

Date: 2025-06-16 05:34:37
Score: 1.5
Natty:
Report link

I know this is very late for you, but for anyone else wondering. You can use LLM models like ChatGPT to help create more of training data.

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

79667088

Date: 2025-06-16 05:26:35
Score: 2
Natty:
Report link

Please update the row threshold value in pinot table config while creating it. this value shall be changed

"realtime.segment.flush.threshold.rows": "0" to "realtime.segment.flush.threshold.rows": "2"

refrence:https://docs.pinot.apache.org/basics/concepts/components/table

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

79667083

Date: 2025-06-16 05:21:34
Score: 1.5
Natty:
Report link

config/queue.php
'default' => env('QUEUE_CONNECTION', 'sync') to

'default' => env('QUEUE_CONNECTION', 'database')

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

79667079

Date: 2025-06-16 05:17:33
Score: 0.5
Natty:
Report link

Yes, it shouldn't be a problem, as the directories are the same. To be on the safe side, make a backup of the following directories:

%APPDATA%\DBeaverData\
C:\Users\<YourUsername>\AppData\Roaming\DBeaverData\workspace6\

More information: https://dbeaver.com/docs/dbeaver/Workspace-Location/

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

79667036

Date: 2025-06-16 04:07:16
Score: 4
Natty: 4.5
Report link

Here is the article on how to use SSE to build MCP in context of springboot

https://www.linkedin.com/pulse/building-server-sent-event-sse-mcp-spring-boot-ranjeet-jha-vyfac/?trackingId=h4B43RDKQa%2BdnMA2JqujSg%3D%3D

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

79667022

Date: 2025-06-16 03:41:11
Score: 1
Natty:
Report link

As a temporary solution, I’ve switched to using the default provider on iOS (Apple Maps) while continuing to use Google Maps on Android.

provider={Platform.OS === 'android' ? PROVIDER_GOOGLE : null}

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

79667010

Date: 2025-06-16 03:03:03
Score: 3.5
Natty:
Report link

Someone downvoted the question. It's legitimate and frustrating to be forced to use the Microsoft store. Don't downvote just because the question tone expresses deep frustration at a Microsoft decision that forces an unwieldy deployment approach, especially for corporates where the store is effectively banned.

However, there is a solution for Blazor apps that doesn't require the store and is cross platform for MacOS , Linux and Windows:

Alternatively, if someone can tell me how I can build an EXE or MSI from my existing Maui app I'll happily (very happily) accept that as an answer.

Reasons:
  • RegEx Blacklisted phrase (2): downvote
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: random_user_8234

79667003

Date: 2025-06-16 02:49:00
Score: 0.5
Natty:
Report link

i have update vite config and use outDir: 'public/build' but the error is still same.

my vite.config.js

import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';

export default defineConfig({
    plugins: [
        laravel({
            input: [
                'resources/css/app.css',
                'resources/js/app.js',
                'resources/js/project-modals.js'
            ],
            refresh: true,
        }),
    ],
    build: {
        outDir: 'public/build',
    },
});
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Teknik Informatika

79667000

Date: 2025-06-16 02:26:56
Score: 6.5 🚩
Natty: 5
Report link

Have you solved this issue, I have the same problem.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: José Polanco

79666998

Date: 2025-06-16 02:26:55
Score: 0.5
Natty:
Report link

Update your vite.config.js to specify the correct output directory. Modify the build.outDir option:

export default {
  build: {
    outDir: 'public/build',
  },
};

Run npm run build again.

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

79666996

Date: 2025-06-16 02:19:54
Score: 2
Natty:
Report link

First of all, you need to use database like posgresql, mysql, nosql, etc. Second, as you are not familiar with backend, use backend frameworks like php-laravel, js-nodejs, python-django, java-springboot, etc. Do not try to implement those mentioned features by yourself.

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

79666990

Date: 2025-06-16 02:10:52
Score: 2
Natty:
Report link

The English sentence was wrong, so I will rewrite it again.

---------------------------------------------------------------------

Our Windows driver is a UMDF2.15 driver that outputs event logs.

Previously, HKLM was used to register the event log message files in the registry.

[CoInstallers_AddReg]
HKLM,%EventLogKey%\MyDriverName,EventMessageFile,0x00020000,"%%SystemRoot%%\system32\drivers\UMDF\MyDriver.dll"
[Strings]
EventLogKey="SYSTEM\CurrentControlSet\Services\EventLog\Application"

We need to do the HLK tests and get the WHQL signature, but if you look at the documentation on InfVerif.exe for the/h option (WHQL requirement) that was introduced in Windows11 24H2, it says that HKLM: SYSTEM\CurrentControlSet is currently an exception but should not be used because it will not be available in a future release. It also says to modify the registry using the HKR and AddReg directives.

https://learn.microsoft.com/en-us/windows-hardware/drivers/devtest/infverif_h

In the DDInstallServices section, it seems to be possible to register an Eventlog message file using HKR with the AddService directive, but my driver is a UMDF2.5 driver and I have to include the reflector inf. There is no AddService directive, how do I define it?

[DDInstall.Services]
AddService=ServiceName,flags,service-install-section,event-log-install-section,Application,EventName

[event-log-install-section]
AddReg=drivername_EventLog_AddReg

[drivername_EventLog_AddReg]
HKR,,EventMessageFile,0x00020000,"%%SystemRoot%%\system32\drivers\Mydriver.dll"
HKR,,TypeSupported,0x00010001,7

------------------------------------

[DDInstall.Services]
Include=WUDFRD.inf
Needs=WUDFRD.NT.Services

<<INF AddReg directive>>

https://learn.microsoft.com/en-us/windows-hardware/drivers/install/inf-addreg-directive

<<INF AddService directive>>

https://learn.microsoft.com/en-us/windows-hardware/drivers/install/inf-addservice-directive

<<Specifying the Reflector in an INF File>>

https://learn.microsoft.com/en-us/windows-hardware/drivers/wdf/adding-the-reflector

Reasons:
  • Blacklisted phrase (1): how do I
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Filler text (0.5): ---------------------------------------------------------------------
  • Filler text (0): ------------------------------------
  • Low reputation (1):
Posted by: YASU

79666964

Date: 2025-06-16 01:10:40
Score: 1
Natty:
Report link

I got the same issue, it looks like unsloth is changing something under the hood. I fix the issue by making sure unsloth is imported BEFORE trl.


from unsloth import FastLanguageModel
from trl import SFTTrainer, SFTConfig

my package version:

trl==0.18.2

unsloth==2025.6.2

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

79666963

Date: 2025-06-16 01:07:39
Score: 2.5
Natty:
Report link

No, there is no way to forward declare anything outside of a header file. If you want to collocate your source and external declarations you can include your implementation (source) in the header file, usually indicated using .hpp.

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

79666957

Date: 2025-06-16 00:46:35
Score: 0.5
Natty:
Report link

update your flutter, it is probably out of date:

$ flutter upgrade

OBS: remember to recreate your project, when you update, everything will break, so migrate your current code to a new project with the updated Flutter.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vinícius Bruno

79666952

Date: 2025-06-16 00:32:32
Score: 0.5
Natty:
Report link

I guess the reason is buffering. JavaFX uses a scene graph to manage the UI, which is not thread-safe. Any updates to the UI must be done on the JavaFX Application Thread. Background tasks (like media playback) may spawn additional threads to handle buffering and decoding media.

Use Platform.runLater() to update the UI from background threads safely.

Reasons:
  • RegEx Blacklisted phrase (0.5): Any updates
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: buzz8year

79666943

Date: 2025-06-16 00:02:26
Score: 1
Natty:
Report link

If you need to get this information after the jobs have finished executing you will need to find the 'RunInstances' events in the CloudTrail logs.

Go to the CloudTrail console -> Event History, then search Event name 'RunInstances', then click on 'Filter by date and time', in the filter dropdown click on 'Absolute range' then adjust to start and end date times to the time your job started.

Your should find the entries in there and the instance type will be specified in the JSON.

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

79666932

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

Since R 3.6.0 library() has had arguments for exclude and include.only. This makes the solution to your problem very simple with:
library(dplyr, exclude = "select") or library(MASS, exclude = "select")

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

79666923

Date: 2025-06-15 23:06:13
Score: 5.5
Natty:
Report link

Did you get this resolved?

I spun it up on a test site to see if I could spot the error as your code looked fine, it runs fine on my site:

enter image description here

The only difference I made was:

Neither of those should make any difference though.

Maybe the line reference is misreporting and the error comes from somewhere else in the adapter js code? Try chopping it back to the vanilla version you posted and, if that works, build out again from there to see what trips it up.

Reasons:
  • RegEx Blacklisted phrase (3): Did you get this resolved
  • RegEx Blacklisted phrase (1.5): resolved?
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
Posted by: Rich - enzedonline

79666922

Date: 2025-06-15 23:05:13
Score: 0.5
Natty:
Report link

I want that domain name is transferred as additional parameter site in my URL but this has to be hidden from users

You can't HIDE the Hostname in the URL. OTOH you can serve the same content content up under multiple hostnames.

http://www.maindomain.com/index.php?site=domain

Why? While this is trivial to achieve with URL re-writing (NOT redirecting) it is an unecessary complication - your PHP can code can read the hostname from URL - it appears in MULTIPLE parameters passed to the script (have a look at the output of phpinfo()).

Reasons:
  • Blacklisted phrase (0.5): Why?
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: symcbean

79666914

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

you need this line:

xmlsec.tree.add_ids(template, ["ID"])

place it before signature_node = xmlsec.tree.find_node(template, xmlsec.constants.NodeSignature)
and it will work.

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

79666906

Date: 2025-06-15 22:26:04
Score: 1.5
Natty:
Report link

I just tried to do that, you probably want to do the same as I and use a dict

Mode = 'fast'
choice = {"slow": "v2 k5", "balanced": "v3 k5","fast": "v3 k7"}
puts = choice[Mode]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nom XD

79666904

Date: 2025-06-15 22:23:03
Score: 2
Natty:
Report link

Outlook webmail, and now the New Outlook which is based on that, does this when they come across a malformed link.

In this case, perhaps the dashes within the href attribute are causing an issue. Are they normal dashes in your code? Or, try spaces.

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

79666901

Date: 2025-06-15 22:18:02
Score: 3.5
Natty:
Report link

do you still have working links to these models

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

79666885

Date: 2025-06-15 21:45:54
Score: 3
Natty:
Report link

I have the same issue. I'm using the jquery .mouseup

$('#myselect").on('mouseup', function(e){
 //your code
 });

It works with mouse selection over the multiple select list as you hold the mouse down and scroll to the end that you want. It will trigger multiple times if you click on the first, hold the ctrl key, and then scroll down and click on the next or just shift click on the individual options. If you want to avoid that I think you'll have to go with a button to refresh whatever field you want to fill from the selections however.

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

79666884

Date: 2025-06-15 21:43:53
Score: 2.5
Natty:
Report link

In my case, I reinstalled SSIS and with automatic updates, all started working fine. I got all my data imported.

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

79666881

Date: 2025-06-15 21:39:52
Score: 1
Natty:
Report link

In this case, you're using a linker has an LLVM plugin to do link-time optimization (LTO). When compiling with clang, you (are choosing to via the -flto flag or another flag) emit LLVM bitcode files instead of native object files, then the linker engages LLVM to combine the files being linked, and with additional symbol information from the native object files, LLVM optimizes them collectively allowing inlining across translation units and more.

You've upgraded your clang to a newer version which is outputting bitcode files too new for your linker's LLVM plugin to read. Does your new LLVM have a new LLVMgold.so? See https://llvm.org/docs/GoldPlugin.html .

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
Posted by: Nick Lewycky

79666877

Date: 2025-06-15 21:32:51
Score: 1.5
Natty:
Report link

I figured out the reason, turns out tailwind preflight was overridding basic html styling, so i had to disable that

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

79666873

Date: 2025-06-15 21:27:50
Score: 3
Natty:
Report link

Confirmed the issue in WildFly 26.1.3 and the latest (at the time) 36.0.1.

Here is a reproducer: https://github.com/alexlitovsky/wildfly-sse-bug

Here is the WildFly bug submission: https://issues.redhat.com/browse/WFLY-20721

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

79666871

Date: 2025-06-15 21:21:48
Score: 1.5
Natty:
Report link

When FilePond uses AJAX uploading (with process), the files are uploaded separately via JavaScript and are no longer part of the <input type="file"> when the form is submitted. That’s why $request->files[] is empty.

What you need to do is manually store the filename returned from the process() call (usually the path in your temp folder) into a <input type="hidden" name="uploaded_files[]">. This way you’ll have access to the uploaded files in your update() method.

Then you can move them from the temp folder to the final location just like before.

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

79666870

Date: 2025-06-15 21:21:48
Score: 2
Natty:
Report link

If you from Microsoft, please ask for feature request for simple tables and indexes moving between filegroups.
Main idea:
- use syntax without fields enumeration because MSSQL engine already knows them;
- commands same for indexes, tables, heaps.

SAMPLE:

alter table heaptable rebuild on FG (with online on|off, maxdop = nn)

alter index clu_index rebuild on FG

alter index nonclu_index rebuild on FG

-----------
oracle, postgress, mysql already have these commands. mssql does not.

Reasons:
  • No code block (0.5):
  • Filler text (0.5): -----------
  • Low reputation (1):
Posted by: Andrey i

79666869

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

On Linux you can run ./ida from the terminal, and you'd see the stdout of the program in it, even on IDA Free.

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

79666867

Date: 2025-06-15 21:17:48
Score: 0.5
Natty:
Report link

I faced the same problem and it took me hours trying multiple packages without finding a real solution then I fixed it using channel method and kotlin , here I made it into a low level plugin that wont cause conflicts with any of your already installed packages

you are welcome to check it out https://pub.dev/packages/flutter_universal_downloader

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Whitelisted phrase (-2): I fixed
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: islam kermiche

79666866

Date: 2025-06-15 21:15:46
Score: 13 🚩
Natty: 6
Report link

I have the same issue. Have you solved it yet?

Reasons:
  • Blacklisted phrase (2): Have you solved it
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (1.5): solved it yet?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anmol Bajaj

79666860

Date: 2025-06-15 20:52:41
Score: 0.5
Natty:
Report link

The solution to this problem has been given in the comments. I used pygame's set_endevent module to send an event when the song is finished, which allowed me not to use sleep. This is what the code looks like now:

        mixer.music.load(self.current_song)
        mixer.music.play()
        mixer.music.set_endevent(USEREVENT+1)
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Nathan Vidal

79666849

Date: 2025-06-15 20:39:37
Score: 6 🚩
Natty: 5
Report link

@Detlef. Thank you very much. your answer helped me to complete my task

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Detlef
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: lakshmi

79666841

Date: 2025-06-15 20:22:32
Score: 1
Natty:
Report link

let defaultStyle = {
  one: 1,
  two: 2,
  three: 3
}

function styling(style = defaultStyle, ...ruleSetStock) {

  return ruleSetStock.map(ruleSet => {
    console.log(ruleSet)
    return style[ruleSet]
  })
}

console.log(styling(undefined, "one", "two", "three"))

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

79666832

Date: 2025-06-15 20:08:29
Score: 2.5
Natty:
Report link

Apart from the personal workbook mentioned in the comments, you can also use VBA code to export/import modules, see e.g. this SO post: Mass importing modules & references in VBA

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

79666822

Date: 2025-06-15 19:50:25
Score: 0.5
Natty:
Report link

With no explain and no info on data distribution regarding your date, detail and status it's difficult to say (for date: could you give an approximate of the number of rows over the 3-months period, so that we know how many percents they represent of the total 65 million rows?),
but by decreasing order of probability I would say:

Speed up your dates range clause
Remove the between

First of all: can you have future dates in loginaudit?. If not, instead of Cast_as(date) BETWEEN [3 months ago] AND [today], just Cast_as(date) >= [3 months ago]: you'll spare a comparison for each row (BETWEEN is date >= [start] AND date <= [today], so if your data is always <= [today], do not let your RDMS look for it).

Make good use of an index over the date

Then an index over date would allow the RDBMS to quickly limit the number of rows to inspect for further tests.
However each row's date has to be passed through Cast_as() to return a value to be compared, so an index on the column would be useless (the index on column is only used if you directly compare the column to some bounds).

You could improve your query by creating by creating a function index:
CREATE INDEX la_date_trunc_ix ON loginaudit (builtin.Cast_as(loginaudit.date, 'TIMESTAMP_TZ_TRUNCED'));
But /!\ this will be more costly than a direct index on the column, and given the number of log entries you write per day you perhaps do not want to slow down your inserts too much. You'll have to find a balance between a simple index on date (will slow down writes too, but not as much) and a function index (will slow down writes more; but be a bit smaller and quicker on reads).

But if we read it further, you're truncating the row's date to TIMESTAMP_TZ_TRUNCED (truncates 2025-03-15 15:05:17.587282 to 2025-03-15 00:00:00.000000?),
to compare it to something described as DATETIME_AS_DATE (so probably 2025-03-15).
So, be it 2025-03-15 15:05:17.587282 or 2025-03-15 00:00:00.000000, both are < 2025-03-15:
builtin.Cast_as is useless, just directly rewrite your cond to loginaudit.date >= builtin.Relative_ranges('mago2', 'END', 'DATETIME_AS_DATE').

… And of course do not forget to have a (simple!) index on loginaudit(date).

(and then depending on the ratio of old data compared to 3 last months' data, maybe partitioning by month, but let's first try with correct index use.

Verify that Relative_ranges is stable

I hope SuiteQL delivers its builtin functions as stable; you should ensure it.

If it is stable, the RDBMS can understand that builtin.Relative_ranges('mago2', 'END', 'DATETIME_AS_DATE') will output the same value for each row, so it can precompute it at the start of the query and consider it is a constant (thus allowing to use the index).

If it is not stable, the RDBMS will prudently recompute it for each row (thus it will probably priorize other indexes than this one that would logically be the more selective).

Speed up your enumerations

This is probably less of a concern, depending on the proportion of your rows having the given values.
Moreover, I would expect the date index to be a big boost.

So I'll briefly give leads here, without expanding; you can restart here if all efforts on date aren't enough.

A simple enum

But if your audit contains 20 % of 'Success' compared to other values, an index on it will be useful (particularly as a composite index with the Cast_as() function as first member, if you stayed with a function index).

The NOT(detail IN (…)) OR detail IS NULL filter

This one is more complex. There too, judge of the proportion of rows matching the condition: if 80 % of your rows match, no need to index.

Else:

First of all, rewriting NOT (detail IN (…)) to detail NOT IN (…) would make it more clear (and maybe more optimizable by the RDBMS? Not sure, an explain plan would tell).

Then I would try to make it a positive IN: instead of excluding some detail values, list all possible other values.

And as you have a NULL to test too, which will prevent Oracle to index it,
you would probably test with COALESCE(detail, '-') IN ('…', '…', '-') after having created a function index on COALESCE(detail, '-').

Reasons:
  • RegEx Blacklisted phrase (2.5): could you give
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Guillaume Outters

79666820

Date: 2025-06-15 19:47:24
Score: 1.5
Natty:
Report link

Kafka doesn't guarantee ordering when you don't specify a message key. Why?

Reasons:
  • Blacklisted phrase (0.5): Why?
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: ahmed.ettoumi

79666819

Date: 2025-06-15 19:45:23
Score: 1
Natty:
Report link

Most likely, PyInstaller didn’t find cv2, not that it failed to recognize it as a package. Run the ls command in your terminal to see the files and directories in the current directory. If these don’t match your development environment, use the cd command to navigate to the directory where your .conda or .venv environment is located, so that PyInstaller can find cv2.

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

79666815

Date: 2025-06-15 19:38:22
Score: 2
Natty:
Report link

If you have already POJO you can use Instancio library with your POJO for data setup.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Enes Durmuş

79666814

Date: 2025-06-15 19:37:21
Score: 0.5
Natty:
Report link

Try this:

(^|\n).*?(\/\/|SQLHELPER)

for // comments. The match either ends with SQLHELPER, either with //. Then you can omit // matches by additional check.

Reasons:
  • Whitelisted phrase (-2): Try this:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Tadas Balaišis

79666806

Date: 2025-06-15 19:21:18
Score: 2.5
Natty:
Report link
Sub CrearPresentacionRenacimiento()
    Dim ppt As Presentation
    Dim slide As slide
    Dim slideIndex As Integer
    
    ' Crear una nueva presentación
    Set ppt = Application.Presentations.Add
    
    ' Diapositiva 1 - Título
    slideIndex = slideIndex + 1
    Set slide = ppt.Slides.Add(slideIndex, ppLayoutTitle)
    slide.Shapes.Title.TextFrame.TextRange.Text = "Artistas del Renacimiento"
    slide.Shapes.Placeholders(2).TextFrame.TextRange.Text = "Pintores, Arquitectos y Escultores"

    ' Diapositiva 2 - Introducción
    slideIndex = slideIndex + 1
    Set slide = ppt.Slides.Add(slideIndex, ppLayoutText)
    slide.Shapes.Title.TextFrame.TextRange.Text = "¿Qué fue el Renacimiento?"
    slide.Shapes.Placeholders(2).TextFrame.TextRange.Text = _
        "El Renacimiento fue un movimiento cultural nacido en Italia entre los siglos XIV y XVI. " & _
        "Se caracterizó por el regreso a los valores clásicos, el humanismo, y un gran florecimiento de las artes."

    ' Diapositiva 3 - Pintores
    slideIndex = slideIndex + 1
    Set slide = ppt.Slides.Add(slideIndex, ppLayoutText)
    slide.Shapes.Title.TextFrame.TextRange.Text = "Pintores del Renacimiento"
    slide.Shapes.Placeholders(2).TextFrame.TextRange.Text = _
        "• Leonardo da Vinci – La Última Cena, La Gioconda" & vbCrLf & _
        "• Rafael Sanzio – La Escuela de Atenas" & vbCrLf & _
        "• Sandro Botticelli – El nacimiento de Venus" & vbCrLf & _
        "• Miguel Ángel – Frescos de la Capilla Sixtina"

    ' Diapositiva 4 - Arquitectos
    slideIndex = slideIndex + 1
    Set slide = ppt.Slides.Add(slideIndex, ppLayoutText)
    slide.Shapes.Title.TextFrame.TextRange.Text = "Arquitectos del Renacimiento"
    slide.Shapes.Placeholders(2).TextFrame.TextRange.Text = _
        "• Filippo Brunelleschi – Cúpula de Florencia" & vbCrLf & _
        "• Leon Battista Alberti – Santa Maria Novella" & vbCrLf & _
        "• Andrea Palladio – Villas palladianas y tratados de arquitectura"

    ' Diapositiva 5 - Escultores
    slideIndex = slideIndex + 1
    Set slide = ppt.Slides.Add(slideIndex, ppLayoutText)
    slide.Shapes.Title.TextFrame.TextRange.Text = "Escultores del Renacimiento"
    slide.Shapes.Placeholders(2).TextFrame.TextRange.Text = _
        "• Donatello – David (bronce), Gattamelata" & vbCrLf & _
        "• Miguel Ángel – David (mármol), La Piedad" & vbCrLf & _
        "• Lorenzo Ghiberti – Puertas del Paraíso (Florencia)"

    ' Diapositiva 6 - Conclusión
    slideIndex = slideIndex + 1
    Set slide = ppt.Slides.Add(slideIndex, ppLayoutText)
    slide.Shapes.Title.TextFrame.TextRange.Text = "Conclusión"
    slide.Shapes.Placeholders(2).TextFrame.TextRange.Text = _
        "El Renacimiento fue una época de esplendor artístico y cultural. " & _
        "Sus artistas sentaron las bases del arte moderno y siguen siendo fuente de inspiración hasta hoy."

    MsgBox "Presentación creada con éxito.", vbInformation
End Sub

Reasons:
  • Blacklisted phrase (1): ¿
  • Blacklisted phrase (2): Crear
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: BRYAN AXEL URIAS GALAZ

79666796

Date: 2025-06-15 19:02:13
Score: 8.5 🚩
Natty: 4.5
Report link

I have the same problem, a CBA Columns.Autofit never returns, stops dead in its tracks. I've tried 1 dozen combinations of Range.AutoFit (and with the EntireColumn in the Range, too). This code ran literally >10,000 times, then stopped working, so it's an Excel problem, maybe with the VBA compiler. I only made code changes to a single module devoted to a completely different area of my program. I've reorganized my code to see if the bug was squashed, but it wasn't. any ideas?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1): any ideas
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user3422093

79666791

Date: 2025-06-15 18:53:11
Score: 1
Natty:
Report link

Im try to make 'downloader file' from shared link Google Drive, without API

All solutions dosent work :( Waven AI cant handle that.

Only works that code, but it download only one file (direct link to file), i cant download all files from folder.

import gdown
gdown.download("https://drive.google.com/uc?id=1PbM6k8211A4RFuBT7QEl0cHRWpgOFvLx", "file.mp3")
Reasons:
  • Blacklisted phrase (1): :(
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: 4nakter

79666784

Date: 2025-06-15 18:41:09
Score: 3.5
Natty:
Report link

You can download the email as a file and then use a web tool like mailscreenshot.com to generate an image file from that email for you.

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

79666770

Date: 2025-06-15 18:12:02
Score: 4.5
Natty: 4.5
Report link

An old thread, but I catch it anyways.

While the quick demonstration runs without error in GNU Octave (no matter what version I use), it doesn't result in a proper fit and the fitting constants are increadibly large (6.9415e+21 2.4425e+11 -7.7388e+21). Any idea why that is happening?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: A_guest

79666769

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

You need to change the max time to execute sql queries check this, i'm not sure oracle database have a attribute to change this but this can be helpful.

https://docs.oracle.com/en/database/other-databases/timesten/22.1/database-reference/sqlquerytimeout.html

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

79666764

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

corriger Erreur de serveur interne

Le serveur a rencontré une erreur interne ou erreur de configuration et n’a pas pu terminer votre demande.

Veuillez contacter l’administrateur du serveur à l’adresse suivante : [email protected] pour les informer de l’heure à laquelle cette erreur s’est produite, et les actions que vous avez effectuées juste avant cette erreur.

Plus d’informations sur cette erreur peuvent être disponibles dans le journal des erreurs du serveur.


Apache/2.4.58 (Win64) PHP/8.2.13 mod_fcgid/2.3.10-dev Server at localhost Port 80

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

79666759

Date: 2025-06-15 17:48:57
Score: 4
Natty:
Report link

just ask chatgpt, and tell him to explain it to you

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

79666755

Date: 2025-06-15 17:41:55
Score: 2.5
Natty:
Report link

I am working a lot with the M5Stack Family in Arduino and code(247) is displaying the degree symbol.

And yes, I have seen a lot of unanswered questions. Thank you Hayk!

PS: I have found it with same method, displaying all 255 characters :-)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Peter Obermeier