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

79666753

Date: 2025-06-15 17:38:54
Score: 2
Natty:
Report link

This solved the issue for me:

1. Made more free space on my hard drive. I cleared out 20GB+ of free space.
2. Restarted computer.
3. Ran Delphi as administrator.

Now it's compiling and working perfectly fine.

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

79666745

Date: 2025-06-15 17:27:51
Score: 1
Natty:
Report link

First of al you have to make sure the mod_headers module is installed on the apache server.

In the http requests the cookies are on the header Cookie:

Cookie: name=value

Then you should use the directive:

RequestHeader add|append|edit|edit*|merge|set|setifempty|unset header [[expr=]value [replacement] [early|env=[!]varname|expr=expression]]

For more info look at the url:

https://httpd.apache.org/docs/2.4/mod/mod_headers.html

RequestHeader edit Cookie test ""

should do the job.

Try it.

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

79666740

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

if none above helped try using Block copying using FileChannel.transferFrom

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

79666737

Date: 2025-06-15 17:14:48
Score: 3.5
Natty:
Report link

You can see the following examples.

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

79666726

Date: 2025-06-15 17:01:45
Score: 1
Natty:
Report link

Usually due to insufficient resources, it is lower than the low water level. You can refer to the following inspection ideas:

1. When a single task cannot run out, it may be that the SQL task is large, resulting in insufficient resources. In this scenario, we can first analyze whether the SQL task can be split in large and small areas; if it includes large table calculations, analyze whether there is any partition design to better utilize the partition cutting capability.

2. Currently, query whether there are many tasks. If there are many concurrent executions, analyze whether the task can be arranged staggered.

3. To analyze the usage of BE memory, that is, whether the memory is released normally, whether there is a memory leak, resulting in resource shortage, you can conduct preliminary analysis in combination with memtrakcer

https://doris.apache.org/docs/admin-manual/trouble-shooting/memory-management/memory-analysis/global-memory-analysis

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

79666718

Date: 2025-06-15 16:46:41
Score: 2.5
Natty:
Report link

With Spring AI v1.0.0, it is possible to pass it as application properties.
something like this-
spring.ai.vectorstore.pgvector.table-name=<TABLE_NAME>

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

79666707

Date: 2025-06-15 16:27:36
Score: 2
Natty:
Report link

Fix: Update to latest version of the RAD Studio IDE

--

After updating to the latest RAD Studio 10.3. This issue doesn't happen anymore.

It seems like it might have been a bug in earlier versions of the IDE. So just update your IDE.

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

79666700

Date: 2025-06-15 16:18:33
Score: 5.5
Natty: 4.5
Report link

Error: [Errno 13] Permission denied: 'C:\\Users\\Enter_Computers\\AppData\\Roaming\\jupyter\\runtime\\jpserver-4676-open.html'

please help,

how can solve it.

Reasons:
  • RegEx Blacklisted phrase (3): please help
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Habibur Rahman siddiqi

79666696

Date: 2025-06-15 16:15:32
Score: 1.5
Natty:
Report link
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: ScriptScorpion

79666695

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

I had exactly the same issue few weeks ago! Getting Apache's "It works!" page instead of the whoami response was driving me crazy.

@HansKilian is right that it's weird - your docker ps shows Traefik binding to port 80 correctly, so something else is intercepting the requests.

First, check what's actually using port 80:

sudo lsof -i :80

If you see Apache there, that's your problem - it's intercepting before Docker gets the request.

@YuvarajM's suggestion is solid - try moving Traefik to another port:

ports:
  - "8081:80"  # Change this line
  - "8080:8080"

Then test: curl -H "Host: whoami.docker.localhost" http://127.0.0.1:8081

Or go with @DavidMaze's path-based routing approach (honestly, this avoids all the DNS headaches):

labels:
  - "traefik.http.routers.whoami.rule=PathPrefix(`/whoami`)"

Access via: http://localhost:8081/whoami

@HansKilian mentioned checking your Docker context - this caught me once too:

docker context ls

Make sure the * is on default, not desktop-linux. Sometimes WSL does weird things with contexts.

@Z4-tier's debugging tip is gold - connect directly to the container:

docker exec -it traefik-docker-rp-reverse-proxy-1 sh
# Inside container:
wget -qO- --header="Host: whoami.docker.localhost" http://localhost

Also check Traefik's dashboard at http://localhost:8080 - you should see your whoami service listed there. If it's not showing up, there's definitely a config issue.

Since you got "Move Permanently" when testing @YuvarajM's suggestion, Traefik might be trying to redirect HTTP to HTTPS. Try adding -L to follow redirects:

curl -L -H "Host: whoami.docker.localhost" http://127.0.0.1:8081

The port change solution usually fixes both the Apache conflict and WSL networking issues. Let me know which approach works!

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @HansKilian
  • User mentioned (0): @YuvarajM's
  • User mentioned (0): @DavidMaze's
  • User mentioned (0): @HansKilian
  • User mentioned (0): @Z4-tier's
  • User mentioned (0): @YuvarajM's
  • Low reputation (1):
Posted by: DockSky

79666686

Date: 2025-06-15 15:50:26
Score: 2.5
Natty:
Report link

I found the answer myself. It is not possible in the Google Cloud Console. The permission needs to be given in the [Google Workspace Admin Console](https://admin.google.com/).

Go to the Admin Roles and assign an admin to the Groups Admin:

enter image description here

The next screen will show an option to add a service account and use the email address of the service account (in my example above [email protected]):

enter image description here

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

79666671

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

Why does this happen? Shouldn't the response be set by the time the load event fires? If not, where is this documented

The XMLHttpRequestUpload: load event is fired when the upload completes successfully. The full response is usually not received.

and what event is the correct event for getting the response?

You want to register a XMLHttpReques: load event. This event is fired when the whole request including the response completes successfully.

Reasons:
  • Blacklisted phrase (1): this document
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why do
  • High reputation (-1):
Posted by: jabaa

79666668

Date: 2025-06-15 15:30:22
Score: 2.5
Natty:
Report link

Use floors_map_widgets

It is designed to build paths between svg map points, but it also has the functionality of zooming in and clicking on objects

https://pub.dev/packages/floors_map_widget/score

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

79666657

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

For me, the error came from the fact that I was using both react-native-firebase and the Firebase SDK in my application.

I had previously decided to use react-native-firebase, but ended up using the Firebase SDK (so I imported auth from "firebase/auth").

To resolve the issue, I had to remove all "react-native-firebase" dependencies and then delete google-services.json

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