79609739

Date: 2025-05-07 03:15:12
Score: 0.5
Natty:
Report link

Get yourself a copy of IPC-2221 Generic Standard on Printed Board Design (previously called IPC-D-275). My copy is printed in February 1998. Published by the Institute for Interconnecting and Packaging Electronic Circuits. It is 98 pages, very readable and well-organized. It has all sorts of good stuff like trace width, thickness, spacing, component connections, etc. For just trace widths there are several online trace width calculators provided for free by some circuit board companies, like AdvancedPCB. On their website the even cite IPC-2221 as their source.

In addition to these consideration there are also application-specific considerations having to do with high frequency signals and noise pickup. For example, a trace carrying an Radio Frequency signal cannot be too long or the trace itself will start acting like a transmission line.

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

79609733

Date: 2025-05-07 03:00:09
Score: 0.5
Natty:
Report link

Finally figured it out. @Vijay's comment gave me an insight where the issue may be. The solution was in the way the request was getting posted. By default, I had the request headers default to 'multipart form data'.

I had to update the post request function to have parameterized contenttype value:

public [return] DoPostRequest([param1], [param2], ContentTypes contentType)
{
    ...
    [httpclient].DefaultRequestHeaders.Add("ContentType", contentType.ToString());
    ...
}

where: ContentTypes is

public class ContentTypes
{
    public static readonly ContentTypes Name = new("ContentType");
    public static readonly ContentTypes JSON = new("application/json");
    public static readonly ContentTypes XML = new("application/xml");
    public static readonly ContentTypes TEXT = new("text/plain");
    public static readonly ContentTypes HTML = new("text/html");
    public static readonly ContentTypes FORM_URLENCODED = new("application/x-www-form-urlencoded");
    public static readonly ContentTypes MULTIPART_FORM_DATA = new("multipart/form-data");

    public string Value { get; }

    private ContentTypes(string value) => Value = value;

    public ContentTypes()
    {
    }

    public override string ToString() => Value;
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Vijay's
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: the.herbert

79609731

Date: 2025-05-07 02:58:08
Score: 0.5
Natty:
Report link

This way works:

alertmanager:
  config:
    global:
      resolve_timeout: 5m
    route:
      receiver: 'slack-notifications'
      group_by: ['alertname']
      group_wait: 10s
      group_interval: 5m
      repeat_interval: 1h
    receivers:
      - name: 'slack-notifications'
        slack_configs:
          - api_url: 'https://hooks.slack.com/services/XXXXXXXX/YYYYYYYYY/ZZZZZZZZZZZZZZZZZZ'
            channel: '#alert-channel'
            send_resolved: true
            username: 'Prometheus'
            text: "{{ .CommonLabels.alertname }}: {{ .CommonAnnotations.description }}"
...
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: realworldchat

79609720

Date: 2025-05-07 02:36:03
Score: 4.5
Natty:
Report link

I was very impressed by SVG Path Visualizer with step-by-step explanation of paths:

SVG Path Visualizer screenshot

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

79609704

Date: 2025-05-07 02:10:58
Score: 0.5
Natty:
Report link

The most likely issue is that- because your collision detection is discrete rather than continuous- there are situations where an object moves from one side of a hitbox to another in a single step. You can always throw more steps at the problem so that fast-moving objects move less during each physics step. This doesn't completely prevent misses, it just means that objects would have to move faster in order to miss.

Another potential issue is that the reflection angle seems to be based entirely on the incident angle and not the normal of the hit surface. This will create unrealistic results and could cause objects to be sent further into each other upon colliding.

If you want the actual solution, it's a swept volume test. There are plenty of resources out there for implementing this yourself, so I'll skip right to the Python libraries. Google gives me pybox2d, or for 3D, pybullet, which in turn uses OpenGJK.

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

79609693

Date: 2025-05-07 01:53:54
Score: 2
Natty:
Report link

I would try removing await, await creates a new promise that your code isn't fulfilling so it just stops and doesn't respond back, also you might want to try using

(im new to await so I might have explained that wrong)
"interaction.deferReply();" in the future this give your bot up to 15 minutes to respond

i hope i helped!

id try removing await and just use:

 interaction.reply('Pong!');
Reasons:
  • RegEx Blacklisted phrase (1.5): im new
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: skyealar

79609690

Date: 2025-05-07 01:51:53
Score: 1
Natty:
Report link

Interesting enough after nearly 5 years passenger still does not support feature to upgrade Websockets, in this case socket.io.

I have used PM2 to run nodejs app and it requires terminal access, so may not be suitable (and solution) for everyone. I would not call it a solution.

Another way is if hosting company can add proxy pass for websockets in vHost file - this requires terminal acces from their end, restarting apache etc. Again something that isn't end-user friendly.

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

79609674

Date: 2025-05-07 01:15:43
Score: 3.5
Natty:
Report link

for local repeated usage, can have a look at https://maven.apache.org/download.cgi#Maven_Daemon

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Cause Chung

79609665

Date: 2025-05-07 00:56:38
Score: 4
Natty:
Report link

nvm the issue was just because I was missing spacing in the rgb values

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MistyDreamer

79609664

Date: 2025-05-07 00:55:38
Score: 0.5
Natty:
Report link

I found the solution. Apparently there is a reporter argument in tar_make() . If I call instead tar_make(reporter = "terse") , then the progress bar disappears.

Reasons:
  • Whitelisted phrase (-2): I found the solution
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: jvlandingin

79609656

Date: 2025-05-07 00:39:34
Score: 2
Natty:
Report link

yep was quite unexpected to me ...

something is null before and then not null after in the table ...
I'd say it's a BigQuery bug

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

79609651

Date: 2025-05-07 00:26:32
Score: 3.5
Natty:
Report link

Take a look at Primi (https://github.com/smuuf/primi) this is a scripting language written in PHP & interpreted in PHP.

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

79609642

Date: 2025-05-07 00:02:27
Score: 3.5
Natty:
Report link

Okay, my original question has been clearly answered, so this thread can be closed.
1. I now know about my_vec[0].get() for obtaining the pointer that I needed in this case.
2. I understand that I should not use C-style casts in C++; I have expressed the reason that I used it here, which was to debug the errors that I was getting.
3. Thank you all for the pointers (so to speak) to references on smart pointers in C++; I will indeed be pursuing these references further, to enhance my understanding of how to properly use them!!
4. and once again, I deeply thank the members of this community for your (sometimes gruff, but always helpful) assistance in solving my issues with this language; my earlier posts that led up to this one, were somewhat ambiguous and rambling - that can be a result of not initially knowing quite what I am trying to ask about, and what the correct terminology is... Nevertheless, you pursevered and stuck with me, and I now understand what I need to do, to proceed with my C++ development...

Long Live stackoverflow !!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Gorlash

79609636

Date: 2025-05-06 23:56:25
Score: 1.5
Natty:
Report link

HRESULT 0x80070002 means ERROR_FILE_NOT_FOUND, indicating a missing or misconfigured file. Fix it by verifying file paths, running sfc /scannow, or resetting Windows Update components.

Ever faced frustrating system errors? Let’s discuss troubleshooting strategies!

👉 Upgrade your productivity with AI-powered tools: Get Microsoft Office 2024 Here

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Joe Mahlow

79609617

Date: 2025-05-06 23:24:19
Score: 0.5
Natty:
Report link

A proposed solution (GitHub project) working on JDK 11 and later with corresponding version 11 of the openjfx libraries.

The gist is that you get a hold of the reference by creating and initializing the gui app yourself, not let Application.launch create the instance:

class Main {
    void work() {
        // Reference
        Gui gui = new Gui(this/*for callbacks*/, "data", 'U', "initialize", 17, "with");
        // Start
        Platform.startup(() -> gui.start(new Stage()));    
    }

    // Allow the Gui-app to return results by means of callback
    void reportResult(double d, String desc) {
    }
}

class Gui extends javafx.application.Application {
//... 
// has a button that calls `Main.reportResult()` when pressed virtually returning values as any function call.
}

The project covers the use case of repeatedly/sequentially calling the gui utility application from within the main workflow app.

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

79609611

Date: 2025-05-06 23:18:17
Score: 0.5
Natty:
Report link
using Moq;
using Xunit;
using System.Data;
using Oracle.ManagedDataAccess.Client;

public class CConexionContextTests
{
    [Fact]
    public void GetConnection_ShouldOpenConnection_WhenConexionIsNull()
    {
        // Arrange
        var mockOracleConnection = new Mock<OracleConnection>();
        var mockConexionContext = new Mock<CConexionContext>();

        // Simulamos que la cadena de conexión es la esperada
        mockConexionContext.Setup(c => c.getStringConnection()).Returns("Data Source=someSource;User Id=someUser;Password=somePass;");
        
        // Simulamos el comportamiento de la conexión Oracle
        mockOracleConnection.Setup(c => c.Open()).Verifiable();
        mockOracleConnection.Setup(c => c.State).Returns(ConnectionState.Open);

        // Act
        var result = mockConexionContext.Object.GetConnection(ref mockOracleConnection.Object);

        // Assert
        mockOracleConnection.Verify(c => c.Open(), Times.Once()); // Verifica que Open haya sido llamado exactamente una vez.
        Assert.Equal(ConnectionState.Open, result.State); // Verifica que la conexión esté abierta.
    }

    [Fact]
    public void GetConnection_ShouldReturnExistingConnection_WhenConexionIsNotNull()
    {
        // Arrange
        var mockOracleConnection = new Mock<OracleConnection>();
        var mockConexionContext = new Mock<CConexionContext>();

        // Configurar la conexión mockeada
        mockOracleConnection.Setup(c => c.State).Returns(ConnectionState.Open);
        mockConexionContext.Setup(c => c.getStringConnection()).Returns("Data Source=someSource;User Id=someUser;Password=somePass;");
        
        // Act
        var result = mockConexionContext.Object.GetConnection(ref mockOracleConnection.Object);
        
        // Assert
        Assert.Equal(ConnectionState.Open, result.State); // Verifica que la conexión esté abierta.
        mockOracleConnection.Verify(c => c.Open(), Times.Never()); // No debe llamarse a Open, ya que la conexión ya está abierta.
    }
}
Reasons:
  • Blacklisted phrase (1): está
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alan Godinez Rodriguez

79609603

Date: 2025-05-06 23:04:14
Score: 5.5
Natty: 4.5
Report link

@Ludwig I see that you stated gbeaven's answer was what helped you resolve your issue. I'm using pythonshell for Glue 3.0 to trigger my etl job. How exactly did you list your modules in additional python modules parameter? Even when I do that I still receive an error about pip resolver finding python module version incompatibilities with libraries I don't explicitly import or use. I only list pandas and boto3 as the extrnal libraries I'm using for my project.

Reasons:
  • RegEx Blacklisted phrase (1): I still receive an error
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Ludwig
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Cecelia

79609600

Date: 2025-05-06 23:03:13
Score: 7.5 🚩
Natty:
Report link

im pretty new to discord js and stack overflow but i can try and help! can you share the code for the command your running?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you share the code
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: skyealar

79609578

Date: 2025-05-06 22:34:06
Score: 1
Natty:
Report link

Question is pretty old, however, this works atm

navigator.clipboard.write(
    arrayOf(
        ClipboardItem(
            recordOf(
                "text/html" to Blob(arrayOf(content)),
                "text/plain" to Blob(arrayOf(content))
            )
        )
    )
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Adam Brangenberg

79609567

Date: 2025-05-06 22:21:03
Score: 1.5
Natty:
Report link

Add this two imports and this will fix the error:


import 'leaflet';
import 'leaflet.markercluster';
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sergio Correnti

79609564

Date: 2025-05-06 22:19:02
Score: 3
Natty:
Report link

Kedija hussien kemal from Ethiopia my fon 00251965929671 my bank commercial bank of Ethiopia 1000372093513 Kedija hussien kemal

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

79609562

Date: 2025-05-06 22:18:01
Score: 7.5 🚩
Natty: 4.5
Report link

any updates on this? I get the same issue

Reasons:
  • Blacklisted phrase (1): any updates on
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I get the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aïmane Najja

79609552

Date: 2025-05-06 22:05:58
Score: 2.5
Natty:
Report link

Use cygwin setup to downgrade to vim 9.0.2155-2 (make sure to downgrade gvim, vim-common, vim-doc and vim-minimal as well). This fixes it. Looks like problem was introduced in 9.1.1054-1
(only happens if you have both vim and cygwin installed)

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

79609549

Date: 2025-05-06 22:03:58
Score: 0.5
Natty:
Report link

Castling can be a bit tricky to implement. Let's break it down.

You want to check if the move is a castling attempt by verifying four conditions:

1. The king and rook are on the same rank (row).

2. The king and rook are on the same board (not across different boards, obviously!).

3. The king hasn't moved already.

4. The rook involved in castling hasn't moved already.

If these conditions are met, you can then check if there are pieces in between the king and rook.

Here's a possible approach:

1. Identify the king and rook: Determine which pieces are involved in the potential castling move.

2. Check the four conditions: Verify that the king and rook meet the requirements.

3. Check for pieces in between: If the conditions are met, check if there are any pieces between the king and rook.

You can implement this logic in your Python code using conditional statements and loops to check for pieces in between.

If you'd like, I can help you with some sample code or pseudocode to get you started. Just let me know!

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

79609545

Date: 2025-05-06 22:00:57
Score: 0.5
Natty:
Report link

Please include your code. Including your code makes communicating and solving problems much easier. Aside from that, does the number represent an arbitrary index or is this number a representation of an important order such as a ranking or a priority?

I believe you are looking for Python collections: Lists, Dictionaries, Sets, and Tuples.

Your solution could be a simple List containing a Tuple of two values: your movie and your number. However dictionaries already do this very well. Dictionaries are represented with key-value-pairs. You could have a dictionary with keys as numbers and values as a movie.

movies = {
            1: "Hellraiser",
            2: "From Dusk till Dawn",
            3: "Army of Darkness"
        }

Dictionaries already have built in ways of doing CRUD (create, read, update, delete) that are useful for what you are trying to do.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: LifeAsPixels

79609531

Date: 2025-05-06 21:53:54
Score: 9.5 🚩
Natty: 5
Report link

Please post answer...................................

Reasons:
  • RegEx Blacklisted phrase (2.5): Please post answer
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (1.5):
  • Filler text (0.5): ...................................
  • Low entropy (1):
  • Low reputation (1):
Posted by: Tom M

79609522

Date: 2025-05-06 21:45:51
Score: 1
Natty:
Report link

Doing monitor.clear returns a function as a value instead of executing it. So computercraft tells you that it is expected of you to assighn the value to something (e.g. local cls = monitor.clear), but you are trying to call the function, so instead you should do monitor.clear() telling it to call the function with no arguments. Functions are also values so in the example I gave earlier cls would become also a function, and you could do cls().

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

79609520

Date: 2025-05-06 21:43:51
Score: 0.5
Natty:
Report link

Thanks! @kulatamicuda for hint.
I'm using liquibase with sprinboot, I made working using below setup -

  1. I have sql in fn_count.sql

    CREATE OR REPLACE FUNCTION totalRecords ()
    RETURNS integer AS $total$
    declare
      total integer;
    BEGIN
       SELECT count(*) into total FROM COMPANY;
       RETURN total;
    END;
    $total$ LANGUAGE plpgsql\
    
  2. fn_count.xml - here important part is - endDelimiter="\"

    <?xml version="1.0" encoding="UTF-8"?>
    <databaseChangeLog
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
            xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
             http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.9.xsd">
        <changeSet id="2025050605" author="AUTHOR">
            <sqlFile path="sql-scripts/fn_count.sql"
                     relativeToChangelogFile="true"
                     endDelimiter="\"
                     splitStatements="true"
                     stripComments="true"/>
        </changeSet>
    </databaseChangeLog>
    
  3. db.changelog-master.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <databaseChangeLog
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
    xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
             http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.9.xsd">
    
    <include file="fn_count.xml" relativeToChangelogFile="true"/>
    
    </databaseChangeLog>
    

    File structure looks like this -

    src/main/resources/
    ├── db/
    │   ├── changelog/
    │   │   └── fn_count.xml, db.changelog-master.xml
    │   │   └── sql-scripts/
    │   │       └── fn_count.sql
    
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @for
  • Low reputation (0.5):
Posted by: drt

79609514

Date: 2025-05-06 21:39:49
Score: 1.5
Natty:
Report link

You might be getting Invalid payload signature because the AWS SDK is using chunked transfer encoding, which GarageHQ doesn't support.

In your AmazonConfig set UseChunkEncoding = false

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

79609511

Date: 2025-05-06 21:35:48
Score: 0.5
Natty:
Report link

i just did rm -rf node_modules and then npm install but the npm install was still displaying esolve error and then i went to win + R and and input cmd and i added this line of command del /f /q "C:\Users\shenc\Documents\tests\node_modules\esbuild-windows-64\esbuild.exe" then i went back to my terminal and did npm install force and boom when i run the npm run dev again it worked without stress

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Low reputation (1):
Posted by: patience okwori

79609506

Date: 2025-05-06 21:32:47
Score: 8.5
Natty: 7.5
Report link

can anyone help me to get the same result (remove duplicates and count them in a new column) from csv file using shell script?

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can anyone help me
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): can anyone help me to
Posted by: xsukax

79609504

Date: 2025-05-06 21:31:47
Score: 0.5
Natty:
Report link

NGINX request_time starts when the first byte of the request is received in NGINX and ends when the last byte of the response has been sent to the local NIC (i.e. network adapter). By, local, I mean local to the machine where NGINX software is running. The NIC then sends the request packets down to the client. So, NGINX request_time doesn't technically include all the time "sending the request to the client". That wording is a bit misleading.

However, my team uses request_time - upstream_request_time to get an approximation of client network issues because, while request_time doesn't reflect much of the response time, it does reflect some of the request time. NGINX request_time includes the time between the first and last byte of the request being received and on a slow network connection, this will be slower.

So it could be imagined like this:

Client gets a socket (e.g. TCP)
Client sends handshake
Handshake goes through local network and proxies
Handshake goes across internet
Handshake reaches edge of server network
Handshake gets to NGINX - request_time starts
Rest of HTTP request goes up to NGINX
Last request byte received in NGINX
First byte of request sent to upstream server (e.g. Tomcat servlet) - upstream_request_time (URT) starts
Upstream server handles the request and sends back a response
Last byte of response received from upstream server - upstream_request_time (URT) ends
NGINX sends response through kernel buffer to NIC - this is usually nearly instantaneous
Last byte sent to local NIC by kernel
NGINX finishes writing to log file - request_time ends
NIC sends response to client
Internet
Local network: proxies, routers, switches, etc.
Client receives last byte of response (NGINX has no idea about when this occurs. To measure this you'd need to implement something in the client side of your application. For example, assuming your client is a browser application, see https://developer.mozilla.org/en-US/docs/Web/API/PerformanceResourceTiming/responseEnd)

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

79609496

Date: 2025-05-06 21:22:45
Score: 1
Natty:
Report link

Hosted Onboarding isn't supported inside a webview - https://docs.stripe.com/connect/custom/hosted-onboarding#supported-browsers

SFSafariViewController is similar to a "web browser" view so it behaves like a safari tab but inside your app. So you can't launch your app from within the app. This other answer explains it

So the only option is to have the app open those links in native Safari on mobile + use the universal link

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

79609479

Date: 2025-05-06 21:02:40
Score: 4
Natty:
Report link

I was looking at the GitHub Docs (since I haven't personally used workflow_run as a trigger yet) and I was wondering if it was the quotation marks in your workflows that is failing the match?

https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#using-data-from-the-triggering-workflow

The example used in the docs doesn't have them.

Reasons:
  • Blacklisted phrase (2): was wondering
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Naylor

79609473

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

try margin-left: 10em; margin-top: -2em; depending on the width of the first button or image

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

79609466

Date: 2025-05-06 20:53:38
Score: 1.5
Natty:
Report link

This happened to me in a while ago and it turned out something was using the same port I was connecting to. I rebuilt a computer and some of my configuration was reset, and a port I manually changed reverted back to default causing a conflict. I can't remember if it was my local machine or the host, but I would monitor traffic on your local machine first and see if anything else is using the port you are trying to use.

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

79609460

Date: 2025-05-06 20:48:36
Score: 2.5
Natty:
Report link

Solution for "ps1 cannot be loaded because running scripts is disabled" Error

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

Example: Real problem solved image

If you want to know more, you can see the link below

About_Execution_Policies

Reasons:
  • Blacklisted phrase (1): the link below
  • RegEx Blacklisted phrase (1): see the link
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hafez Abdullah Al Noman

79609449

Date: 2025-05-06 20:41:34
Score: 1.5
Natty:
Report link

Using palimpalim:: doesn't stop it being indented.

Instead precede the line with [indent = 0].

[indent = 0]
palimpalim::
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: paulc4

79609446

Date: 2025-05-06 20:39:33
Score: 1
Natty:
Report link

With no information on how your animation is set up, it's hard to give a definitive answer.

For the collider to match the object and move with it, you should see if your model consists of multiple meshes or bones. If so, you could make several box colliders on your bones or meshes that roughly match the shape of the object / bone. Then they will move, rotate and scale along with their game objects.

If you did not use bones and just a single mesh in blender in the first place, I would advise you to rework the animation for your unity project.

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

79609444

Date: 2025-05-06 20:38:33
Score: 0.5
Natty:
Report link

As of EFCore 9 there is a .ToHashSetAsync() methods in case you need to lookup the results many times.

Sources is very much the same as .ToListAsync() (not as in .ToArrayAsync() with List->Array conversion)

Docs

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

79609433

Date: 2025-05-06 20:30:31
Score: 1.5
Natty:
Report link

This article helped in my app when I was getting this logs Sentry breadcrumbs. Basically, breadcrumbs are the events triggered before an error. And the logs you are getting are ui breadcrumbs, you can disable this logs by adding a meta tag in AndroidManifest.xml

<application>
   <!-- To disable the user interaction breadcrumbs integration -->
    <meta-data android:name="io.sentry.breadcrumbs.user-interaction" android:value="false" />
</application>

If this doesn't work for you, please add the ListView widget.

Reasons:
  • Blacklisted phrase (1): This article
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jabbar shaikh

79609430

Date: 2025-05-06 20:29:31
Score: 1
Natty:
Report link

1.Take first word from first list
2. Check in all lists if it is absent, or always first.
3.If you find some word earlier, take it instead and check again.
4.When you finish with all lists put it in result and continue with next word.
5.Used words can be deleted from lists, or filtered based on result list.

1.Let's assume list B is the first one. 'second' is our first word.
2.It is absent in A - ok.
3.In С it is not the first. Let's take first word here ('first') and begin from the beginning.
4.Finally 'first' is selected. Let's put it to result and continue with next word.
5.Remove 'first' from all lists, or bypass when meet members of result.

When you change word in step 3, make some kind of temporary stack of words for avoiding recursion. Or use some increment and not go higher than some N (maybe it is the total number of words? Or even only the number of lists)

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

79609417

Date: 2025-05-06 20:14:27
Score: 1.5
Natty:
Report link
 location / {
            
            try_files $uri $uri/ $uri.html /index.html;

    }
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ultrafunkamsterdam

79609408

Date: 2025-05-06 20:05:24
Score: 2.5
Natty:
Report link

routerLink={en/${site.id}} React js 10.22

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Javi Marambio

79609404

Date: 2025-05-06 20:01:23
Score: 3.5
Natty:
Report link

https://learn.microsoft.com/en-us/powershell/module/az.paloaltonetworks/get-azpaloaltonetworksfirewallstatus?view=azps-13.5.0&viewFallbackFrom=azps-13.1.0

Hope this helps. Random characters to get to the limit of 30.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: scorpio4u

79609402

Date: 2025-05-06 19:59:22
Score: 1.5
Natty:
Report link

I found out something that works, but i can't explain why as it seems weird.

If the path to the script delivering the PDF file is e.g. domain.com/reader/delivery.php where delivery.php reads the file and echoes it to show it in the browser, just add the filename you want to appear in the download dialog like this:

domain.com/reader/delivery.php/filename.pdf

Tested in Chrome, Firefox and Edge.

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

79609398

Date: 2025-05-06 19:57:21
Score: 8.5 🚩
Natty: 4
Report link

did you find any fix? it's weird but VS2022 sometines cannot find refernecs for the entire solution, it works on project level.

Reasons:
  • RegEx Blacklisted phrase (3): did you find any fix
  • RegEx Blacklisted phrase (1.5): fix?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you find any fix
  • Low reputation (1):
Posted by: Ex1Dreamer

79609394

Date: 2025-05-06 19:54:20
Score: 1
Natty:
Report link

The warning message you got doesn’t seems to have a link with the Guest Plugin in my opinion.

I recently tried to launch backstage in a containerized environnement and got the same error message when trying to login with the Guest sign in card.

For me the issue was the CORS that didn’t allowed the front end process to call the backend.

If you look in the console while clicking « Sign-in » you might see a explicit error on CORS if you are in the same situation.

To fix this, make sure you set CORS accordingly in the app-config.yaml (backend.cors.origin), by putting the url of the front end process in it.

https://github.com/backstage/backstage/blob/80aa734adede21426537f4d97c127c0d87e2df2d/app-config.yaml#L51

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

79609393

Date: 2025-05-06 19:54:20
Score: 4
Natty: 4.5
Report link

Add the path of "jupyter.exe" to the Local as well as System Path of env

https://saturncloud.io/blog/how-to-fix-the-jupyter-command-jupyternotebook-not-found-exception-on-windows/

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

79609385

Date: 2025-05-06 19:50:19
Score: 2
Natty:
Report link

Guess you can try something like this ,it might give the needed output:

SELECT *
FROM sometable
INTO OUTFILE 'out.csv'
FORMAT CSVWithNames
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Nassim

79609382

Date: 2025-05-06 19:47:18
Score: 2.5
Natty:
Report link

This piece of software was abandoned years ago.

Cannot and should not be used.

Thus, is not available from the Marketplace.

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

79609379

Date: 2025-05-06 19:45:17
Score: 5.5
Natty:
Report link

I need similar requirement that need to upgrade from SVN 1.6.17 (old Ubuntu Sytem) to latest SVN which is 1.14.5 version (New VM). Will following method is best works for this migration? I am planning to build parallel environment with latest Infra -SuSE 15 VM?

Any suggestion would definately help the process of this migration. TIA

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2): Any suggestion
  • RegEx Blacklisted phrase (2): TIA
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Suma Vn

79609371

Date: 2025-05-06 19:38:15
Score: 3.5
Natty:
Report link

Restarting the vs code should work

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

79609361

Date: 2025-05-06 19:30:13
Score: 2.5
Natty:
Report link

For my situation it was where a programmer included as a reference the actual compiled file (the .DLL) instead of the project as a reference (the .csproj). Hence it was compiling against a final DLL which wasn't necessarily compatible with the primary exe/dll.

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

79609352

Date: 2025-05-06 19:22:11
Score: 4
Natty:
Report link

SOLVED-the query returnes multiple users thats why lol

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30465325

79609350

Date: 2025-05-06 19:19:10
Score: 3.5
Natty:
Report link

That's strange but what user16118981 suggested is really works :) hope they will fix it

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Руслан Хужаниязов

79609347

Date: 2025-05-06 19:17:10
Score: 1
Natty:
Report link

Si todas las columnas de las tablas (tabla_1, tabla_2, tabla_3, tabla_4) coinciden exactamente en nombre, tipo y orden con la de tabla_principal, puedes utilizar la sentencia INSERT INTO ... SELECT para copiar los datos, una tabla a la vez o todas juntas con UNION ALL

INSERT INTO tabla_principal SELECT * FROM tabla_1;
INSERT INTO tabla_principal SELECT * FROM tabla_2;
INSERT INTO tabla_principal SELECT * FROM tabla_3;
INSERT INTO tabla_principal SELECT * FROM tabla_4;

o con UNION ALL

INSERT INTO tabla_principal
SELECT * FROM tabla_1
UNION ALL
SELECT * FROM tabla_2
UNION ALL
SELECT * FROM tabla_3
UNION ALL
SELECT * FROM tabla_4;
Reasons:
  • Blacklisted phrase (1): todas
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: estebanjrdev

79609344

Date: 2025-05-06 19:14:09
Score: 2
Natty:
Report link

daolanfler's answer should be the accepted one, assuming TS 4.9+ (I don't have enough rep to upvote or comment)

Reasons:
  • Blacklisted phrase (0.5): upvote
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: johnny0hh

79609340

Date: 2025-05-06 19:13:09
Score: 3
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rosalina Da silva cruz

79609336

Date: 2025-05-06 19:10:08
Score: 3.5
Natty:
Report link

no they can't see if you forward messages or read it with telethon or not

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

79609331

Date: 2025-05-06 19:06:06
Score: 1.5
Natty:
Report link

I found that my package "cola" was imported in my code: "library(cola)".
This was obviously a mistake, so I removed it, and now it works

Reasons:
  • Low length (1):
  • No code block (0.5):
Posted by: gonzalez.ivan90

79609330

Date: 2025-05-06 19:06:06
Score: 0.5
Natty:
Report link

Try This import Geolocation from 'react-native-geolocation-service'; const resuts=await Geolocation.requestAuthorization('whenInUse')

resuts=='granted'

It works for me!

Reasons:
  • Whitelisted phrase (-1): Try This
  • Whitelisted phrase (-1): works for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: mahesh Alakunta

79609324

Date: 2025-05-06 19:02:04
Score: 5.5
Natty:
Report link

We used here nitropack plugin. Pretty livey^ http://sales-cncmetal.ru

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sales-cncmetal.ru

79609311

Date: 2025-05-06 18:53:01
Score: 1.5
Natty:
Report link

The proposed solution is correct but there is another scenario that is not captured. The same issue can be faced when you have fields in the model passed for validation in the rules but the same fields are not in the form being submitted.

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

79609308

Date: 2025-05-06 18:50:00
Score: 0.5
Natty:
Report link

  
"pylint.args": ["--max-line-length=120"]

this worked for me

Reasons:
  • Whitelisted phrase (-1): this worked for me
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: bro

79609303

Date: 2025-05-06 18:43:59
Score: 1
Natty:
Report link

You may need to set Enable 32 bit Application to true in advanced settings of application pool for the site in IIS

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

79609300

Date: 2025-05-06 18:42:58
Score: 0.5
Natty:
Report link

I understand this post is old but thought I will still answer to the problem. When both GET and POST APIs are implemented properly. There are two settings that need to be updated in Keycloak settings:

enter image description here

enter image description here

  1. Under User federation, add Add User migration using a REST client providers. Then, put display name and rest client URI
  2. Then, under Realm settings enable User-managed access.
    enter image description here
Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Sharif Mamun

79609299

Date: 2025-05-06 18:41:58
Score: 3
Natty:
Report link

The other question was probably referring to the default behaviour of MapView rather than Map. MapView comes with support for scrolling, pinches, and animated dragging out of the box.

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

79609293

Date: 2025-05-06 18:37:57
Score: 3.5
Natty:
Report link

in the end we no longer had to extend this App, but all other Fiori Elements Apps we had to modify in this project had Adaptation Projects used. Marking this one as closed so people with the same issues / questions can refer to. Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: LGi

79609284

Date: 2025-05-06 18:31:56
Score: 2
Natty:
Report link

A way to prevent workflow approvals from being reset in Comala when a page is edited is make sure that the "Page Update Reset Approval" setting is configured to "Ignore". To do this, go to Space Tools > Document Management > Configuration and you will see the dropdown menu next to "Page Update Reset Approval".

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

79609282

Date: 2025-05-06 18:30:55
Score: 4
Natty:
Report link

Not sure if it's applicable here, but I prepend ᐳ or Ω or ꜥ to items I want last when sorted alphabetically.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ad7am

79609279

Date: 2025-05-06 18:28:54
Score: 1
Natty:
Report link

After the SSL/TLS handshake is completed, the connection continues over the same port that was initially used to establish it, typically port 443 for HTTPS.

Port 443 is the standard port for HTTPS, which includes the SSL/TLS handshake and all encrypted communication afterward.

Port 80 is used for HTTP, which is unencrypted.

So if your client connects to a server using HTTPS, it connects to port 443, performs the TLS handshake over that port, and then continues sending/receiving encrypted data over the same port.

Can you use a different port, like 80, for TLS?
Technically, yes — but it’s non-standard and usually problematic.

  1. TLS itself works over any TCP port. You could configure a server to offer HTTPS over port 80, 8443, or any custom port.

  2. However, port 80 is universally expected to serve plain HTTP, not HTTPS. If a browser or client connects to port 80, it assumes the content is unencrypted.

  3. If you serve HTTPS on port 80 and a client doesn't explicitly expect TLS, the connection will fail, because it will misinterpret the encrypted handshake as regular HTTP.

Key Points:

  1. TLS does not change ports after the handshake, it stays on the same port (usually 443 for HTTPS).

  2. You can technically use TLS on any port, including 80, but it’s non-standard and discouraged unless both server and client are explicitly configured for it.

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

79609277

Date: 2025-05-06 18:25:54
Score: 3
Natty:
Report link

Realizing how silly my question was, I took the advice of @Chris Haas.

I modified my main php script to just do the authentication, and save the tokens. I then used the phpunit CLI to run my test code, which read the saved tokens on start up.

Thanks Chris. Solved my problem and gave me more robust code. Win-win.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • User mentioned (1): @Chris
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Shmuel A. Kam

79609270

Date: 2025-05-06 18:21:52
Score: 3.5
Natty:
Report link

I guess using post hook in config block you can create index. Can you please refer below link and try same for Oracle? Although the given query is for MS SQL server but I guess if you try in similar way it should work

https://discourse.getdbt.com/t/how-to-create-indexes-on-post-hook-for-ms-sql-server-target-db/542

Also you can refer this official DBT link for syntax reference- https://docs.getdbt.com/reference/resource-configs/postgres-configs

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Aishwarya M

79609263

Date: 2025-05-06 18:14:50
Score: 2
Natty:
Report link

This does not address the problem distinguishing
hyphen, long(Em), and short(En) dashes,
nor comma and decimal point in numbers (1.000 = 1,000),
nor underline vs underscore,
nor parenthesis, curly & square brackets,
nor of adjacent character ambiguities in many fonts like
rn = m,
cl = d
vv = w
VV = W
0. = Q
And there are surely others.

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

79609250

Date: 2025-05-06 18:05:48
Score: 3.5
Natty:
Report link

Like I said I just wanted a cool place to share my experience

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: jeremy wilson

79609243

Date: 2025-05-06 18:01:47
Score: 3
Natty:
Report link

Do you now if is there any official information about iPhone support? Or is it empiric information? Took me a while to see that mouse works but many other absolute position devices didn’t and wondering if it’s a question of discovering the correct one for iPhone

Reasons:
  • Blacklisted phrase (1): is there any
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
Posted by: forlayo

79609237

Date: 2025-05-06 17:58:46
Score: 1.5
Natty:
Report link

Since the endpoint requires one version ID to be passed as a URL parameter, you'll need to send different requests for each document.

I'm reaching the documentation team to improve the wording.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: João Martins

79609218

Date: 2025-05-06 17:45:43
Score: 2.5
Natty:
Report link

If you're seeing this error and are using the PyCharm IDE, verify if your venv is marked as 'excluded' in the project directory.

If not, do so and restart and see if the linting is fixed.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Zuhab Wasim

79609217

Date: 2025-05-06 17:44:42
Score: 3.5
Natty:
Report link

There's another solution as installing the internal package to symlink it

https://github.com/nrwl/nx/discussions/22622#discussioncomment-8987355

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

79609215

Date: 2025-05-06 17:42:42
Score: 1
Natty:
Report link

The newer Stripe Elements (like PaymentElement) support 3DS out of the box. Since you're using server-side confirmation though, you could follow the instructions in this doc - https://docs.stripe.com/payments/3d-secure/authentication-flow#manual-three-ds to handle 3DS auth using either confirmCardPayment or handleCardAction functions from Stripe.js

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

79609208

Date: 2025-05-06 17:38:41
Score: 0.5
Natty:
Report link

Use port 465. That works here for a similar setup.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Gustav

79609200

Date: 2025-05-06 17:35:39
Score: 0.5
Natty:
Report link

Following description from https://en.wikipedia.org/wiki/Noncentral_chi-squared_distribution

import torch
import matplotlib.pyplot as plt
plt.style.use('dark_background')

# log of bezel function approximation
# the sum must go to infinity, but we stop at j=100
def bezel(v,y,infinity=100):
    if not isinstance(y,torch.Tensor):
        y = torch.tensor(y)
    if not isinstance(v,torch.Tensor):
        v = torch.tensor(v)
    j = torch.arange(0,infinity)
    bottom = torch.lgamma(j+v+1)+torch.lgamma(j+1)
    top = 2*j*(0.5*y.unsqueeze(-1)).log()
    mult = (top-bottom)
    return (v*(y/2).log().unsqueeze_(-1)+mult)

def noncentral_chi2(x,mu,k):
    if not isinstance(mu,torch.Tensor):
        mu = torch.tensor(mu)
    if not isinstance(k,torch.Tensor):
        k = torch.tensor(k)
    if not isinstance(x,torch.Tensor):
        x = torch.tensor(x)
    
    # the key trick is to use log operations instead of * and / as much as possible
    bezel_out = bezel(0.5*k-1,(mu*x).sqrt())
    x=x.unsqueeze_(-1)
    return (torch.tensor(0.5).log()+(-0.5*(x+mu))+(x.log()-mu.log())*(0.25*k-0.5)+bezel_out).exp().sum(-1)

# count of normal random variables that we will sum
loc = torch.rand((5))
normal = torch.distributions.Normal(loc,1)

# distribution parameter, also named as lambda
mu = (loc**2).sum()

# count of simulated sums
events = 5000
Xs = normal.sample((events,))

# chi-square distribution
Y = (Xs**2).sum(-1)

t = torch.linspace(0.1,Y.max()+10,100)
dist = noncentral_chi2(t,mu,len(loc))

# plot produced hist againts computed density function
plt.title(f"k={len(loc)}, mu={mu:0.2f}")
plt.hist(Y,bins=int(events**0.5),density=True)
plt.plot(t,dist)

k=100 k=10

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

79609189

Date: 2025-05-06 17:25:42
Score: 0.5
Natty:
Report link

Ran into the same issue and what I had to do was basically add my worker project as a consumer in the cloudflare dashboard:

Cloudflare dashboard -> storage & databases -> queues -> select your queue -> settings and add your project (worker) as a consumer.

Now I see the message being consumed and acknowledged.

Hope it helps!

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rúnar Jóhannsson

79609188

Date: 2025-05-06 17:24:42
Score: 3
Natty:
Report link

Generally its easy to implement constant volumetrics, when amount of "water" in the air is aproximatelly the same evrywhere, for example exponential fog (you can google it out to find some formulas, they are quite easy). But if you want to do something more complex like clouds, where amount of "water" in the air isnt the same at any point, then you should do some sampling and aproximations.

This video might be really helpful with understanding these concepts: https://www.youtube.com/watch?v=y4KdxaMC69w&t

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): This video
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Mitro Juryev

79609183

Date: 2025-05-06 17:19:41
Score: 3
Natty:
Report link

This package does that, as well as converting to other common formats
https://github.com/JuliaPlots/NumericIO.jl

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

79609181

Date: 2025-05-06 17:16:40
Score: 1
Natty:
Report link

Try this:

"private": true, "scripts": { "dev": "next dev", "prebuild": "next telemetry disable", "build": "next build", "start": "next start", "lint": "next lint"

Reasons:
  • Whitelisted phrase (-2): Try this:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Gustavo Maldonado

79609180

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

I'm also having this problem and just saw this post. I tried the ["string", "null"] and got the same error as before. If I add the expression above to the Content, Power Automate is saying the Content is not valid. What am I doing wrong? Do I have to add a second action?

Reasons:
  • Blacklisted phrase (1): What am I doing wrong?
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: V Kulkarni

79609178

Date: 2025-05-06 17:13:39
Score: 1.5
Natty:
Report link

add a condition for if the id is empty string nor none, because id is expecting a uuid,
if not shipId:
log.error("empty shipId")
return False

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

79609172

Date: 2025-05-06 17:07:38
Score: 1
Natty:
Report link

in follow up, looks like issue was in not specifying the host parameter in FastMCP(...). without this param server must be taking some short-circuit to 127.0.0.1, for instance tcp was only reachable locally and even that through 127.0.0.1 only.

once I supplied host parameter I was able to make remote calls.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Giorgi Sh.

79609162

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

here is the answer!

I hope it can help you!

num = int(input("Enter a number: \n"))
if num % 2 == 0:
    print ("Even")
else:
    print ("Odd")
Reasons:
  • Whitelisted phrase (-1): hope it can help
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Akira Sunsets

79609159

Date: 2025-05-06 17:04:36
Score: 2
Natty:
Report link

option tag After struggling with distorted text in my JavaFX TableView when using the Pyidaungsu font for Burmese text, I found that setting the -Dfile.encoding=UTF-8 option in my pom.xml using the <option> tag in the appropriate Maven plugin configuration which fixed the issue for me.

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

79609156

Date: 2025-05-06 17:03:36
Score: 1.5
Natty:
Report link

The issue was that springdoc-openapi-maven-plugin is executed during integration-test phase while swagger-codegen-maven-plugin default phase is generate-sources which is executed before integration-test in the build lifecycle. Also on your 3rd plugin you entered the id format twice with no spaces so it could not generate your correct to run correctly. That should fix your code and make the process run correctly.

Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30464539

79609152

Date: 2025-05-06 16:59:35
Score: 3
Natty:
Report link

Seems you need to have a target env of .net 5 or higher for the setup project to generate an installer with the all users option. On a side note, Crystal Reports does not work with .net higher than 4.8

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lorne

79609146

Date: 2025-05-06 16:56:34
Score: 1
Natty:
Report link

you can set keyboard shortcuts within the Visual Studio Code Shortcut Editor, as described here: https://code.visualstudio.com/docs/configure/keybindings

The link above also describes troubleshooting shortcuts: https://code.visualstudio.com/docs/configure/keybindings#_troubleshooting-keyboard-shortcuts

At the time of writing, to open the Keyboard Shortcuts editor, select the File > Preferences > Keyboard Shortcuts menu, or use the Preferences: Open Keyboard Shortcuts command (Ctrl+K Ctrl+S) in the Command Palette.

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

79609140

Date: 2025-05-06 16:51:32
Score: 1.5
Natty:
Report link

For me the problem was I an artifact environment variable left behind by an unistalled program.
First, I temporarily unset the CURL_CA_BUNDLE variable in my terminal. Then I try to run the program. Once that worked, I renamed CURL_CA_BUNDLE environment variable to CURL_CA_BUNDLE_depr just incase I need to go back to it.

And my installation went smoothly.

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: SpatialNasir

79609132

Date: 2025-05-06 16:47:31
Score: 1.5
Natty:
Report link

Trying to add references was a distraction and didn't resolve the issue.

The breaking change made on April 28th was that the version of C# used by script actions was rolled back from 11 to 8. Our code uses Raw String Literals (among other things), which is not supported in C# 8.

https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/tokens/raw-string

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

79609130

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

I never really found an adequate solution to this issue. For the one answer provided, with all available capabilities and without runFullTrust, my app still could not access the SQLite database located at FileSystem.AppDataDirectory.

BUT, what did happen is that the Microsoft store stopped flagging my runFullTrust setting with a warning. I suspect that there literally is no way around this at this time. Hopefully future updates will address this.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Brett Peake

79609127

Date: 2025-05-06 16:44:30
Score: 2
Natty:
Report link

The purpose of generic attribute is for presentation/layout styling in HTML4 but its been replaced with CSS nowadays because of the use of modern HTML5. But the core attribute remains constant and mainly used for element identification and styling (Supported in HTML5). finally international attributes are used to support multilingual website development.

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

79609123

Date: 2025-05-06 16:41:29
Score: 1.5
Natty:
Report link

I'm not sure if you might need this, or maybe someone else, so here is a workaround.

For reproducing the problem, print *, -2147483648yields the following on my machine:

Error: Integer too big for its kind at (1). This check can be disabled with the option ‘-fno-range-check’

Now, the default type of integer in Fortran is type 4, hence the early comment by @jhole.

We can however, make it compliant with print *, -2147483647 - 1, which will output the expected -2147483648.

OR

You can also specify a bigger int for the type of output:

program bigint
integer, parameter :: int64 = selected_int_kind(18)
print *, -2147483648_int64
end program bigint

output would be -2147483648

To answer your questions specifically:

Am trying to find a cite for you here: https://gcc.gnu.org/onlinedocs/gfortran/, I hope I will be successful

Here's a very similar post for you in the meantime. The logic still stands: Why Negating An Integer In Two's Complement and Signed Magnitude Can Result In An Overflow?

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @jhole
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: Tino D