79781159

Date: 2025-10-02 17:23:25
Score: 0.5
Natty:
Report link

Thanks to @yurzui, the problem was with the:

spyOn(fakeVerificationSvc, "sendVerificationCode");

This prevents invoking the original method. To spy on the method and run it the .and.callThrough() must be used:

// IMPORTANT !!! => .and.callThrough();
spyOn(fakeVerificationSvc, "sendVerificationCode").and.callThrough();
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • User mentioned (1): @yurzui
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: AlexB

79781155

Date: 2025-10-02 17:17:23
Score: 1
Natty:
Report link

When compiling in Clipper/Harbor, you need to set the directive to include the correct file in your program.

In your case, the line should be:

#include "<whateverlibraryfileitis.ch"

Reasons:
  • Whitelisted phrase (-1): In your case
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: JohnP

79781134

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

One thing to add to this discussion. If your RandomFunction() is asynchronous, then the compiler will expect an await usage. Some people seem to use "_ = RandomFunction()" when they could use "await RandomFunction()". The compiler, I assume, replaces "_" with something like "temp-var = await RandomFunction();". It is also, as has been pointed out, marked as uninteresting.

So, the point seems to be to get the compiler to stop barking while saving typing. Maybe there is more to it than this?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Ugly Moe

79781129

Date: 2025-10-02 16:28:13
Score: 2
Natty:
Report link

You may need to wrap the dates with # symbols, see this discussion. For example, in the rendered query, #11/01/2016#

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

79781119

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

use this because that way you're actually telling the system from where to import
thanks to Abdulazeez Salihu for providing the info

from website.template import create_app
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Basicaly Idiot

79781115

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

I figured out the issue. The parameter, in this case, needed to be a single value, so I needed to do a LOD, which I what I ended up doing. The exact LOD I used was:

{ FIXED : DATE(MIN([Gift Date]))}

Reasons:
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-2): I figured out
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: juan alonso

79781091

Date: 2025-10-02 15:50:04
Score: 2
Natty:
Report link

I had this problem, the reason was that vs code was installed via FLATPACK(No, never do that), that is, paths and access rights would be limited. I reinstalled the solution via the terminal

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

79781062

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

how to calculate the scale size of sprite as per above info so that sprite look good

If your sprite is rendered by a Sprite Renderer component, and you know the pixel dimensions at which it "looks good", there's a nice trick you can use to "calculate the scale size" corresponding to those dimensions.

enter image description here

Change the Draw Mode to Sliced in the inspector. Then change the Scale to x: 1, y: 1, z: 1. Then input the size that you like under "Size".

Now when you change the Draw Mode to Simple, the Scale will automatically become the way you want it.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): how to
  • Low reputation (1):
Posted by: TOM

79781055

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

The reason also can be an old Python version on the target node. You can check which Python version the target host should have on the support matrix page

Version Control Node Python Target Python / PowerShell
2.19 Python 3.11 - 3.13 Python 3.8 - 3.13

PowerShell 5.1
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ararat

79781051

Date: 2025-10-02 15:10:54
Score: 4
Natty:
Report link

Change the System.IO.Ports nugget package to 8.0.0, as it is suggested by this similar issue in Microsoft forum: https://learn.microsoft.com/en-us/answers/questions/1621393/system-io-ports-only-availble-on-windows-but-im-us#:~:text=I%20changed%20the%20system.io.ports%20package%20to%20version%208.0.0

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

79781047

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

It is perfectly normal to have your API's URL in the front end code, it would not work otherwise.

However you should aways make sure that your api is only accesable by authorised users, you can do this by setting up a form of authentication, here is just one aricle i found that explains it, you can easily find other methods if you google api authentication.

The best answer is very dependant on your web app and backend but i would not go live unless you have something like that in place! Something else to consider is make sure your api's won't be exploited. If you use some sort of SQL watch out for SQL injections , etc. Make sure your API return doesn't contain data that the code does not need because that might expose infrastructure that might be exploited!

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

79781027

Date: 2025-10-02 14:52:49
Score: 0.5
Natty:
Report link

what do you think about the following example (running in spark-shell)?

scala> spark.range(1).select(current_timestamp().as("ts"), to_utc_timestamp(current_timestamp(), current_timezone()).as("ts_utc")).show(false)
+--------------------------+--------------------------+
|ts                        |ts_utc                    |
+--------------------------+--------------------------+
|2025-10-02 15:41:42.104336|2025-10-02 14:41:42.104336|
+--------------------------+--------------------------+
scala>

Pyspark should have the same functions.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): what do you
  • Low reputation (0.5):
Posted by: gyökkettő

79781024

Date: 2025-10-02 14:45:47
Score: 0.5
Natty:
Report link

You were looking at old documentation (you link is of Entities @0.17), but the current version used in U6.2 is @1.3.1.4 (or 1.4.0-pre.4 if you go experimental). In the package docs link you'll find there's a version dropdown menu which takes you to the documentation of a newer version. Select the aforementioned version and you'll see the current package docs.

As for the package DOTS Editor, it's not needed and it's really old (2021 old). It basically tries to pull in a very early version of Entities. I looked into its functionality and it is basically integrated into Entities now (e.g. baking GameObjects into Entities).

At any rate, just remove the DOTS Editor and perhaps reinstall Entities 1.3.14 and you'll be fine.

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

79781015

Date: 2025-10-02 14:38:45
Score: 1.5
Natty:
Report link

The expo-router library greatly disappointed me with its narrow abstraction and lack of support for nested components within the app directory. In Next.js projects, I implement '_extra_' directories alongside pages.

At the moment, it still has a long way to go to match the flexibility of Next.js's file routing. Its only advantage for me is its ability to automate deep linking.

Rollback to React Navigation...

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

79781013

Date: 2025-10-02 14:37:45
Score: 1
Natty:
Report link

As per the FAQs in the Google Maps API documentation, since the map you provided appears to be in India and you are attempting to display railway tracks or directions, I believe the issue you are encountering is due to the Indian Railway Catering and Tourism Corporation not being supported for transit directions.

There is a specific question in the documentation that asks: “In which countries are transit directions available?” The answer is:

"The Routes API supports all Google Transit partners, except the Indian Railway Catering and Tourism Corporation and those in Japan."

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: bobskieee

79781009

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

You have to login with a Microsoft account to enable sync, when logged in using github account, checking the synchronization settings (Tools > Options > Environment > Account) showed "Not logged into any account".

To fix this, Click on the picture of your account in the upper right corner > Add another account > Microsoft account

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

79781008

Date: 2025-10-02 14:28:43
Score: 4
Natty:
Report link

Thanks to a comment, discovered that the button was missing a position within the page, that's why it wasn't appearing.

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

79781006

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

MQL returns hierarchical JSON, SPARQL uses SELECT/WHERE; translation requires manually mapping MQL structure and Freebase properties to SPARQL.

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

79781003

Date: 2025-10-02 14:21:41
Score: 0.5
Natty:
Report link

Solved by adding saving the last position:

private Vector2 lastPos;

private void FixedUpdate()
{
    Vector2 v = rb.linearVelocity;
    Vector2 pos = rb.position;

    if (fixation.up && v.y > 0)
    {
        v.y = 0;
        pos.y = lastPos.y;
    }
    if (fixation.down && v.y < 0)
    {
        v.y = 0;
        pos.y = lastPos.y;
    }
    if (fixation.left && v.x < 0)
    {
        v.x = 0;
        pos.x = lastPos.x;
    }
    if (fixation.right && v.x > 0)
    {
        v.x = 0;
        pos.x = lastPos.x;
    }

    rb.linearVelocity = v;
    rb.position = pos;

    lastPos = rb.position;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: PinBIb

79780998

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

Yes, but you need to stay on the first line only. You can use -- to start your comment. You cannot use accents like "à".

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

79780964

Date: 2025-10-02 13:33:30
Score: 0.5
Natty:
Report link

What I did was a simple stupid fix that I didn't knew would ever fix this issue but hey it works so I can't complain. I have found that when adding a .coordinateSpace this fixed the issue in all screens affected by this bug the following code was my fix for this issue.

ScrollView(showIndicators: false) { ContentView() } .coordinateSpace(name: "scrollViewCoordinateSpaceName")

So I hope this can help some people out if you have any more questions feel free to ask happy coding to y'all :)

Reasons:
  • Whitelisted phrase (-1): hope this can help
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): What I
  • Low reputation (1):
Posted by: Ilyes Djari

79780962

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

When randomness is involved in output of a method, instead of checking values, you can validate the structure of the output. For your example, the validation method would check that:

  1. 3 lines are returned
  2. 1st line contains exactly 5 numbers which all are from 1 to 6
  3. 2nd line is total of each 5 numbers from previous line
  4. 3rd line is 2nd line divided by 5
Reasons:
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: RCDevs Security

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