79780939

Date: 2025-10-02 13:01:22
Score: 2.5
Natty:
Report link

Both the "Autoupdate imported tables on model startup" option and the "Update tables data" button run the "importFromExternalDB()" function from ModelDatabase API (https://anylogic.help/api/com/anylogic/engine/database/ModelDatabase.html#importfromexternaldb). You can also use this function to force data updates at runtime. For a step-by-step guide, check out the Help article: https://anylogic.help/anylogic/connectivity/import.html#access

Usage example: https://www.anylogic.com/blog/importing-data-from-external-database-step-by-step-guide/?sphrase_id=7961888

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

79780934

Date: 2025-10-02 12:58:22
Score: 2
Natty:
Report link

I have been able to avoid timeouts by using port 587 instead 465 (source of the idea: https://github.com/chatwoot/chatwoot/issues/7869#issuecomment-1921519824). Turns out my provider supports port 587, even though they officially advertise 465 and for some reason 587 works.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Martin Modrák

79780927

Date: 2025-10-02 12:53:20
Score: 2.5
Natty:
Report link

open on http://localhost/pgadmin4 - it works fine for ubuntu.

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

79780926

Date: 2025-10-02 12:53:20
Score: 3
Natty:
Report link

in CNPG check the entries in pg-config.yml, you have to allow IP address or best is create new pod and test everything from there

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

79780924

Date: 2025-10-02 12:48:19
Score: 1
Natty:
Report link

This might have happened due to using "using namespace std" in multiple header files(.hpp). Ran into this issue and got rid of those lines from all my .hpp's and left one in my .cpp . Don't know why but there must be some kind of conflict happening that causes the compiler to throw this error, you could try this if you don't have a need for them in your headers

Reasons:
  • Whitelisted phrase (-1): try this
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gabriel

79780922

Date: 2025-10-02 12:46:19
Score: 0.5
Natty:
Report link
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>YouTube Single Play</title>
  <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
  <script src="https://www.youtube.com/iframe_api"></script>
</head>
<body>

<iframe src="https://www.youtube.com/embed/FKWwdQu6_ok?enablejsapi=1" frameborder="0" allowfullscreen id="video1" width="400" height="225"></iframe>
<iframe src="https://www.youtube.com/embed/FKWwdQu6_ok?enablejsapi=1" frameborder="0" allowfullscreen id="video2" width="400" height="225"></iframe>
<iframe src="https://www.youtube.com/embed/FKWwdQu6_ok?enablejsapi=1" frameborder="0" allowfullscreen id="video3" width="400" height="225"></iframe>

<script>
  var players = {};
  var currentlyPlaying = null;

  function onYouTubeIframeAPIReady() {
    $('#video1, #video2, #video3').each(function() {
      var id = $(this).attr('id');
      players[id] = new YT.Player(id, {
        events: {
          'onStateChange': function(event) {
            if(event.data == YT.PlayerState.PLAYING){
              // Pause other videos
              $.each(players, function(key, player){
                if(key !== id && player.getPlayerState() == YT.PlayerState.PLAYING){
                  player.pauseVideo();
                }
              });
            }
          }
        }
      });
    });
  }
</script>

</body>
</html>
Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Netizens Designer

79780904

Date: 2025-10-02 12:19:12
Score: 1.5
Natty:
Report link

According to an Apple Engineer, the change in behavior is caused by Swift Evolution change, namely SE-0444 Member import visibility.

See his official Answer here: https://developer.apple.com/forums/thread/802686?answerId=860857022#860857022

SOLUTION is to import Combine where a class conforming to Protocol ObservableObject is declared.

Reasons:
  • Whitelisted phrase (-1): SOLUTION is
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Gatti27

79780903

Date: 2025-10-02 12:18:12
Score: 3
Natty:
Report link

how are you?

I had a similar problem using this new version of Airflow. I scheduled the dag, but it wasn't executed in the worker and always remained in the queue.

Maybe adding this variable to your compose might help.

AIRFLOW__CORE__EXECUTION_API_SERVER_URL: 'http://airflow-apiserver:8080/execution/'

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): how are you
  • Low reputation (1):
Posted by: Gabriel Andrade

79780896

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

pip -Vis a quick way to check which Python environment pip is associated with.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is a
  • Low reputation (0.5):
Posted by: Anurag Ratna

79780891

Date: 2025-10-02 12:04:08
Score: 1.5
Natty:
Report link

Try:

Row(verticalAlignment = Alignment.CenterVertically) {
    Column() {
        Text("Hello World")
    }
    Column() {
        Text("first")
        Text("Hello World")
        Text("last")
    }
}

Output:

Output

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

79780878

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

For some reason iOS 26 requires explicit size for titleView. Add width and height constraints to aTitleView and it should appear on screen.

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

79780869

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

The bug it's setGalleryImg(`img${e.target.id}`);

That sets the state to the literal string "img1" / "img2"… not to the imported image module (img1, img2, etc.). As a result, React tries to load a URL literally called img1, which doesn’t exist, so the image “disappears”.

Use the useEffect to log your useState

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Pedro Henrique Cndido Ferreira

79780861

Date: 2025-10-02 11:27:59
Score: 2
Natty:
Report link

This rule for conditional formatting works in my sample sheet. This doesn't require VBA code.

=VLOOKUP(LEFT(E2,SEARCH(" ",E2)-1),$I$2:$J$8,2,0)*0.75<G2

conditional format pivot table

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

79780857

Date: 2025-10-02 11:22:58
Score: 3
Natty:
Report link

you can’t fully prevent browsers from offering to save passwords, but you can strongly discourage it in your login form with the correct HTML attributes and form setup.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dušan Djuriš

79780855

Date: 2025-10-02 11:22:58
Score: 0.5
Natty:
Report link

Isn't this whole thing being made needlessly complex?

What is the correct way to provide that callback with the latest state?

The trick is to store the variable outside React and take the value from that, perform whatever needed on that value, and then update the React variable for triggering in useEffect() etc. https://playcode.io/2567999

import React, {useEffect} from 'react';

// Maintain a copy of the variable outside React
var _count = 0

export function App(title) {
  const [count, setCount] = React.useState(0);

  useEffect(() => {
    intervalTimer = setInterval(() => {

      console.log(`React count=${count}`)
      console.log(`Non React count=${_count}`)

      // Latest value is always available in _count outside React
      // Perform whatever needed on that value
      _count += 1

      // Store in the React variable for rerender / useEffect retrigger etc
      setCount(_count);
    }, 3000);
  }, []);

  return (
    <div>
      Active count {count} <br />
    </div>
  );
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Isn't this who
  • Low reputation (0.5):
Posted by: zehawk

79780852

Date: 2025-10-02 11:18:57
Score: 1.5
Natty:
Report link

Unfortunately, borderRadius is only supported for 2D charts in Highcharts, not when you’re using 3D columns (options3d). In 3D mode, Highcharts draws custom SVG shapes (cuboids), so the built-in borderRadius option doesn’t apply.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Dominik Chudy

79780847

Date: 2025-10-02 11:10:55
Score: 3
Natty:
Report link

When creating your Pivot Table select "Add this data to the Data Model". pivot table

After creating the Pivot Table make sure that in Pivot Table Options "Show items with no data on rows" isn't selected. pivot table1

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: user22566114

79780844

Date: 2025-10-02 11:03:53
Score: 2.5
Natty:
Report link

hamming code work even if the two string have'nt the same length, most of your code are false, sorry...

(sorry for my language, i'm french...)

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

79780840

Date: 2025-10-02 10:57:51
Score: 1
Natty:
Report link

Found a way to make Azure SQL connections using private IP work:

Set the jdbc url to "jdbc:sqlserver://<private_ip>:1433;databaseName=<yourdatabase>;trustServerCertificate=true".

Set the SQL DB username to "<db_user>@<your_azure_sql_server>.database.windows.net".

It needs the SQL server name appended to the user name with an @ to let Azure SQL accept the connection.

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

79780837

Date: 2025-10-02 10:55:51
Score: 1
Natty:
Report link

There are a few issues with your code.

Firstly, the lifecycle event is

connectedCallback

not

connectedCallBack

and second, don't use regular quotes when you have line breaks.

use template literals instead. So the backticks (` `) instead of regular quotes (' ').

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

79780822

Date: 2025-10-02 10:43:48
Score: 1.5
Natty:
Report link

Here is a link that basically explains different methods of querying a database from a Spring Boot application. The last example ("Dynamic Queries Using Specifications") is very much like TypeORM I used in a NestJS application.

How Spring JPA Works and Writing Custom Queries

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

79780818

Date: 2025-10-02 10:36:46
Score: 3
Natty:
Report link

Try out mapatlas.xyz they also have an extensive geocoder that you could use. They also have a big free tier and give out grants to promesing projects!

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

79780817

Date: 2025-10-02 10:35:45
Score: 2.5
Natty:
Report link

Use
AppInfo.Current.ShowSettingsUI();

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (0.5):
Posted by: Libor B.

79780814

Date: 2025-10-02 10:30:44
Score: 1.5
Natty:
Report link

i think this way is true (:

i think this way is true (:

i think this way is true (:

i think this way is true (:

i think this way is true (:

<h1>hello world </h1>

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

79780812

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

This behaviour is actually documented in https://github.com/HangfireIO/Hangfire.InMemory?tab=readme-ov-file#maximum-expiration-time

Specifying the InMemoryStorageOptions fixed the problem. In my case:

builder.Services.AddHangfire(configuration => configuration
    .SetDataCompatibilityLevel(CompatibilityLevel.Version_180)
    .UseSimpleAssemblyNameTypeSerializer()
    .UseRecommendedSerializerSettings()
    .UseInMemoryStorage(new InMemoryStorageOptions { MaxExpirationTime = null })
    .WithJobExpirationTimeout(TimeSpan.FromDays(60))
);
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user27465760

79780809

Date: 2025-10-02 10:26:42
Score: 1
Natty:
Report link

Any service marked injectable that you want to import into another module make sure its in the exports array of its own module. Hope that helps

Reasons:
  • Whitelisted phrase (-1): Hope that helps
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: LumbusterTick

79780807

Date: 2025-10-02 10:23:42
Score: 1.5
Natty:
Report link

There is no running away from it , either upgrade to higher tier than M0 or run a Mongodb cluster with three replica sets using docker :https://github.com/crizstian/mongo-replica-with-docker .Also add a limit to avoid scanning too many results. Try using "keyword" for symbol.

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

79780804

Date: 2025-10-02 10:17:40
Score: 1.5
Natty:
Report link

My bad here. The patches were correctly applied but to a different branch to where I was expecting them. I was expecting them to appear on the devtool branch instead they were applied on the rpi-6.6.y branch which is the correct version my yocto config target. So, yeah I think I still need a better understanding of devtool.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Luca Faggion

79780799

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

Some Indy files were missing in the original release of Delphi 13.

They have been included in the 1st patch, mentioned here: https://blogs.embarcadero.com/rad-studio-13-september-patch-available/

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

79780795

Date: 2025-10-02 10:10:39
Score: 3.5
Natty:
Report link

Thanks for sharing such a detailed MRE!

I think the issue might be in using StaticRouter. Try and use MemoryRouter instead as it is the standard for extensions.

import { MemoryRouter as Router, Routes, Route, Link } from "react-router-dom";
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): Thanks for sharing
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: AliF

79780794

Date: 2025-10-02 10:10:39
Score: 1.5
Natty:
Report link

The system can’t start the graphical interface

-> press Ctrl + Alt + F2

-> login with your username & password.

and reinstall the Graphic drivers:

sudo apt-get update

sudo apt-get install --reinstall nvidia-driver- # for NVIDIA

sudo apt-get install --reinstall xserver-xorg-video-intel # for Intel

then reboot

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

79780772

Date: 2025-10-02 09:41:31
Score: 0.5
Natty:
Report link

The short answer then is: no, the backing memory being pinned or unpinned doesn't matter for unsafeFreeze or unsafeThaw usage patterns.

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

79780755

Date: 2025-10-02 09:17:25
Score: 2.5
Natty:
Report link

You need to select the database connection you'd like to use to run the script.

On the main toolbar, click the menu item highlighted below.

DBeaver menu bar with select data source menu item highlighted

In the dialog box that opens, double click the database connection you'd like to use.

select data source dialog box

Verified to work with DBeaver Version 25.2.1.202509211659, release date 2025-09-22.

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

79780744

Date: 2025-10-02 08:59:22
Score: 0.5
Natty:
Report link

Solved.

I submitted the problem to Copilot, Gemini, and Stack Overflow AI, and none of them were able to find the problem and fix it.

All I had to do was change the first two rules in onEnterRules to this:

...
{
  "beforeText": "^((?!\\/\\/).)*\\s*\\$[a-zA-Z0-9_]+\\([a-zA-Z0-9%_]+,$",
  "action": { "indent": "indent" }
},
{
  "beforeText": "^((?!\\/\\/).)*\\s*.*,$",
  "action": { "indent": "none" }
},
...

Basically, I added the end-of-line character $ to beforeText, and everything started working as expected again.

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

79780742

Date: 2025-10-02 08:51:20
Score: 2
Natty:
Report link

You can do this on your Text

Modifier.graphicsLayer {
    rotationZ = 90f
}
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dastan Beksultanov

79780738

Date: 2025-10-02 08:44:19
Score: 1.5
Natty:
Report link

Thank you everyone for your helpful feedback. I found the issue which was the section on datatable(rv$mtcars[1:min,1:3]. If the "min" variable is larger than the total number of rows after transposing, the DT rows will disappear entirely. I thought I had accounted for this through the line min<-min(paste(length(colnames(rv$data))), paste(length(rownames(rv$data)))) but I believe that by using "paste", this number was incorrectly calculated and the actual minimum was not correct. By removing "paste" from the calculation, the number was calculated correctly. I was not able to replicate this with mtcars so I don't know the exact cause. But at least the issue is solved.

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

79780735

Date: 2025-10-02 08:37:17
Score: 0.5
Natty:
Report link

In case your error handling is strict you might want to add a try construct around your mysqli_connect command:

try {
    $conn = new mysqli($server, $user, $pw, $db);
   /* do something ... */
} catch (mysqli_sql_exception $e) {
    echo "Connection failed: " . $e->getMessage();
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user2587656

79780727

Date: 2025-10-02 08:26:14
Score: 2
Natty:
Report link

Nevermind, I forgot the convert the Timestamp column into a datetime format via pd.to_datetime() , which is why it was so slow.

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

79780720

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

You cannot find problem without crash report. If you cannot connect to you computer then use some Crash reporting library eg: Firebase Crash Reports or Crashlytics.

Android App Crashing Before onCreate

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Oleksii Kyslytsyn

79780716

Date: 2025-10-02 08:12:11
Score: 2
Natty:
Report link

It happened the same for me, my problem was that I had an unresolved merge conflict. I've pressed on 'Abort' and then I could use again Fetch/Pull UI buttons.

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

79780712

Date: 2025-10-02 08:07:09
Score: 6.5 🚩
Natty: 5
Report link

I'm new on this platform and this conversation is a time ago, but I'm still struggling with that question. After I use the functionality database delete, I can still found the Database when I look into the device explorer (using Android Studio). What do I wrong? Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1.5): I'm new
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Christof M

79780692

Date: 2025-10-02 07:34:01
Score: 2
Natty:
Report link

I think the only "sure" solution is to rewrite the control as C++ for 64bit, but it would be one heck of work.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: tsgiannis

79780690

Date: 2025-10-02 07:31:00
Score: 1.5
Natty:
Report link

An easy way to find unmanaged resources is to set up a tag policy, e.g. "managed-by":"terraform" and add that tag to all resources in your terraform manifests. Then manually created resources won't have that tag and you'll find them in the list of non-compliant resources. That assumes, that your users don't manually add that tag to trick you, of course.
Here's how to set up a tag policy in Azure and via the azurerm terraform provider.

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

79780689

Date: 2025-10-02 07:27:00
Score: 0.5
Natty:
Report link

That's expected, JBoss already provide the javax.transaction API as part of Java EE, so it will be provided to your application as well as the one you have added to your application. That's why it is a bad practice to add JavaEE jars in your application. It should be in the provided scope of maven.

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

79780687

Date: 2025-10-02 07:23:59
Score: 2
Natty:
Report link

Just set the height of the div in css. Becuase yo floated the icon, it no longer acts to expand the div. You must put some css on your div like style="height:25px"

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

79780681

Date: 2025-10-02 07:14:56
Score: 1
Natty:
Report link

Root causes::

CommonJS interop: react-microsoft-clarity is published as CommonJS. With Vite (ESM-first), named imports like import { clarity } from 'react-microsoft-clarity' won’t work. You’ll see “Named export 'clarity' not found.”

SSR/top-level execution: Calling clarity.init at module top-level (e.g., in app/root.tsx) runs during SSR/build or in environments where window isn’t defined, causing “window is not defined.”

Recommended fixes::

Only initialize Clarity in the browser, after mount (inside useEffect).
Dynamically import the package to avoid CJS named export issues and to ensure code only runs client-side.
Use only Vite’s import.meta.env.VITE_* for client-accessible env vars.

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

79780680

Date: 2025-10-02 07:14:56
Score: 2
Natty:
Report link

Use panzoom extension: https://github.com/PLAYG0N/mkdocs-panzoom
My config in mkdocs.yml

plugins:
  - panzoom:
      always_show_hint: false
      hint_location: "top"
      full_screen: true
      include_selectors:
        - ".mermaid"
        - "img"
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Simon Druchinin

79780668

Date: 2025-10-02 06:53:51
Score: 0.5
Natty:
Report link

Source files are included using Kconfig. See this file for the relevant ones for azure_iot_hub. And from here we can see that azure_iot_hub_dps.c is only included if CONFIG_AZURE_IOT_HUB_DPS is set. Have you set this?

If you have set this, check your logs for any Kconfig Override Warnings just in case.
And lastly, I recommend having a look at build/<project_name>/zephyr/.config and look for the configuration, as that is where you see what configurations are set at the end of a build, so if it is set there, you know it is really set.

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Sigurd Hellesvik

79780667

Date: 2025-10-02 06:50:50
Score: 3
Natty:
Report link

Oracle has released this driver for gorm.

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Jean de Lavarene

79780664

Date: 2025-10-02 06:44:49
Score: 3.5
Natty:
Report link

I came across a handy plugin that lets you easily edit WooCommerce sort option labels and even hide the ones you don’t need. You can check it out here: https://wordpress.org/plugins/sort-options-label-editor-for-woocommerce/

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user1254268

79780663

Date: 2025-10-02 06:41:48
Score: 4.5
Natty: 6
Report link

What is the solution to this? It doesn't work.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What is the solution to this
  • Low reputation (1):
Posted by: Parti Albert

79780653

Date: 2025-10-02 06:16:43
Score: 1
Natty:
Report link

Lets break down this error:

Error: Error when using WinSCP to upload files: WinSCP.SessionLocalException: The version of: C:\Program Files (x86)\WinSCP\WinSCP.exe (5.19.6.0) does not match version of this assembly

C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WinSCPnet\v4.0_1.8.3.11933__2271ec4a3c56d0bf\WinSCPnet.dll (5.19.5.0).

As you see: One file path has (5.19.6.0) and the other file path has (5.19.5.0)

You need to have matching version .dll files in both paths.

Plus I would make sure your project has matching dll files also.

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

79780644

Date: 2025-10-02 05:50:37
Score: 1.5
Natty:
Report link

Title:
Allure report not showing screenshots from TestNG Listener

Body:
I’m trying to attach screenshots in my Allure report using a TestNG ITestListener.
Here is my listener code:

@Attachment(value = "Screenshot", type = "image/png")
public static byte[] attachScreenshot(WebDriver driver) {
    return ((TakesScreenshot) driver).getScreenshotAs(OutputType.BYTES);
}

@Override
public void onTestFailure(ITestResult result) {
    WebDriver driver = DriverManager_For_Jenkins.getDriver();
    if (driver != null) {
        attachScreenshot(driver);
    }
}

In my LoginPageTest, I also added:

@Listeners({
        RetryListener.class,
        ScreenshotListener.class,
        io.qameta.allure.testng.AllureTestNg.class
})
public class LoginPageTest extends CommonToAllTest {
    // test methods
}

and in testng.xml:

<listeners>
    <listener class-name="io.qameta.allure.testng.AllureTestNg"/>
    <listener class-name="org.example.listeners.RetryListener"/>
    <listener class-name="org.example.listeners.ScreenshotListener"/>
</listeners>

But when I generate the report with:

allure generate target/allure-results --clean -o target/allure-report
allure open target/allure-report

→ The report runs fine, but no screenshots are shown in the “Attachments” tab.

How can I correctly attach screenshots to Allure reports from a TestNG listener?


✅ Solution (to paste on StackOverflow)

The problem was caused by duplicate listener declarations.
I had added ScreenshotListener and RetryListener both in testng.xml and in the test class via @Listeners annotation.
Because of this, the listener was being triggered multiple times and Allure wasn’t attaching the screenshots properly.

Fix:

So I removed the @Listeners annotation from my test class and only kept the listeners in testng.xml:

<listeners>
    <listener class-name="io.qameta.allure.testng.AllureTestNg"/>
    <listener class-name="org.example.listeners.RetryListener"/>
    <listener class-name="org.example.listeners.ScreenshotListener"/>
</listeners>

After running tests and regenerating the report, screenshots started appearing under the “Attachments” section in Allure. ✅


Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): StackOverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Sheikh Hamid

79780633

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

What you are looking for is i18n-ally, a VSCode extension that will help you manage your translation files with numerous options. Give it a try.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What you are
  • Low reputation (0.5):
Posted by: Kasra

79780624

Date: 2025-10-02 04:46:24
Score: 2.5
Natty:
Report link

Handler dispatch failed: javax.xml.stream Factory Configuration Errer: Provider for class javax.xml.stream.XMLInputFactory cannat be created

Please solve stion my problem

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

79780617

Date: 2025-10-02 04:16:18
Score: 2.5
Natty:
Report link

The default timeout in Apigee is 55seconds until your backend returns a response. If the backend takes longer than this, you may experience 504 Gateway timeout errors. Backend latency could be due to blocked processes or any other reason. Hope this is helpful.

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

79780603

Date: 2025-10-02 03:23:08
Score: 0.5
Natty:
Report link

The only solution that works without hacking jquery ui is to add an event listener to the mousedown event of the year drop down:, eg

$(document.body).delegate('select.ui-datepicker-year', 'mousedown', function(){

var select = $(this);

var opts = select.children().get();

if ($(opts).first().val() < $(opts).last().val()){

select.empty().html(opts.reverse());

}

});

Reasons:
  • No code block (0.5):
Posted by: Programnik

79780600

Date: 2025-10-02 03:07:05
Score: 1.5
Natty:
Report link
fmt: 244 //video itag
afmt: 251 //áudio itag
seq: 3 //this is the 3rd qoe msg
bh: 10.039:30.764 //buffer healty. The buffer level at 10 sec is 30 sec
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Thiago Amaral Guarnieri

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