79780599

Date: 2025-10-02 03:07:05
Score: 1
Natty:
Report link

Is there a way of doing this without an if-statement?

No.

"in either order" means that there are multiple possible result patterns.

There are 2 "in either order", so number of results is 4. However in this question case, the number of patterns to consider is 2. That is, swap target selection.

The results are not necessarily the same, and which pattern is valid depends on the inputs. So, it looks like that It is inevitable to select the pattern to be adopted based on the inputs.

(Of course, depending on the language you use, you may be able to write code that uses something other than if as a branching method, but it is not interest here.)

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there a
Posted by: fana

79780595

Date: 2025-10-02 02:50:01
Score: 0.5
Natty:
Report link

I had the same issue. The problem persisted even when trying the previous recommendations. Found that the issue was happening when the Listbox's property "ListStyle" was selected as "1 - frmListStyleOption". Hope this can help someone

Reasons:
  • Whitelisted phrase (-1): Hope this can help
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: BBKong

79780590

Date: 2025-10-02 02:39:00
Score: 2.5
Natty:
Report link

It sounds like the error is only occurring in certain sheets, even though the same function is present across multiple ones. That usually points to something in the specific sheet context rather than the function itself. A few things you might want to check.

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

79780589

Date: 2025-10-02 02:36:59
Score: 3.5
Natty:
Report link

Change While to lowercase while because Java keywords are case-sensitive.

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

79780574

Date: 2025-10-02 01:32:47
Score: 1.5
Natty:
Report link

To be able to log in to Google in a production application, don't forget to enable the OAuth consent screen for production.

You must visit https://console.cloud.google.com and go to MenuAPIs & ServicesOAuth consent screen.

Then select the "Audience" side menu and change the Publishing status to production. The review process can take up to 4-6 weeks.

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

79780564

Date: 2025-10-02 00:56:40
Score: 3.5
Natty:
Report link

textapply my permanent id log in account vince casuba have password detail tuchilak,and all my certification id is collecting my apps and station credit institution bank account

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

79780543

Date: 2025-10-01 23:53:26
Score: 4.5
Natty:
Report link

How to install that package? you should try

pip install pytest-warnings

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How to in
  • Low reputation (1):
Posted by: Fares Ayman

79780539

Date: 2025-10-01 23:35:22
Score: 1.5
Natty:
Report link
chatFirebaseModels
    .compactMap { element in  
        guard element.status != cancelled else { return nil } 
        return element
    }
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Raul

79780535

Date: 2025-10-01 23:26:20
Score: 4
Natty:
Report link

The Conda channel configuration order must be set before installing multiqc, according to official documentation (see the link below for more details).

https://docs.seqera.io/multiqc/getting_started/installation

Reasons:
  • Blacklisted phrase (1): the link below
  • RegEx Blacklisted phrase (1): see the link
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: BlackBioinformatician

79780534

Date: 2025-10-01 23:25:20
Score: 0.5
Natty:
Report link

ffmpeg.exe -i input.mp4 -map 0:v -c:v copy -map 0:a -c:a:0 copy -map 0:a -c:a:1 aac -b:a:1 128k -ac 2 output.mp4

As you can see, audio must be selected twice, the first time to copy it, the second time to convert and output it to a new stream.

Console will show:

Stream mapping:
  Stream #0:0 -> #0:0 (copy)
  Stream #0:1 -> #0:1 (copy)
  Stream #0:1 -> #0:2 (ac3 (native) -> aac (native))
Reasons:
  • Blacklisted phrase (1): this video
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dieter Schmitt

79780521

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

Short answer: No—you can’t change it. That leading chunk before .environment.api.powerplatform.com is an internal, immutable host prefix assigned to each environment/region. It isn’t your environment GUID and it isn’t something you can rename or shorten.

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

79780520

Date: 2025-10-01 22:35:08
Score: 1.5
Natty:
Report link

The most straightforward approach is to define `SPDLOG_ACTIVE_LEVEL` before including spdlog headers:

```c++

#define SPDLOG_ACTIVE_LEVEL SPDLOG_LEVEL_TRACE

#include <catch2/catch_all.hpp>

#include <spdlog/spdlog.h> int bar(int x)

{ SPDLOG_TRACE("{} x={} ", _PRETTY_FUNCTION_, x); return x + 1; }

TEST_CASE("Bar") { REQUIRE(bar(3) == 4);

} ```

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

79780513

Date: 2025-10-01 22:28:07
Score: 2.5
Natty:
Report link

in 2025, Rails 8, Use url('logo.png')

will be rewritten to use asset pipeline with latest sprockets-rails automatically

https://github.com/rails/tailwindcss-rails/issues/129

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

79780502

Date: 2025-10-01 21:58:00
Score: 2.5
Natty:
Report link

Hello if you have problem with flickering if it has redrawing then you can check my improvement against flickering.

Check out this post!

Enjoy your development!

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

79780501

Date: 2025-10-01 21:57:00
Score: 1
Natty:
Report link

Was able to get it working

by creating:
src/api/profile/controllers/profile.ts

export default {
  async update(ctx) {
    try {
      const user = ctx.state.user;
      if (!user) {
        return ctx.unauthorized("You must be logged in");
      }

      const updatedUser = await strapi.db.query("plugin::users-permissions.user").update({
        where: { id: user.id },
        data: ctx.request.body,
      });

      ctx.body = { data: updatedUser };
    } catch (err) {
      console.error("Profile update error:", err);
      ctx.internalServerError("Something went wrong");
    }
  },
};

src/api/profile/routes/profile.ts

export default {
  routes: [
    {
      method: "PUT",
      path: "/profile",
      handler: "profile.update",
      config: {
        auth: { scope: [] }, // requires auth
      },
    },
  ],
};

then on Roles "users & Permissions Plugin"
scroll down to find api::profile plugin
http://localhost:1337/admin/settings/users-permissions/roles/1

then enable "Update" on Profiles.

for the request:
PUT {{url}}/api/profile
header: Authorization: bearer <token>

body { "username": "updated name" }

It's working but I'm not sure if this was the recommended way.
If anyone has better answer please give. Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2.5): please give
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Evan

79780497

Date: 2025-10-01 21:53:59
Score: 1
Natty:
Report link

A better way you can send an array could be as follows

const arr = [1,2,3,4,5];
const form = new FormData();
arr.forEach(element => {
    form.append('name_of_field[]', element)
});
const result = await axios.post("/admin/groups", form, {
    headers: { 'Content-Type': 'multipart/form-data' }
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jorge Peraza

79780485

Date: 2025-10-01 21:29:54
Score: 2.5
Natty:
Report link

My assumptions

I am answering this question without a clear understanding of your deployment method, but I'll assume that:

Splitting the exe from the data.

As you mention in your question, it seems wise to separate the internal data from the program itself, and ideally work with 50MB executables, and a compressed 650MB internal data zip.

I would advise that when your executable runs for the first time: you check the existence of your internal data at a predefined location such as C:\Program Files\MyAppDeps v3_internal (as you pointed out in your question). If this data does not exist it is installed from an index to that specified location. Of course, you add version-checking logic that ensures the existing data is up to date, and if not, you let the use know they should update the data using your application when appropriate.

You could also have your executable check if it is up to date with version on the index and follow the same logic as above.

I hope this was useful, please let me know if I should expand on this solution.

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • RegEx Blacklisted phrase (1): I hope this was useful, please
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Clement Faisandier

79780484

Date: 2025-10-01 21:29:54
Score: 0.5
Natty:
Report link

If you want the requirements.txt to include only top dependencies you can use: pip list --not-required --format freeze > requirements.txt

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

79780481

Date: 2025-10-01 21:24:53
Score: 0.5
Natty:
Report link

In my case, I forgot to set the environment name of where my environment secret was defined, which cause my action not being able to access the environment secrets.

jobs:
  build:
    environment: github-pages
    runs-on: ubuntu-latest
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vishwaak Chandran

79780478

Date: 2025-10-01 21:18:52
Score: 3
Natty:
Report link

I've been having a similar issue @user51

Your screen recording isn't available anymore but in my case there appears to be an issue with the way the data export rule handles tables that follow the default workspace analytics retention settings.

Assuming you setting up the data export rule via the Azure UI here is a workaround that worked for me.

Open the Settings > Tables menu of your Log Analytics Workspace
For any Tables you wish to export that have an Analytics retention settings that follows the workspace default do the following:

Return to setting up your data export rule.

I have a private support case open with Azure support for this issue so I will update here if they respond with anything actionable.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Long answer (-1):
  • No code block (0.5):
  • Me too answer (2.5): having a similar issue
  • User mentioned (1): @user51
  • Low reputation (1):
Posted by: Kotomw

79780476

Date: 2025-10-01 21:12:50
Score: 1
Natty:
Report link

You can remove the legend in seaborn lmplot by setting:

sns.lmplot(x="x", y="y", data=df, legend=False)

Or, if it’s already plotted:

sns.lmplot(x="x", y="y", data=df).set(legend_out=False)
plt.legend([],[], frameon=False)

Best way: use legend=False directly in lmplot()

check this:https://www.nike.com/

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

79780472

Date: 2025-10-01 21:05:49
Score: 1
Natty:
Report link
  1. Yes, b2->bar() is safe.

  2. The this pointer inside Derived::bar() points to the start of the Derived object, not just the Base2 subobject.

  3. This is called pointer adjustment in multiple inheritance, and every major C++ compiler (GCC, Clang, MSVC) handles it correctly.

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

79780470

Date: 2025-10-01 21:04:49
Score: 1
Natty:
Report link

In R, you can plot multiple y variables with two lines on one axis like this:

plot(x, y1, type="l", col="blue")     # First line
lines(x, y2, col="red")              # Second line on same axis

👉 Use plot() for the first line, then lines() to add more.

check this:https://www.nike.com/

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

79780467

Date: 2025-10-01 21:00:48
Score: 0.5
Natty:
Report link

It might help:

https://github.com/NeonVector/rosbag_converter_jazzy2humble

This repository provides a detailed description of this issue and the solution. Try this converter for your rosbag2 "metadata.yaml" file. It worked for my rosbags.

Reasons:
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1): Try this
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ulyana

79780462

Date: 2025-10-01 20:56:47
Score: 2
Natty:
Report link

In my case ( Flutter 3.35.x), it was specifically caused by https://pub.dev/packages/shared_preferences_android/versions/2.4.13.

Downgrading to version 2.4.12 worked.
Since it is a transitive package, I've had to use dependency overrides

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

79780453

Date: 2025-10-01 20:44:44
Score: 1
Natty:
Report link

From my comment I made was solution so posting here.

To have SSIS packages run in Visual Studio you need to install Integration Services.

A link for how to install (may not be for all versions of VS):

https://learn.microsoft.com/en-us/sql/integration-services/install-windows/install-integration-services?view=sql-server-ver17

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

79780446

Date: 2025-10-01 20:30:40
Score: 4
Natty: 4.5
Report link

https://archive.org/details/biologicalsequen0000durb/page/28/mode/2up For future people looking this up, the 3-matrix DP solution here might help

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

79780436

Date: 2025-10-01 20:18:37
Score: 1
Natty:
Report link

COPY JOB DROP was failing because I had renamed the target tables after creating the Auto Copy job. COPY JOB stores the full job_text (including schema.table). When the table name no longer exists, Redshift can’t resolve the job’s underlying metadata and the drop errors out. Renaming the tables back to their original names let me drop the jobs successfully.

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

79780420

Date: 2025-10-01 19:56:32
Score: 2
Natty:
Report link

I know this is a thread that is already old at this point but thought I'd add my resolution, since this did not work for me. I'm running Python Functions w/ Python 3.12. Func Core Tools 4 on Windows and using VSCode. Same errors.

To resolve the error I had to:

1- Add a line to my local.settings.json file to listen for a debugger: here is the full .json file

{ "IsEncrypted": false, "Values": { "AzureWebJobsStorage": "UseDevelopmentStorage=true", "AzureWebJobsSecretStorageType": "files", "FUNCTIONS_WORKER_RUNTIME": "python", "AzureWebJobsFeatureFlags": "EnableWorkerIndexing", "languageWorkers__python__arguments": "-m debugpy --listen 0.0.0.0:9091" } }

2- install debugpy on my venv in the project directory.

Hope this helps someone in the same situation . I'm not sure why the issue started yet.. but it has solved it

Reasons:
  • Blacklisted phrase (1): did not work
  • Whitelisted phrase (-1): Hope this helps
  • RegEx Blacklisted phrase (1): Same error
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: a-win

79780412

Date: 2025-10-01 19:45:29
Score: 3
Natty:
Report link

I have written pyomo-cpsat, a Pyomo interface to CP-SAT, which can be found here:

https://github.com/nelsonuhan/pyomo-cpsat

pyomo-cpsat is limited to solving pure integer linear programs with CP-SAT (i.e., linear objective function, linear constraints, bounded integer variables). pyomo-cpsat does not implement other CP-SAT constraint types.

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

79780393

Date: 2025-10-01 19:16:22
Score: 1.5
Natty:
Report link

I think it's impossible to do it with bash. Bash creates another environment, something like another one terminal and executes commands there. And source only activates virtual environment in this new environment.

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

79780375

Date: 2025-10-01 18:46:16
Score: 0.5
Natty:
Report link

According to the documentation, TO_TIMESTAMP_MS and TO_EPOCH_MS can be used together to get the previous hour's timestamp.

TO_TIMESTAMP_MS : Return the time point obtained by adding the value of argument "milliseconds" as millisecond, to the time point'1970-01-01T00:00:00.000Z'.

TO_EPOCH_MS : Return the lapsed time (in milliseconds) from the time '1970-01-01T00:00:00.000Z' to the time "timestamp".

Select query given below should return data for NOW() and the previous hour .

SELECT * FROM sensor_data WHERE row_key BETWEEN TO_TIMESTAMP_MS(TO_EPOCH_MS(NOW())-3600000) AND NOW();
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: iot_builder

79780361

Date: 2025-10-01 18:37:13
Score: 1.5
Natty:
Report link

You can try to use the unset keyword on the font-size property. It will behave as inherit or initial depending on the situation.

font-size: unset

see: https://developer.mozilla.org/en-US/docs/Web/CSS/unset

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

79780352

Date: 2025-10-01 18:29:11
Score: 2.5
Natty:
Report link

I had the same thought and was looking for a solution, but I only found one place.

I think it will work : https://eufact.com/how-to-load-an-angular-app-without-using-systemjs-in-single-spa/

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ash

79780320

Date: 2025-10-01 17:31:58
Score: 0.5
Natty:
Report link

None of the above solutions work for very long strings in golang. I needed data near the end of a ~60k character string buffer, in library code (so I couldn't just add a print statement).

The solution I found was to use slice notation, in the Debug Console:

string(buf[:60000])

This shows the exact contents of the buffer, without truncation, up to the slice index. So if you use a big enough index, you can display an arbitrarily large string.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kevin Thompson

79780315

Date: 2025-10-01 17:24:56
Score: 3
Natty:
Report link

fixed using _mPlayer.uint8ListSink!.add(buf); instead of _mPlayer.feedUint8FromStream(buf);
it no longer crashes but after few seconds of recording the playback depreciates

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

79780294

Date: 2025-10-01 16:52:48
Score: 1.5
Natty:
Report link

Another edge case: if your Facebook Page is linked to an Instagram account, it will not appear in /me/accounts unless the connected Instagram account is also linked to the app.

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

79780292

Date: 2025-10-01 16:47:46
Score: 3
Natty:
Report link

Adding a docstring below the variable definition (even an empty one, i.e. """""") means it gets picked up and cross-referenced by mkdocs/mkdocstrings.

Credit to pawamoy on GitHub: https://github.com/mkdocstrings/mkdocstrings/discussions/801#discussioncomment-14564914

Screenshot of type hints being shown as a module attribute

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

79780291

Date: 2025-10-01 16:47:46
Score: 4
Natty:
Report link

لضبط المحور Y الأيمن في Highcharts ليعرض الطابع الزمني بالثواني والمللي ثانية بدءًا من الصفر، تحتاج إلى القيام بالخطوات التالية:

​تعريف المحور Y الأيمن وتعيين نوعه إلى datetime:

يجب عليك تعريف محور Y ثانٍ (أيمن) وتعيين خاصية type له لتكون 'datetime'. وتستخدم الخاصية opposite: true لوضعه على الجانب الأيمن.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: user31510778

79780290

Date: 2025-10-01 16:47:46
Score: 2
Natty:
Report link

You can’t directly assign one C-style array to another in C++, that’s why foo[0] = myBar; fails. Arrays don’t support the = operator.The reason memcpy works is because it just does a raw memory copy, but that’s not type-safe.A more C++-friendly fix is to use std::array for the inner array (so both the outer and inner parts are assignable), or use std::copy_n / std::to_array to copy the contents.

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

79780286

Date: 2025-10-01 16:36:44
Score: 0.5
Natty:
Report link

If using HTML5's XML Serialisation ("XHTML5"), you may be able to utilise The Text Encoding Initiative (TEI)'s <placeName> element, which tei-c.org/release/doc/tei-p5-doc/en/html/examples-TEI.html#DS demonstrates how to incorporate into an XML document.

Otherwise, I'd file an issue with the WHATWG at GitHub.

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

79780281

Date: 2025-10-01 16:25:41
Score: 2
Natty:
Report link

Can anyone decode this

2025-09-30T21:31:46.762Z: [assert] Only one of before/during/after transfer flags should be set. => [Logger:288]2025-09-30T21:31:46.775Z: [AppLifecyle] Time Taken to load CoreData 0.013909 => [Logger:282]2025-09-30T21:31:46.775Z: [DB] Core Data defaultDirectoryURL: file:///var/mobile/Containers/Data/Application/3FA3BC45-6905-493E-AA94-341E0217BC4D/Library/Application(null)upport/ => [GMCoreDataStack:76]2025-09-30T21:31:46.794Z: [Telemetry] Ecs Parsing Error with key SettingCodingKey(stringValue: "timeIntervalBetweenTwoToolTip", intValue: nil) => [GMAppDelegate:155]2025-09-30T21:31:46.794Z: [Telemetry] Ecs Parsing Error with key SettingCodingKey(stringValue: "startToolTipAfter", intValue: nil) => [GMAppDelegate:155]2025-09-30T21:31:46.982Z: [assert] Only one of before/during/after transfer flags should be set. => [Logger:288]2025-09-30T21:31:47.155Z: [AppLifecyle] Event: SDK, Message: (No message provided) => [Logger:282]2025-09-30T21:31:47.171Z: [Telemetry] Ecs Parsing Error with key SettingCodingKey(stringValue: "timeIntervalBetweenTwoToolTip", intValue: nil) => [GMAppDelegate:155]2025-09-30T21:31:47.171Z: [Telemetry] Ecs Parsing Error with key SettingCodingKey(stringValue: "startToolTipAfter", intValue: nil) => [GMAppDelegate:155]2025-09-30T21:31:56.278Z: [Conversation] Network: beforeId: Nil: totalCalls: 1 => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.337Z: [Conversation] CoreData: fetch start => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.337Z: [Conversation] * 1 ** CoreData: fetch process => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.337Z: [Conversation] checkForProcessMessages: debouce timer available so returning => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.338Z: [Conversation] Network: success: beforeId: Nil - lastMessageId - 166714495027377666 - messages: 1 => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.338Z: [Conversation] network: all-messages-loaded - reset-network-state => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.339Z: [Conversation] * 1 *** CoreData: load chat: helper - 1 => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.340Z: [Conversation] CoreData: queue - start - 1 - 0 => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.340Z: [Conversation] * 1 *** Number of required API calls are - 0 => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.340Z: [Conversation] * 1 *** Number of required API calls are updated - 0 => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.340Z: [Conversation] snapshotScroll - launch - bottom => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.341Z: [Conversation] * 1 *** performBatchUpdates Started - 1 - 0 - 0 => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.375Z: [Conversation] * 2 *** CoreData: load chat: helper - 1 => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.376Z: [Conversation] snapshotScroll - launch - bottom => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.376Z: [Conversation] * 2 *** performBatchUpdates Started - 1 - 1 - 0 => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.376Z: [Conversation] * 1 *** scroll - bottom(animated: true, newMessage: false) => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.376Z: [Conversation] * 1 *** performBatchUpdatesQueue batch update - step - without animated => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.376Z: [Conversation] * 1 *** performBatchUpdatesQueue batch update - start => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.376Z: [Conversation] * 1 *** performBatchUpdatesQueue onInterruptedReload => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.376Z: [Conversation] * 1 *** performBatchUpdatesQueue batch update step - onInterruptedReload - scroll Bottom =>

[ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.400Z: [Conversation] CV: performBatchUpdatesQueue batch update step - scroll Bottom => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.400Z: [Conversation] scrollToBottom(animated:) - false => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.400Z: [Conversation] scroll(indexPath:position:animated:) - [1, 0] - bottom - false => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.400Z: [Conversation] scrollToItem(at:at:force:) - [1, 0] - UICollectionViewScrollPosition(rawValue: 4) - false - false => [ConversationCollectionView:317]2025-09-30T21:31:56.400Z: [Conversation] * 1 *** performBatchUpdatesQueue batch update - completed => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.402Z: [Conversation] * 2 *** scroll - bottom(animated: true, newMessage: false) => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.402Z: [Conversation] * 2 *** performBatchUpdatesQueue batch update - step - without animated => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.402Z: [Conversation] * 2 *** changeSet is empty => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:56.402Z: [Conversation] * 2 *** performBatchUpdatesQueue batch update - completed => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:59.425Z: [Conversation] CoreData: queue - start - 1 - 0 => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:59.426Z: [Conversation] * 3 *** CoreData: load chat: helper - 1 => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:59.426Z: [Conversation] snapshotScroll - launch - bottom => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:59.426Z: [Conversation] * 3 *** performUpdatesAsync Started - 1 - 1 - 0 => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:59.426Z: [Conversation] * 3 *** performUpdatesAsyncQueue - start - bottom(animated: true, newMessage: false) - 1 - 0 => [ConversationViewModel+Telemetry:34]2025-09-30T21:31:59.431Z: [Conversation] * 3 *** performUpdatesAsyncQueue - completed => [ConversationViewModel+Telemetry:34]2025-09-30T21:32:08.374Z: [Conversation] scrollReachedToTop - setting .scrollFirstBeforeId - 166714495027377666 - -92.66666666666667 => [ConversationViewModel+Telemetry:34]2025-09-30T21:32:08.374Z: [Conversation] Scroll: beforeId - updated: 166714495027377666 - old: 166714495027377666 => [ConversationViewModel+Telemetry:34]2025-09-30T21:32:08.374Z: [Conversation] scroll-top: fetch-force - scrollBeforeId: nil => [ConversationViewModel+Telemetry:34]2025-09-30T21:32:08.374Z: [Conversation] LoadMoreMessages: Force: true - Reset: false => [ConversationViewModel+Network:29]2025-09-30T21:32:10.062Z: [Conversation] scroll-end - medium: 0.12583283188097408 => [ConversationViewModel+Telemetry:34]2025-09-30T21:32:10.062Z: [Conversation] LoadMoreMessages: Force: true - Reset: false => [ConversationViewModel+Network:29]2025-09-30T21:32:10.512Z: [Conversation] scrollViewDidEndDecelerating => [ConversationViewModel+Telemetry:34]2025-09-30T21:32:14.582Z: [Conversation] scroll-end - medium: 0.026101542835743525 => [ConversationViewModel+Telemetry:34]2025-09-30T21:32:14.582Z: [Conversation] LoadMoreMessages: Force: true - Reset: false => [ConversationViewModel+Network:29]2025-09-30T21:32:14.823Z: [Conversation] scrollViewDidEndDecelerating => [ConversationViewModel+Telemetry:34]2025-09-30T21:32:16.994Z: [AppLifecyle] Event: SDK, Message: (No message provided) => [Logger:282]2025-09-30T21:32:21.169Z: [Conversation] Network: beforeId: Nil: totalCalls: 1 => [ConversationViewModel+Telemetry:34]2025-09-30T21:32:21.217Z: [Conversation] CoreData: fetch start => [ConversationViewModel+Telemetry:34]2025-09-30T21:32:21.217Z: [Conversation] * 4 ** CoreData: fetch process => [ConversationViewModel+Telemetry:34]2025-09-30T21:32:21.217Z: [Conversation] checkForProcessMessages: debouce timer

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Can anyone
  • Filler text (0.5): 6666666666666
  • Low reputation (1):
Posted by: Jenn

79780274

Date: 2025-10-01 16:14:38
Score: 1
Natty:
Report link

A newer syntax, using variable-length argument lists:

return new $class(...$args);
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: Black Mantha

79780273

Date: 2025-10-01 16:12:38
Score: 3
Natty:
Report link

Update for 2025:

Withing the network section of the Dev Tools, Right click a column, then select sort by, then waterfall:

Screenshot of Chrome Dev Tools

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

79780265

Date: 2025-10-01 16:01:35
Score: 8.5
Natty: 7
Report link

I feel that the questions the original poster asked weren't adequately answered -- what is the CORRECT approach? Noted the mistakes (I made the same), so what is the correct way to marshal the types in from the native code, and subsequently (since adding public to the C++ class is also incorrect) how do you circumvent the "Foo is inaccessible due to its protection level"?

Thanks in advance.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): how do you
  • RegEx Blacklisted phrase (3): Thanks in advance
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Chris

79780237

Date: 2025-10-01 15:34:27
Score: 6 🚩
Natty: 6
Report link

Working in a closed system, can one copy the two .js files and run this locally?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Robert Doerr

79780235

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

(Wait for completion... pre-submitted) I use the following approach because my program was replacing a C program, which is naturally faster than Python, so I was looking for ways to optimize this operation. It's very similar to @zeitghaist's answer, but with a couple differences.

encodedData = None
dataLength = 0

with open(self.inputDataFilePath, 'rb') as inputDataFile:
    encodedData = inputDataFile.read()
    dataLength = len(encodedData)

asn1Decoder = asn1tools.compile_files(schemaFilePaths, codec) #BER in my case
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @zeitghaist's
  • Low reputation (0.5):
Posted by: Troy Niemeier

79780225

Date: 2025-10-01 15:19:23
Score: 1.5
Natty:
Report link

I'll add my two cents... I tried all the actions recommended in the other responses. Nothing worked (even an advanced restart via Diagnostics, for example).

The only solution for me was to change the SKU size to a larger one. The application now starts up fine, so I'm going to switch back to the smaller SKU.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: bastien enjalbert

79780216

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

This is now supported by Github in a bit of a round-about way (post here). Steps:

  1. Open repository Settings

  2. Rules → Rulesets

  3. New Ruleset → New Branch Ruleset

  4. Ruleset Name: “Linear History”

  5. Enforcement Status: Active

  6. Add Target → Include all branches

  7. Branchset rules → Require linear history (only)

  8. Create

The default when a GitHub branch is out of date will now be "Rebase branch".

NOTE: You may need to click "refresh" in the browser for each branch created prior to the above ruleset in order to see the button update. If you click "Update branch" instead of refreshing the page, you will cause that branch to no longer be updatable from the GitHub UI.

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

79780201

Date: 2025-10-01 14:53:16
Score: 2
Natty:
Report link

I was diagnosed with multiple sclerosis 6 years ago after experiencing weakness, numbness, and other symptoms. Despite numerous treatments, my condition worsened, and I was losing hope. Two years ago, my son recommended EarthCure Herbal Clinic( www. earthcureherbalclinic .com), where Dr. Madida Sam helped cure a friend’s mother of Parkinson Disease and HPV. I decided to give it a try, and within four months, all my symptoms reversed. It’s been two years, and I’m symptom-free, back to work, and living a healthy life. My doctors were amazed by my recovery. I highly recommend EarthCure, it’s been life-changing for me.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Milton Braga

79780189

Date: 2025-10-01 14:48:14
Score: 2
Natty:
Report link

Note that forbidden will also show if the endpoint is not correct.
If nothing works, make sure that your endpoint is correct

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

79780182

Date: 2025-10-01 14:41:13
Score: 2.5
Natty:
Report link

Simple Answer is

just use this instead of setTime(time-1) inside your function

setTime((time)=>time-1)

This should work, why?-->https://www.theodinproject.com/lessons/node-path-react-new-more-on-state

Checkout the portion of :How State Updates?

Reasons:
  • Blacklisted phrase (0.5): why?
  • Whitelisted phrase (-2): This should work
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Shubham Panjiyara

79780181

Date: 2025-10-01 14:41:13
Score: 0.5
Natty:
Report link

I found the solution.

The SQL Server connection must be created prior to creating the Sybase Server connection.

Reasons:
  • Whitelisted phrase (-2): I found the solution
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Keith Fosberg

79780180

Date: 2025-10-01 14:40:12
Score: 1.5
Natty:
Report link

Installing RSAT tools for Windows 10 version 1809 and later is slightly different than in previous versions. RSAT is now part of the operating system and can be added through Optional Features.

To enable the tools, select Start > Settings > Apps (if you're using Windows 10 version 22H2 or later, select System), then select Optional Features. After that, select the Add a feature panel and enter Remote in the search bar.

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

79780158

Date: 2025-10-01 14:19:07
Score: 0.5
Natty:
Report link

To emphasize the answer of @Albert221, as I had confusion about what the resulting content should look like. It should be as follows.

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          xmlns:tools="http://schemas.android.com/tools">
    <!-- Added by open_filex -->
    <uses-permission android:name="android.permission.READ_MEDIA_IMAGES" tools:node="remove" />
    <uses-permission android:name="android.permission.READ_MEDIA_VIDEO" tools:node="remove" />
    <uses-permission android:name="android.permission.READ_MEDIA_AUDIO" tools:node="remove" />
    <application
        android:label="App Name"
        android:name="${applicationName}"
        android:icon="@mipmap/ic_launcher">
        <activity
        .
        .
        .
        .
    </application>
</manifest>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Albert221
  • Low reputation (0.5):
Posted by: MubarakZade

79780152

Date: 2025-10-01 14:10:04
Score: 4
Natty:
Report link

You can either install cypress-wait-until for more flexible retries, or use a pure Cypress approach with cy.document().should(...) to ensure retry ability on both elements.enter image description here

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

79780147

Date: 2025-10-01 14:08:03
Score: 0.5
Natty:
Report link

Since php version 8.4.0 we can declare properties inside a interface but the properties must specified as readable, writeable or both

interface I
{
    // An implementing class MUST have a publicly-readable property,
    // but whether or not it's publicly settable is unrestricted.
    public string $readable { get; }

    // An implementing class MUST have a publicly-writeable property,
    // but whether or not it's publicly readable is unrestricted.
    public string $writeable { set; }

    // An implementing class MUST have a property that is both publicly
    // readable and publicly writeable.
    public string $both { get; set; }
}

// This class implements all three properties as traditional, un-hooked
// properties. That's entirely valid.
class C1 implements I
{
    public string $readable;

    public string $writeable;

    public string $both;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31609668

79780146

Date: 2025-10-01 14:07:03
Score: 0.5
Natty:
Report link

You need to add the below headers;

https://developers.google.com/youtube/terms/required-minimum-functionality#embedded-player-api-client-identity

enter image description here

'Referer': 'https://com.org.app', // Package/Bundle ID
'Referrer-Policy': 'strict-origin-when-cross-origin'
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Googlian

79780132

Date: 2025-10-01 13:52:58
Score: 13.5 🚩
Natty:
Report link

I have the same problem: I connect, and after 20 seconds the call drops. Did you solve the problem?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): Did you solve the problem
  • RegEx Blacklisted phrase (1.5): solve the problem?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Monya

79780124

Date: 2025-10-01 13:40:55
Score: 1
Natty:
Report link

Getting Camel and Spring JMS to behave is a delicate, and somewhat complicated, topic. I have some aging examples here on github. These are transacted routes, and will have the behaviors that you are looking for.

As to the jakarta naming, see the IBM article jms-jajarta.

Are you using Springboot? If not what container/platform are you using?

Look at some of my other posts regarding getting transacted routes. Let me know if you have any questions.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Doug Grove

79780121

Date: 2025-10-01 13:37:54
Score: 3
Natty:
Report link

User ferrybig from caddy.community could help me:

https://caddy.community/t/reverse-proxy-to-websocket-does-not-work-via-https/33022/3

The solution is:

registry.addEndpoint("/gs-guide-websocket").setAllowedOrigins("https://example.net");
Reasons:
  • Blacklisted phrase (1): help me
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: fhurlbrink

79780119

Date: 2025-10-01 13:35:53
Score: 0.5
Natty:
Report link

I also needed this functionality but in an environment without Python nor additional downloadable tools.

I ended up with the following solution using awk only.

cat myfile.md |awk '{if ($0~/^## /) {++count} if (count>1) {exit} print $0}'

It will stop printing lines after the second ## header 2 is found.

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

79780109

Date: 2025-10-01 13:24:50
Score: 1.5
Natty:
Report link

As mention in the comments this is due to a GHAction feature that prevents tokens and secrets from being passed as outputs.

With that information I managed to find a workaround that proved helpful to me.

Basically, you can set the token as outputs if you base64 encode it twice first. and then base64 decode twice in the caller workflow before using.

My solution ended up having two reusable workflows:
Token Retreiver(TR): Retreives the token and encodes it.
Token Decoded(TD): Calls TR and returns the decoded token to the caller workflow.

Then I just call the TD from my caller workflow.

This does send the token decoded between jobs so only do this if that is not a problem for you.

You can find an example here where I found the workaround: https://github.com/orgs/community/discussions/29880

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

79780101

Date: 2025-10-01 13:15:48
Score: 1
Natty:
Report link

The issue is that PowerShell's -replace operator uses regular expressions by default, and parentheses () are special characters used for grouping. Your pattern "()" is being interpreted as an empty capturing group, which doesn't match the literal string you're trying to remove.

You need to escape the parentheses to tell the regex engine to treat them as literal characters.

Escape the parentheses with a backslash (\).
or use .Replace

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

79780099

Date: 2025-10-01 13:14:48
Score: 2.5
Natty:
Report link

As of xarray v2025.09.1 h5netcdf is the default engine. Beside that users can use set_options with netcdf_engine_order to specify their order of relevance. Thanks @shoyer for implementing this!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @shoyer
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: kmuehlbauer

79780097

Date: 2025-10-01 13:13:47
Score: 2
Natty:
Report link

You don’t actually need a custom deserializer here. Jackson already knows how to handle Object.class out of the box.

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

79780095

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

Người lớn đã từng là trẻ em, nhưng trẻ em thì chưa từng làm người lớn”, dù là trong sinh hoạt hằng ngày, học tập, vui chơi hay đời sống tinh thần, thì con trẻ cũng rất cần nhận được sự lắng nghe và chia sẻ từ bố mẹ. Thực tế cho thấy rất nhiều ông bố, bà mẹ vẫn chưa thực sự lắng nghe con, vẫn chưa thực sự thấu hiểu những tâm tư, nguyện vọng của con trẻ.Bản thân mỗi đứa trẻ khi sinh ra đã là một cá thể riêng biệt, mỗi con sẽ có những tính cách và thói quen, tố chất khác nhau. Bởi vậy, cách dạy dỗ đối với mỗi đứa trẻ cũng khác nhau. Bố mẹ không thể áp sở thích, đường hướng học tập của trẻ này lên trẻ khác. Bố mẹ cũng không thể để một đứa trẻ thích vận động ngồi một chỗ làm thơ, hay bắt một đứa trẻ có năng khiếu nghệ thuật phải học tốt về các con số. Nếu như không lắng nghe, không trò chuyện với con, thì vô tình cha mẹ đang kìm hãm những ước mơ của con. Khi cha mẹ thật sự lắng nghe thì trẻ em sẽ dần dần học được cách chia sẻ những khúc mắc, hy vọng và mong muốn của mình với cha mẹ. Dù cha mẹ có trò chuyện tán gẫu với con về bất cứ vấn đề gì thì đó cũng là một cách thể hiện tình yêu và sự quan tâm của cha mẹ đối với trẻ. Kỳ thực, con trẻ suy nghĩ vô cùng đơn giản, chúng chỉ muốn hằng ngày cha mẹ quan tâm tới mình nhiều hơn, trò chuyện với mình nhiều hơn. Cho dù đó chỉ là một số chuyện vặt.

Tuy nhiên, cũng có những lúc vì gánh nặng mưu sinh mà cha mẹ lại sao nhãng đi việc trò chuyện thấu hiểu với con cái. Những lúc như vậy, thay vì trách cứ cha mẹ con cái hãy tiến lại gần trò chuyện, tâm tình với cha mẹ. Điều đó vừa giúp cha mẹ giải tỏa bớt áp lực mà còn giúp cha mẹ hiểu con cái hơn

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nam Trương

79780086

Date: 2025-10-01 13:04:45
Score: 2
Natty:
Report link

For news flutter version, in my case 3.35.0

use this path

Your_flutter_SDK\packages\flutter_tools\gradle\src\main\kotlin\FlutterExtension.kt

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

79780077

Date: 2025-10-01 13:01:44
Score: 1.5
Natty:
Report link

this error is happening because your Hangfire Dashboard is getting confused. You Likely have a [JobSource] attribute on a class, which automatically registers every method as a job. Where you also potentially have manual [Job("...")] attributes on one or more of your methods. This results in those methods having two names, which causes the dashboard to crash when it tries to display them.

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

79780076

Date: 2025-10-01 12:59:43
Score: 3
Natty:
Report link

add default_ccache_name = KEYRING:persistent:%{uid} in your krb5.conf under [libdefaults]. the cifs upcall needs to know where to look

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

79780067

Date: 2025-10-01 12:53:41
Score: 5
Natty:
Report link

Hello, there!

I got similar warnings about components "priority" & "resolving same names".
Right now I got those warnings removed by these steps:

// example
"shadcn-nuxt": "https://pkg.pr.new/shadcn-nuxt@1418"

Thanks and sorry in advance if It could not remove those warnings from your project.


Source:

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks and sorry in advance
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: JROCH

79780059

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

To update @vishesh answer:

There has since been implemented an isPasswordProtected() method in the PSTMessageStore class. It works exactly as described by @vishesh, by checking the 0x67FF identifier.

See (commit)

Minimal code example:

PSTFile pstFile = new PSTFile(filename);
System.out.println(pstFile.getMessageStore().isPasswordProtected());
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @vishesh
  • User mentioned (0): @vishesh
  • Low reputation (0.5):
Posted by: stoldo

79780058

Date: 2025-10-01 12:49:40
Score: 2
Natty:
Report link

It's unfortunately a Visual Studio bug.

Fixed it by replacing the resolution-patch.js in C:\Program Files\Microsoft Visual Studio\2022\Professional\Common7\IDE\CommonExtensions\Microsoft\TypeScript\eslint-server

Source: https://developercommunity.visualstudio.com/t/TaskFailed-ActivatinglanguageclientRazorLanguageServerClient:RazorLanguageServerClientfailedtoinitialize./10907203

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

79780054

Date: 2025-10-01 12:47:39
Score: 2.5
Natty:
Report link

Probably a Pytorch version mismatch,first try updating first

Cuz If I remember correctly the codeline

Torch.get_autocast_dtype is likely from Pytorch version 1.11 or higher

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Crimson-blue

79780052

Date: 2025-10-01 12:44:39
Score: 3
Natty:
Report link

“No credential available”

Device / emulator

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ramzi sammari

79780045

Date: 2025-10-01 12:41:38
Score: 1.5
Natty:
Report link

What works for me is to add "Apple Watch" destination to the color in Assets file in Xcode. By default it copies the "Any Appearance" color, but you can update it to dark in there. While this may seem like a duplicated color definition, it works smooth in code.enter image description here

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: Fiser33

79780026

Date: 2025-10-01 12:21:32
Score: 2.5
Natty:
Report link

To filter data in my app by OS, version and architecture I used os_info::get() this is what calls the console, now I use the plugin https://v2.tauri.app/plugin/os-info/ and everything is fine

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Diyorbek Ibragimov

79780011

Date: 2025-10-01 12:04:27
Score: 1
Natty:
Report link

So Apparently pass can't be used with If statements but ... can

for example, here, the python interpreter will not accept the if pass: statement

 while True:
     if pass :
         continue
     else:
         break

i get syntax error

     if pass :
        ^^^^
 SyntaxError: invalid syntax
 
 Process finished with exit code 1

but using ... it works.

 while True:
     if ... :
         continue
     else:
         break

which leads me to believe that ... has more use cases where pass would fail

I don't know why and I don't know if there are more scenarios like this but i bet there is, and if anyone can explain why this happens and if there's more scenarios like it that would be great.

Reasons:
  • RegEx Blacklisted phrase (1): i get syntax error
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: MTKing

79780008

Date: 2025-10-01 12:02:26
Score: 0.5
Natty:
Report link

Applying a plugin in afterEvaluate {...} or androidComponents {...} results in compilation error as it is too late to apply plugins in those blocks.

To check the active variant, we can query the tasks specific to our build and see if it contains its flavor name:

/**
 * Applies the Google Services plugin only if the build flavor is "fdroid",
 * determined by inspecting the Gradle task names.
 */
val tasks = gradle.startParameter.taskNames
if (tasks.any { it.contains("fdroid", ignoreCase = true).not() }) {
    pluginManager.apply(libs.plugins.google.services.get().pluginId)
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Roozbeh Zarei

79780004

Date: 2025-10-01 11:59:26
Score: 1.5
Natty:
Report link

You didn't specify the environement, but I think that it is safe to assume that you have regex on hand. Thus - also assuming that expected extensions are from a finite set - I would create a list of possible extensions and use regex to separate names from extensions.

On this sample set we have tar, tar.gz and zip extensions.

first.tar
second.file.tar
third.tar.gz
fourth.zip
fifth.stuff.zip

Using this Python regex '^(.*)\.(tar|tar\.gz|zip)$'gim you can have the file name in the first capture group and the extension in the second. When you process one filename at once, then m switch (multiline) can be omitted.

Is that something you wanted?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Trifo

79780002

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

Yes.

data "azurerm_client_config" "current" {}

resource "azurerm_storage_account" "storageaccount" {
  [...]
    
  network_rules {
    private_link_access {
      endpoint_resource_id = "/subscriptions/${data.azurerm_client_config.current.subscription_id}/providers/Microsoft.Security/datascanners/StorageDataScanner"
      endpoint_tenant_id   = data.azurerm_client_config.current.tenant_id
    }
  }

}

This is probably related to a forced malware scanning on the Storage account?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: tore-

79780000

Date: 2025-10-01 11:52:24
Score: 0.5
Natty:
Report link

I ran into the same issue.

The documentation (https://tomcat.apache.org/tomcat-11.0-doc/config/context.html) says:

usePartitionedShould

the Partitioned flag be set on session cookies? Defaults to false.

It should work by adding the attribute usePartitioned="true" to the <Context> element in your context.xml. Unfortunately, it doesn't work. I submitted the following bug: https://bz.apache.org/bugzilla/show_bug.cgi?id=69836

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Marc P.

79779997

Date: 2025-10-01 11:51:24
Score: 3.5
Natty:
Report link

I believe this particular solution exposes the function to unauthorized invocation. While we can implement authentication checks inside the function itself, an external bombardment of endless invocations could still result in significant billing charges before those checks fail.

We want to check for auth during the preflight request and this is what the oncall functions are developed for right? Automatic CORS and auth handling, how to get that to work... I am facing the unauthorized error as soon i tun auth required on, although there is an authorization header present when calling the function from the client.

Server side error:
textPayload: "The request was not authenticated. Either allow unauthenticated invocations or set the proper Authorization header. Read more at https://cloud.google.com/run/docs/securing/authenticating Additional troubleshooting documentation can be found at: https://cloud.google.com/run/docs/troubleshooting#unauthorized-client"

Client side error:
enter image description here

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (1): I am facing the unauthorized error
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Bas Veltenaar

79779996

Date: 2025-10-01 11:50:23
Score: 2.5
Natty:
Report link

NET Core dropped AppDomains to stay lightweight, as they were too heavy for their intended use. While CoreCLR still uses them internally, no AppDomain APIs are exposed to developers. For isolation, Microsoft recommends using separate processes or containers instead.

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

79779984

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

You can try to use the mingw version of the library (when you download the mingw the lib is empty) compiled from the sourcecoude. OscarL has published a repo on github where he publishes the code for the lib and how to compile it. https://github.com/OscarL/MatrixSS/tree/master, https://github.com/OscarL/MatrixSS/blob/master/scrnsave/scrnsave.c

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

79779980

Date: 2025-10-01 11:37:20
Score: 1.5
Natty:
Report link
a = set([1,3,4])
b = set([5,6,7])
c = a.union(b)
# {1, 3, 4, 5, 6, 7}
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: abdelrahman aboneda

79779977

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

For me the solution for the error (Library 'Permission-LocationWhenInUse' not found) was to delete these (.a) under Xcode -> project -> target -> general -> frameworks, libraries
enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ibrahim kehel

79779969

Date: 2025-10-01 11:29:18
Score: 1.5
Natty:
Report link

A method available from pandas version 2.0. is "convert_dtypes", which will find the best type match for the data. So as you posted in the question this will take care of objects converted to float or integer if that matches the column data.

df = df.convert_dtypes()

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

79779964

Date: 2025-10-01 11:21:16
Score: 4
Natty:
Report link

Just use gemini-flash-latest

All models: https://ai.google.dev/gemini-api/docs/models

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

79779963

Date: 2025-10-01 11:21:16
Score: 2
Natty:
Report link

Hey Manorka,
I was getting the issue not exactly same but same. The issue related to Gradle version try downgrading the version to 8.10.1 (best for RN0.79) and kotlin-version 2.1.20 (Suggested Compatible).

If not working, just try uninstalling detox and install afresh with latest stable version.

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

79779960

Date: 2025-10-01 11:18:15
Score: 2.5
Natty:
Report link

The topic is as old as hell, but will leave it here just for a case =)

Here's my way to do this https://github.com/kpliuta/termux-web-scraper.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: That One Doggie

79779959

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

In the case you are describing, I'd suggest you connect directly to the Access Database and run your queries there, instead of importing to AnyLogic internal database. This way you will be directly connected to the external database and would not need to be updating / importing / refreshing.

https://anylogic.help/anylogic/connectivity/creating-a-data-source.html

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

79779955

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

You can hide button contains the 'X' icons (lucide-x) using Tailwind's JIT and attribute selectors.
Use this utility: [&_button:has(svg.lucide-x):hidden in the DialogContent classname

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

79779950

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

BEGIN:VCALENDAR

VERSION:2.0

PRODID:-//ChatGPT Calendar Export//EN

BEGIN:VEVENT

DTSTART:20251005T100500

DTEND:20251005T103000

SUMMARY:Sono 1 - 296K

END:VEVENT

BEGIN:VEVENT

DTSTART:20251005T122000

DTEND:20251005T124500

SUMMARY:Sono 1 - 122K

END:VEVENT

BEGIN:VEVENT

DTSTART:20251024T102400

DTEND:20251024T104500

SUMMARY:Sono 1 - 415K

END:VEVENT

BEGIN:VEVENT

DTSTART:20251025T102500

DTEND:20251025T104500

SUMMARY:Sono 1 - 205K

END:VEVENT

BEGIN:VEVENT

DTSTART:20251031T103100

DTEND:20251031T105000

SUMMARY:Sono 1 - 120K

END:VEVENT

END:VCALENDAR

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: K B v.7

79779948

Date: 2025-10-01 11:03:12
Score: 0.5
Natty:
Report link

If you want to do it in your CI/CD pipeline you can do the following:

# Install resx sorter tool
dotnet tool install keboo.resxsorter --global

# Use the tool with all resx files
Get-ChildItem -Path . -Filter "*.resx" -Recurse | ForEach-Object {
    ResxSorter -i $_.FullName
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alex Logvin

79779947

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

Now, requirement.txt should look like

numpy==1.24.0
torch==2.0.1
torchvision==0.15.2
....
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Santhosh S

79779941

Date: 2025-10-01 10:56:10
Score: 1
Natty:
Report link

To add (after spending hours debugging) If you are using serverless-appsync-simulator as well, you still need to include appSync under custom.

custom:
  appSync: ${self:appSync}
  appsync-simulator:
    apiKey: ${env:APPSYNC_SIMULATOR_API_KEY}
    location: '.webpack/service'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Greg Wakefield

79779939

Date: 2025-10-01 10:55:09
Score: 2
Natty:
Report link

This is SO annoying!

I would like to disabled all notifications except where I am mentioned, OR for all merge requests created for a specific group. However, there is no way to do this as the custom option also sends me everything from the group as I am the group owner and therefore a participant!

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

79779938

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

This could be due to stats truncation. Default MaxValueLength for a given column stat is 26 Bytes on TD17.20 for example.

If the total Byte size being reserved by your column spec is greater than 26 Bytes, then you need to explicitly add the "MaxValueLength 30" (or more than 30, depending on total Byte size of the column or combined columns in the column stat).

Byte Size is reportyed in dbc.ColumnsV. Just be aware that the "VAR" data types have a 2-Byte extra overhead for carrying the data length information. So Varchar(2) would reserve 4 Bytes.

For example:

Collect stats using no sample and no threshold and maxValueLength 30

column (My_8Byte_Column, My_12Byte_Column ,My_10Byte_Column) -- Adds up to 30 Bytes

on MyTable_01;

Collect stats using no sample and no threshold and maxValueLength 32

column (My_14Byte_Column, My_18Byte_Column) -- Adds up to 32 Bytes

on MyTable_01;

Collect stats using no sample and no threshold --(no need for MaxValueLength up to 26 Bytes)

column (My_16Byte_Column, My_10Byte_Column) -- Adds up to 26 Bytes

on MyTable_01;

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Etienne Stieger

79779936

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

Funds recovery is real and possible. It is only not possible when you're in a wrong hand it's unfortunate that the increasing number of unrealistic recovery firm makes it look as if all funds recovery firm are fake. I can recommend you to a recovery firm who helped me to recover my lost Bitcoin, I use to believe they're all fake until Crypto Funds Recovery helped me to trace, track and retrieve my stolen BTC without any upfront charges I only sent 10% commission after recovery. You can reach them through the email below.....

[email protected]

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