79517814

Date: 2025-03-18 14:43:01
Score: 1.5
Natty:
Report link

It doesn't make sense, but what actually solved my problem in a simple way was simply changing

jniLibs.srcDirs = ['src/main/jniLibs']

To

jniLibs.srcDirs = ['src/main/libs']
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vinicius Lavrador

79517810

Date: 2025-03-18 14:42:01
Score: 0.5
Natty:
Report link

Your issue is due to the UWP class library not being properly registered. Deploy the UWP project first (Right-click → Deploy), or package the WPF app using MSIX to ensure the UWP component is registered. Let me know if you need setup guidance!

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

79517808

Date: 2025-03-18 14:41:00
Score: 1
Natty:
Report link

I would recommend you to use basic marker and refactor the function in order to instantiate it with L.marker :

this.routingControl = L.Routing.control({
    waypoints: [
        L.latLng(pickup.location.latitude, pickup.location.longitude),
        L.latLng(dropOff.location.latitude, dropOff.location.longitude),
    ],
    routeWhileDragging: true,
    createMarker: (i: number, waypoint: L.Routing.Waypoint, n: number) => {
        return L.marker(waypoint.latLng, {
            icon: this.createIcon(i.toString()), // Custom icon if needed
        });
    }
}).addTo(this.mapAdmin);

You can check this documentation to prevent any syntax error : https://leafletjs.com/reference.html#marker

Reasons:
  • Blacklisted phrase (1): this document
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: BubbleWrap1631

79517791

Date: 2025-03-18 14:36:59
Score: 3.5
Natty:
Report link

Manage tasks efficiently with BoldDesk Task Management System—automate, collaborate, and track progress seamlessly!

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

79517787

Date: 2025-03-18 14:35:59
Score: 0.5
Natty:
Report link

I didn't know the error code: 0x80004005 has so confused like above..

In my case, the error caused by duplicated key like this

Error: 0xC0202009 at Data Flow Task, ACR_ARP_DATA Client_ACR_AFW [65]: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005.

An OLE DB record is available. Source: "Microsoft OLE DB Provider for SQL Server" Hresult: 0x80004005 Description: "Duplicate key was ignored.".

Once I have cleared out the duplicated PK conflict, it has resolved.

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

79517783

Date: 2025-03-18 14:32:58
Score: 1
Natty:
Report link

I had a similar issue that was really a pain. I was getting an error because of the domain mismatch. I necessarily didn’t want to remove the domain parameter in the return response. I went ahead and create a certificate for the custom subdomain I wanted in my naming scheme. Update the dns records. Then I created a custom api domain name with the same subdomain and mapped it to the api I was having issues with. I hope this helps so you don’t have to remove the domain parameter because this does pose security risk.

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Michael Emanuel

79517781

Date: 2025-03-18 14:32:58
Score: 2.5
Natty:
Report link

It seems to me that all that you have to do is just move the files (if it's a git project, do not move the .git folder...). After that you need a clean build.

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

79517778

Date: 2025-03-18 14:32:58
Score: 1.5
Natty:
Report link

As @sonle mentioned, this is the expected behavior. I call it the "Most Permissive Group Rule". This means that when a tester belongs to multiple groups, they will automatically receive builds distributed to the most inclusive group they're part of, regardless of individual group settings.

That's why I prefer setting manual distribution for every group so I have a more granular control.

My key recommendations to mitigate this issue would be:

  1. Create all tester groups with manual distribution by default

  2. Use programmatic scripts integrated into CI pipelines to control build distribution

  3. Carefully manage group memberships to minimize overlap

  4. Implement a dynamic distribution system that provides precise control over which builds are sent to specific groups

By using manual distribution and custom scripts, developers can achieve granular control over build access for different tester groups.

I've worked on this article that covers topics like the one you mentioned. Hope you can use it as a reference!

Reasons:
  • Blacklisted phrase (1): this article
  • Whitelisted phrase (-1.5): you can use
  • Contains signature (1):
  • Long answer (-1):
  • No code block (0.5):
  • User mentioned (1): @sonle
  • Low reputation (0.5):
Posted by: Ramiro

79517776

Date: 2025-03-18 14:31:58
Score: 2.5
Natty:
Report link

I was getting a very similar error but with error code -532462766.

In Visual Studio (2022), doing Build | Clean Solution fixed the problem.

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

79517775

Date: 2025-03-18 14:31:58
Score: 2
Natty:
Report link

when configuring the firebase hosting you mistakenly overwrote the public/index.html, to correct it just copy any other project public/index.html and replace with it, then run npm run build and firebase deploy --only hosting

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): when
  • Low reputation (1):
Posted by: Anurag TIwari

79517769

Date: 2025-03-18 14:29:57
Score: 2.5
Natty:
Report link

I found the issue here. The culprit here is 'All workspace users' with default 'Can Manage' access. This cannot be modified for the 'Shared' folder inside 'Workspace' folder. We have to create notebooks outside 'Shared' folder to impose such permissions. Its preferable to have it in Git.

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

79517747

Date: 2025-03-18 14:23:56
Score: 3.5
Natty:
Report link

Here is the component in esp registry with support for C++ google-protobuf official library:

https://components.espressif.com/components/albkharisov/esp_google_protobuf

Usage example included.

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

79517743

Date: 2025-03-18 14:21:55
Score: 2.5
Natty:
Report link

una vez que se genera la clave, puede suceder que los nuevos datos no se carguen por ya estar registrados en cache. lo que podrías intentar es ejecutar ¨php artisan optimize¨, para limpiar la cache de las rutas también. no solo de las configuraciones

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

79517735

Date: 2025-03-18 14:19:54
Score: 11 🚩
Natty: 6.5
Report link

Did u find any solutions? Going through the exact same issue :/

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Did u find any solution
  • RegEx Blacklisted phrase (2): any solutions?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did
  • Low reputation (1):
Posted by: Dadulescu Andrei

79517732

Date: 2025-03-18 14:18:53
Score: 4
Natty:
Report link

Where did you get "org.zaproxy.zap.extension.script.CryptoJS" from? That class does not appear to be in the ZAP codebase.

ZAP does not provide its own SHA265 implementaion, it uses the standard Java MessageDigest class. Any standard Java class can be accessed via ZAP scripts.

Reasons:
  • RegEx Blacklisted phrase (3): did you get
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Where did you
  • High reputation (-1):
Posted by: Simon Bennetts

79517716

Date: 2025-03-18 14:12:51
Score: 4.5
Natty:
Report link

I am having the same issue with a vue + typescript setup.
The Problem seems to be the standard plugins not loading correctly, since only the buttons that are considered plugins are not loading. I will keep you updated if I ever figure this out.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same issue
  • Low reputation (1):
Posted by: user29987524

79517713

Date: 2025-03-18 14:11:51
Score: 2.5
Natty:
Report link

Check the settings related to the commit window. There may be an option that determines how diffs are opened: in a new window/tab or in an area within the commit window. Look for settings related to "Commit Dialog" or "Commit Window". Pay attention to options related to "Show DiffЭ "Open Diff", "Diff ViewerЭ

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

79517709

Date: 2025-03-18 14:10:50
Score: 2.5
Natty:
Report link

I came across the same situation, where I don't want the test report to say pass for fail for that particular test. I tried Assert.Warn("This scenario not required") which is helping me identify the test which were not executed. - @BernardV

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @BernardV
  • Single line (0.5):
  • Low reputation (1):
Posted by: Devanathan M

79517706

Date: 2025-03-18 14:09:50
Score: 0.5
Natty:
Report link

Another option is viewer.js. Might be worth a try.

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

79517703

Date: 2025-03-18 14:08:50
Score: 1
Natty:
Report link

I would go with form objects. The unique rule allows to ignore a defined ID like so

Rule::unique('recipes,name')->ignore($existingId), 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ya-cha

79517694

Date: 2025-03-18 14:05:49
Score: 5.5
Natty: 5
Report link

as I have a problem with the suggested solution, i'm not sure if i cand make my question here, or i have to open a new 3d, in wich case i apologise for my error.

I usually use the above suggested function, but in our company we have many omonimous user
so , for those, first and second name is the same, but (if course) they have different email, userid, etc...

when i resolve my name (e.g. "Pinco Pallino") , in case multiple "Pinco Pallino" exist, myRecipient.Resolved return false

can you suggest me a way to have (let me say) an array as result with one (or all) the user(s) found ?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you suggest me
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user1653963

79517685

Date: 2025-03-18 14:02:48
Score: 2.5
Natty:
Report link

Just ask copilot how to disable copilot in vscode

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

79517681

Date: 2025-03-18 14:01:48
Score: 4
Natty:
Report link

I also have an issue with the memory leak in LangGraph.

I created a GitHub issue for it: https://github.com/langchain-ai/langgraph/issues/3898

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

79517673

Date: 2025-03-18 13:58:46
Score: 0.5
Natty:
Report link

After the top solution didn't work for me, I finally found my issue.

I opened xcodeproj instead of xcodeworkspace.

In summary, try:
1- flutter clean && flutter pub get && cd ios && pod install && cd .. && flutter build ios

2- Check that xcode has xcodeworkspace open and not xcodeproj.

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

79517672

Date: 2025-03-18 13:58:46
Score: 4.5
Natty: 6
Report link

That worked here too, thanks!!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fernando Martins

79517651

Date: 2025-03-18 13:51:44
Score: 1.5
Natty:
Report link

A better approach is to use DataStream API.

Use a FlatMap function to extract rows from list and then do the aggregation. Or use a MapFunction to caculate to only aggregate on a List rows.

These operations are not stateful so you are not using flink states. You also process each row individually so you do not need to set window at all.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: seyed mohammad hassan taba tab

79517645

Date: 2025-03-18 13:49:44
Score: 1
Natty:
Report link

You can't really use Yandex Disk or Google Drive as a proper CDN for hosting static assets like CSS, JS, or images. These services aren't designed for direct web asset delivery and come with limitations like:

No proper HTTP headers for static files. Rate limiting and download restrictions. Lack of custom domains or CNAME support. No edge caching or optimization, which defeats the purpose of a CDN.

Here are some CDNs that have servers in the Russian Federation and are known to be budget-friendly:

Selectel CDN, CDNvideo, Timeweb CDN

Don't use Yandex Disk or Google Drive for static file hosting—it’s not viable as a CDN. Use a proper CDN like Selectel, CDNvideo, or G-Core Labs for Russian delivery and Bitrix compatibility.

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

79517622

Date: 2025-03-18 13:46:43
Score: 4
Natty: 4
Report link

I would like to do this as well. I can't find any documentation on a connection string.

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

79517617

Date: 2025-03-18 13:41:41
Score: 2
Natty:
Report link

Check the settings related to the commit window. There may be an option that determines how diffs are opened: in a new window/tab or in an area within the commit window. Look for settings related to "Commit Dialog" or "Commit Window". Pay attention to options related to "Show Diff", "Open Diff", "Diff Viewer"

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

79517612

Date: 2025-03-18 13:38:41
Score: 2
Natty:
Report link

You can resolve the shortcut conflict using VSCode [Main menu] > File > Preferences > Keyboard Shortcuts.

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

79517604

Date: 2025-03-18 13:36:40
Score: 2.5
Natty:
Report link

Great answer! This approach is essential in most cases. However, if using commonly available orbit controls, you can simplify it by accessing the Spherical theta directly via controls.getAzimuthalAngle()

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

79517601

Date: 2025-03-18 13:35:40
Score: 1
Natty:
Report link

few approaches to fix this issue:

@OneToMany(mappedBy = "test1Id", fetch = FetchType.LAZY, cascade = CascadeType.ALL, orphanRemoval = true)

private Set<Test2> contacts = new HashSet<>();

2.Modify the persistence code to explicitly control the order


db.persist(test1);
db.flush(); // Force flush to ensure Test1 is in the database
db.persist(test2);

3.Use @MapsId for the child entity

@ManyToOne(fetch = FetchType.LAZY)
@MapsId("objectId") // assuming your embedded ID has an objectId field
@JoinColumn(name = "object_id")
private Test1 test1Id;

Check your Hibernate configuration
In Hibernate 6, check if you have changed any settings related to order operations or batch processing. The property hibernate.order_inserts might be relevant here.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @MapsId
  • Low reputation (1):
Posted by: Sahil Chotaliya

79517595

Date: 2025-03-18 13:33:39
Score: 0.5
Natty:
Report link

I encountered the same problem and I resolved it by settings:

openFileDialog1.RestoreDirectory = false;

openFileDialog1.ShowReadOnly = false;

Zilverspin

Reasons:
  • Whitelisted phrase (-2): I resolved
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jacques van der Ploeg

79517590

Date: 2025-03-18 13:30:38
Score: 4
Natty: 4
Report link

What you are looking for has been answered here: https://stackoverflow.com/a/79517166/9365246
It loads a large file by n given number of rows without loading the whole file from S3

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): What you are
  • Low reputation (1):
Posted by: Damien BENESCHI

79517589

Date: 2025-03-18 13:30:38
Score: 1
Natty:
Report link

Sounds like the type definitions for jest are not install in your project.Try adding them with:

npm install --save-dev @types/jest.

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

79517588

Date: 2025-03-18 13:29:38
Score: 0.5
Natty:
Report link

Calling functions from the template is not possible in Django normally, however this call templatetag provides this capability for any method you would like to evaluate. It is available in the dj-angles library and can be installed via pip install dj-angles.

{% call obj.get_something(...) as something %}

{{ something }}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: adparadox

79517585

Date: 2025-03-18 13:29:38
Score: 2
Natty:
Report link

While this couldn't have been your issue when you asked this, if anyone is getting this issue now it is because the Places API is in Legacy and can't be used for new usage. It's been replaced by the Places API (new).

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

79517580

Date: 2025-03-18 13:27:37
Score: 3.5
Natty:
Report link

Maybe less relevant here, but I used an older version of the code generation and the solution was to use typeMappings in the (pom) configuration.

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

79517577

Date: 2025-03-18 13:26:37
Score: 2.5
Natty:
Report link

Go to Android StudioSettingsBuildBuild ToolsGradle

Then, change the JDK version according to your project requirements.

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

79517575

Date: 2025-03-18 13:26:37
Score: 1
Natty:
Report link

Good morning,

sorry but I would need a more detailed explanation.

Do you want the circle to always be blurry?

However, i analyzed its HTML and CSS code.

I found some errors:

In the HTML:

At Line 9:

Tag must be paired, no start tag: [< /style>] (without space)

At line 18:

The html element name of [ feGaussianBlur ] must be in lowercase.

At line 19:

The html element name of [ feColorMatrix ] must be in lowercase.

For the CSS:

Unexpected duplicate selector ".container .circle", first used at line 22

Here you are the corrected code:

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    position: relative;
    width: 500px;
    display: flex;
    filter: url(#flt);  
    background-color: bisque;
}

.container .circle {
    background-color: #000;
    width: 200px;
    height: 200px;
    position: relative;
    border-radius: 50%;
    animation: leftM 5s ease-in-out 2s forwards;
}

svg {
    display: none;
}

@keyframes leftM {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(600px);
    }
}
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style><title></title>
    <link rel="stylesheet" href="style.css">
    </style>
</head>

<body>
    <div class="container">
        <div class="circle"></div>
    </div>
    <svg>
        <filter id="flt">
            <fegaussianblur in="SourceGraphic" stdDeviation="8"></fegaussianblur>
            <fecolormatrix type="matrix" values="
            1 0 0 0 0
            0 1 0 0 0
            0 0 1 0 0
            0 0 0 2 -1
            "></fecolormatrix>
        </filter>
    </svg>
</body>

</html>

Reasons:
  • Blacklisted phrase (1): Good morning
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: India Store

79517571

Date: 2025-03-18 13:25:36
Score: 2.5
Natty:
Report link

You could actually use the AnnotatedString.Companion.fromHtml. developper.android.com : fromHtml

val cleanDescription = AnnotatedString.Companion.fromHtml(bookdata?.description)
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Goudurixx

79517565

Date: 2025-03-18 13:23:36
Score: 1.5
Natty:
Report link

If the text contains a symbol that is delimiter, there is no way for machine or person to distinguish (Except for Analysts). Only way is request the source team to enclose complete text with " if it contains |.

In our case, source team does not have a way to enclose text " selectively. Hence we has requested to enclose each field with ", irrespective of if it contains | or not :-) . And it would work.

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

79517560

Date: 2025-03-18 13:21:35
Score: 1
Natty:
Report link

Your problems are likely because the Distance Matrix API, the Directions API, and the Places API are in "Legacy" status as of March 1. From the developer docs on each of them (only present in English version):

This product or feature is in Legacy status and cannot be enabled for new usage.

The Distance Matrix API and the Directions API have been replaced by the Routes API. The Places API has also been replaced, by the Places API (new).

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

79517545

Date: 2025-03-18 13:17:34
Score: 1
Natty:
Report link
:/opt/jfrog/xray/var/etc$ sudo  systemctl status xray.service
● xray.service - Xray service
     Loaded: loaded (/lib/systemd/system/xray.service; enabled; vendor preset: enabled)
     Active: active (exited) since Tue 2025-03-18 10:19:57 UTC; 6min ago
    Process: 156136 ExecStart=/opt/jfrog/xray/app/bin/xray.sh start (code=exited, status=0/SUCCESS)
   Main PID: 156136 (code=exited, status=0/SUCCESS)
        CPU: 32ms

Mar 18 10:19:21 db systemd[1]: Starting Xray service...
Mar 18 10:19:57 db systemd[1]: Finished Xray service.

why this error is accruing, when i try to connect with artifactory xray and database all are hosted in a different server

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): why this
  • Low reputation (1):
Posted by: vinod m

79517544

Date: 2025-03-18 13:16:34
Score: 0.5
Natty:
Report link

There are separate settings for new projects. You can update it once and it will be fine.

Select -> Settings for New Project:

enter image description here

And configure Maven home path there:

enter image description here

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

79517542

Date: 2025-03-18 13:16:34
Score: 3
Natty:
Report link

For anyone looking for what's the arrow ref, here is the doc for the mui V6 with the whole implementation.

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

79517541

Date: 2025-03-18 13:15:34
Score: 0.5
Natty:
Report link

You can simply use the SET command:

DECLARE deletedRowCount integer;
WITH deleted as 
(
    DELETE FROM MyTable "t"
    USING tmp_closed_positions
    WHERE condition
    RETURNING "t"."Id"
)
set deletedRowCount = (SELECT COUNT(*) FROM deleted);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jerome2606

79517536

Date: 2025-03-18 13:14:33
Score: 1
Natty:
Report link

Based on this answer.

Dataset<Row> mainData=df.select( "data.*").filter("data.eventdesc='logout' or data.eventdesc='login'")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Frank

79517520

Date: 2025-03-18 13:08:32
Score: 1.5
Natty:
Report link

Had to do the following steps to make the redirect work, but would like to have some info on how to get it to redirect without the suffix in the URL. That could be a rewrite thing.

1 Add HTTP Redirection to the site in Server Manager

2 Go to ISS to the site

3 Set HTTP Redirect to the site with portal/client as suffix.

4 Restart IIS

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: B.Quaink

79517518

Date: 2025-03-18 13:08:32
Score: 3.5
Natty:
Report link

this was solve with notification between framework for UI button click and app logic communication

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

79517517

Date: 2025-03-18 13:08:32
Score: 2
Natty:
Report link

Possibly a later feature: Pandas handles nonexistent times within the method tz_localize, with the nonexistent parameter: https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.Series.tz_localize.html

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

79517510

Date: 2025-03-18 13:04:31
Score: 2.5
Natty:
Report link

Sybase ASE now has GREATEST Function but only the input data types INT, CHAR and VACHAR are supported.

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

79517508

Date: 2025-03-18 13:04:31
Score: 1.5
Natty:
Report link

For android you can apply following workaround since its support is finished

  1. download aar (Android) from here https://artifactory.cronapp.io/libs-snapshot/com/arthenica/mobile-ffmpeg-full-gpl/4.4.LTS/
    2. manually install the file and add to your cache

    3. modify your build.gradle apply version 4.4.lts

    4. app/build.gradle apply your version 4.4.lts

    gradlew clean cache

    gradlew build --info

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

79517503

Date: 2025-03-18 13:02:30
Score: 1.5
Natty:
Report link
>>> X_ordered = np.take_along_axis(X, np.expand_dims(idx, (2, 3)), 1)
>>> X_ordered.shape
(2, 10, 64, 64)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: John Dawson

79517474

Date: 2025-03-18 12:54:28
Score: 3
Natty:
Report link

for jump to first line -> press zero (0)
and end to the line -> $ or shift + 5

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

79517473

Date: 2025-03-18 12:54:28
Score: 1
Natty:
Report link

Well, that's an interesting project. Extracting data from LinkedIn can be challenging, because of its strict API policies. If you ask me, I suggest checking out Linkedln's Talent Solutions API, but getting access can be challenging. Also, in my opinion, some third-party platforms might help with this.

If you're looking for ways to manage applicants more easily, you could look at platforms like Talentmate for ideas. They offer job posting and applicant tracking solutions.

I wish you good luck with your project.

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

79517468

Date: 2025-03-18 12:51:27
Score: 2
Natty:
Report link

For anyone with the same question but who can't access the Link of @Axel Fontaine anymore

https://documentation.red-gate.com/fd/flyway-lock-retry-count-setting-277579009.html

At the start of a migration, Flyway will attempt to take a lock to prevent competing instances executing in parallel. If this lock can't be obtained straight away, Flyway will retry at 1s intervals, until this count is reached, at which point it will abandon the migration. A value of -1 indicates that Flyway should keep retrying indefinitely.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @Axel
  • Low reputation (0.5):
Posted by: Martin_0

79517456

Date: 2025-03-18 12:45:26
Score: 1.5
Natty:
Report link

Out of 17 million records, what is the count of distinct keys. How many are going for change ?

Option 1:

Break sq results in 10 parts using mod function.

If target partition is not possible, try source partition. Create 10 session on existing mapping. In each session add a condition mod = 0, mod =1 like wise (sq overwrite). See if you can run all these sessions in parallel.

Option 2:

See if you can reduce number of updates. Update only when it is very absolutely necessary. 10 inserts are better then 1 update. Handle the SCD logic in mapping. And insert two records, Instead of update old record and insert new record. Update is a costly operation.

Option 3:

As Maciejg has suggested earlier. Drop unnecessary indexes and re-create in post sql.

Option 4:

Create 10 temp tables, insert and update each table using mod function. and finally insert into main table. For this we need 10 targets and router.

Good luck !!

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

79517449

Date: 2025-03-18 12:43:26
Score: 1
Natty:
Report link

I was finally able to deploy the app...but I am not sure if that's the right way to do it... but just so you know, this works.

  1. I created an instance of the MLFlow container. Then I got the Public IP generated from that.

  2. I went back to my local code and I added that URL from the MLFlow container running on Azure to the streamlit code as the "Tracking URI".

  3. Then I created another docker container and redeployed it as version 2.

  4. On Azure, I have created a new instance of the v2 streamlit app.

  5. It worked.

It is not an HTTPS, though...no clue how to make that become a secure URL... well, keep learning.

Cheers.

Reasons:
  • Blacklisted phrase (1): Cheers
  • Whitelisted phrase (-1): It worked
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: gurezende

79517448

Date: 2025-03-18 12:43:26
Score: 1
Natty:
Report link

In Sonarqube v10 this setting cannt be changed anymore and is fixed to 8 hours per day.

Source: https://docs.sonarsource.com/sonarqube-server/10.8/user-guide/code-metrics/metrics-definition/

However, you can now change the development cost per LOC (sonar.technicalDebt.developmentCost).

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

79517446

Date: 2025-03-18 12:43:26
Score: 2.5
Natty:
Report link

I faced a similar issue with my site served via cloudflare proxy. In my case the server was out of disk and cleaning some logs helped and the requests started working again.

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

79517435

Date: 2025-03-18 12:39:25
Score: 1.5
Natty:
Report link
\PAPIR\' & cstr(F4) & '\FLUTING\[FLUTING.xlsm]ZBIRNA'!$Y$28)

1. Put the ' sign before and after the variable

2. Convert the number to string by formul CStr in VBA

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

79517431

Date: 2025-03-18 12:36:25
Score: 3
Natty:
Report link

I have a similar problem

[2025-03-18 15:26:36] [INFO    ] discord.client: logging in using static token
Traceback (most recent call last):
  File "C:/Users/Валера/Desktop/Bot_DS/Bot.py", line 15, in <module>
    bot.run(settings['token']) # Обращаемся к словарю settings с ключом token, для получения токена.
  File "C:\Users\Валера\AppData\Local\Programs\Python\Python313\Lib\site-packages\discord\client.py", line 906, in run
    asyncio.run(runner())
  File "C:\Users\Валера\AppData\Local\Programs\Python\Python313\Lib\asyncio\runners.py", line 195, in run
    return runner.run(main)
  File "C:\Users\Валера\AppData\Local\Programs\Python\Python313\Lib\asyncio\runners.py", line 118, in run
    return self._loop.run_until_complete(task)
  File "C:\Users\Валера\AppData\Local\Programs\Python\Python313\Lib\asyncio\base_events.py", line 725, in run_until_complete
    return future.result()
  File "C:\Users\Валера\AppData\Local\Programs\Python\Python313\Lib\site-packages\discord\client.py", line 895, in runner
    await self.start(token, reconnect=reconnect)
  File "C:\Users\Валера\AppData\Local\Programs\Python\Python313\Lib\site-packages\discord\client.py", line 824, in start
    await self.connect(reconnect=reconnect)
  File "C:\Users\Валера\AppData\Local\Programs\Python\Python313\Lib\site-packages\discord\client.py", line 748, in connect
    raise PrivilegedIntentsRequired(exc.shard_id) from None
discord.errors.PrivilegedIntentsRequired: Shard ID None is requesting privileged intents that have not been explicitly enabled in the developer portal. It is recommended to go to https://discord.com/developers/applications/ and explicitly enable the privileged intents within your application's page. If this is not possible, then consider disabling the privileged intents instead.

this my code:

import discord
from discord.ext import commands
from confing import settings

bot = commands.Bot(command_prefix = settings['prefix'],intents=discord.Intents.all());


@bot.command() 
async def hello(ctx):
    author = ctx.message.author 


    await ctx.send(f'Hello, {author.mention}!')
bot.run(settings['token'])
Reasons:
  • Blacklisted phrase (1): I have a similar problem
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have a similar problem
  • Low reputation (1):
Posted by: Валерос

79517425

Date: 2025-03-18 12:34:24
Score: 1.5
Natty:
Report link

If you are using Docker Desktop, upgrading it to version 4.39.0 should fix the issue.

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

79517406

Date: 2025-03-18 12:28:23
Score: 1.5
Natty:
Report link

Ialso asked myself why a function<>-object needs a copyable target when the function<>-object isn't constructed with copying but with moving. Then I had the idea that deleting, copying and moving the target inside the function<>-object must be virtual, i.e. when the function<> object is initialized these three operations have to be initialized as function-pointers. This requires copyability of the target at creation time even if the target is moved inside the function<>-object.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Edison von Myosotis

79517397

Date: 2025-03-18 12:23:21
Score: 4
Natty: 4
Report link

Interfaces cannot contain attributes, hence they should not be put in the interface.

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

79517391

Date: 2025-03-18 12:21:21
Score: 2
Natty:
Report link

I found the solution for me: https://www.prisma.io/docs/orm/more/help-and-troubleshooting/vercel-caching-issue#:~:text=Problem%E2%80%8B,%2Dgeneration%20isn't%20triggered.

Reasons:
  • Whitelisted phrase (-2): I found the solution
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Myno

79517385

Date: 2025-03-18 12:20:21
Score: 3
Natty:
Report link

If you want to continue using Yarn 1.x, replace --immutable with --frozen-lockfile, which is the equivalent option for that version.

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

79517384

Date: 2025-03-18 12:20:21
Score: 1
Natty:
Report link

I had a similar issue. In my case, Japanese fonts were not showing up in screenshots when using @sparticuz/chromium and puppeteer-core. I’m also using Next.js and deploying to Vercel.

I tried solutions like await chromium.font([font file URL]) or loading the font file the way you described, but they didn't work.

Here’s how I solved it:

  1. Place your font file in the project root like this:
(root directory)
- fonts
  - NotoSansJP-Regular.ttf
- src
- public
  1. Add this to your next.config.js to make sure the font is included in the serverless bundle:
const nextConfig = {
  experimental: {
    outputFileTracingIncludes: {
      '**': ['./fonts/**/*']
    }
  }
};

module.exports = nextConfig;
  1. In your code, load the font from the filesystem:
import fs from "fs";
import path from "path";

const fontPath = path.join(process.cwd(), "fonts", "NotoSansJP-Regular.ttf");
chromium.font(fontPath);

const browser = await puppeteerLib.launch({
  args: [...chromium.args, "--no-sandbox", "--disable-setuid-sandbox"],
  defaultViewport: chromium.defaultViewport,
  executablePath: await chromium.executablePath(),
  headless: chromium.headless,
});

I hope it will work. For more details on including files in Vercel functions, see:
👉 How can I use files in Vercel Functions?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Whitelisted phrase (-2): I solved
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: EI1024

79517381

Date: 2025-03-18 12:19:20
Score: 2
Natty:
Report link

This linked question provides an answer using std::exception_ptr, but requires both the legacy library and code using the library to be compiled with C++11 or later.

As noted in comments from @Botje, @jabaa, and @WeijunZhou, you may be able to get information from the legacy library itself, or can guess the exception type using casting.

Since the legacy library offers no clues and your guesses have not been successful, beyond a "general, unnamed exception", you are out of luck.

Reasons:
  • Blacklisted phrase (1): This link
  • No code block (0.5):
  • User mentioned (1): @Botje
  • User mentioned (0): @jabaa
  • User mentioned (0): @WeijunZhou
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: AlainD

79517375

Date: 2025-03-18 12:18:20
Score: 6
Natty: 7
Report link

What you used it RUn configuration and in build configuration?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What you use
  • Low reputation (1):
Posted by: gGeorgieva

79517371

Date: 2025-03-18 12:17:20
Score: 1.5
Natty:
Report link

Found out that the solution was actually quite simple. Just adding: showtext_auto() before plotting.

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

79517357

Date: 2025-03-18 12:12:18
Score: 1
Natty:
Report link
>>> import numpy as np
>>> np.take_along_axis(x, idx[np.newaxis], -1)
array([[[ 0.21132487,  0.78867513, -0.21132487, -0.78867513],
        [ 0.21132487,  0.78867513, -0.21132487, -0.78867513],
        [ 0.21132487,  0.78867513, -0.21132487, -0.78867513],
        [ 0.21132487,  0.78867513, -0.21132487, -0.78867513]],

       [[ 0.21132487,  0.78867513, -0.21132487, -0.78867513],
        [ 0.21132487,  0.78867513, -0.21132487, -0.78867513],
        [ 0.21132487,  0.78867513, -0.21132487, -0.78867513],
        [ 0.21132487,  0.78867513, -0.21132487, -0.78867513]]])

https://numpy.org/doc/stable/reference/generated/numpy.take_along_axis.html

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

79517347

Date: 2025-03-18 12:10:17
Score: 3.5
Natty:
Report link

It was a bug on Debugpy or VsCode, the last updates have fixed the problem.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Luís Henrique Martins

79517342

Date: 2025-03-18 12:09:17
Score: 1.5
Natty:
Report link

When using a VS Code integrated terminal or Powershell, paste with Ctrl + Shift + V to paste the token without special formatting.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
Posted by: Trevor Karjanis

79517340

Date: 2025-03-18 12:08:17
Score: 0.5
Natty:
Report link

I was working on upgrading a PHP 5.6 app to 8.3 and ran into this. For me the answer was that my database errors from PDO were disabled and one of my queries was failing for an incorrect integer values. In earlier versions of MySQL (v5) this wasn't an error but in the latest (v8) is is.

What was happening is that I got the white screen but no errors in the apache error logs and nothing displayed to the screen. The DB error from the query triggered a silent fatal error that didn't get logged anywhere.

Once I enabled the PDO errors again I was able to debug the issue.

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

79517338

Date: 2025-03-18 12:05:16
Score: 2.5
Natty:
Report link

I know this is an old question, but in case other people come across this issue, and your error message is like this:

enter image description here

The command to apply the adjustment that I executed was this:

ALTER AUTHORIZATION ON DATABASE:: <Database> TO <Login>

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Misael C. Homem

79517330

Date: 2025-03-18 11:59:15
Score: 1.5
Natty:
Report link

For EcomExpert users managing multiple accounts, launching a process under another user account ensures seamless operations. An Ecom Expert might need to run automated tasks, manage permissions, or delegate operations without disrupting workflows. Using secure authentication methods, such as role-based access controls, helps maintain security while enabling efficient management. Advanced tools on EcomExpert allow users to automate processes under different accounts for streamlined order processing, inventory tracking, and marketing automation. By implementing best practices, businesses can enhance productivity, maintain security, and optimize e-commerce performance while ensuring smooth transitions between user accounts. Efficiency meets expertise with Ecom Expert

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vivek Digi

79517329

Date: 2025-03-18 11:58:15
Score: 0.5
Natty:
Report link

I am using DSpace version 8

  1. Modify Java Source Code Navigate to the Java source code: C:\dspace\dspace-api\src\main\java\org\dspace\core\Email.java

Inside the public void send() method, replace the following 3 lines:

            if (attachments.isEmpty() && moreAttachments.isEmpty()) {
                // If a character set has been specified, or a default exists
                if (charset != null) {
                    // message.setText(fullMessage, charset);
                    message.setContent(fullMessage, "text/html; charset=" + charset);
                } else {
                    // message.setText(fullMessage);
                    message.setContent(fullMessage, "text/html; charset=UTF-8");
                }
            } else {
                Multipart multipart = new MimeMultipart();
                // create the first part of the email
                BodyPart messageBodyPart = new MimeBodyPart();
                // messageBodyPart.setText(fullMessage);
                messageBodyPart.setContent(fullMessage, "text/html; charset=" + charset);
                multipart.addBodyPart(messageBodyPart);
            }
  1. Modify Email Template Open the register email template from this path: C:\dspace\config\emails\register

Add the following HTML code:

            #set($subject = "${config.get('dspace.name')} Account Registration")
            #set($phone = ${config.get('mail.message.helpdesk.telephone')})
            <html>
              <head>
                <style>
                  body {
                    font-family: Arial, sans-serif;
                    font-size: 14px;
                    line-height: 1.6;
                  }
                  .highlight {
                    color: #007bff;
                    font-weight: bold;
                  }
                </style>
              </head>
              <body>
                <p>Dear User,</p>
                <p>To complete registration for a <strong><i>${config.get('dspace.name')}</i></strong> account, please click the link below:</p>
                <p><a href="${params[0]}" class="highlight">${params[0]}</a></p>
                <p>If you need assistance with your account, please email <a href="mailto:${config.get('mail.helpdesk')}">${config.get('mail.helpdesk')}</a></p>
                #if( $phone )
                <p>Or call us at ${phone}.</p>
                #end
                <p>The ${config.get('dspace.name')} Team</p>
              </body>
            </html>
  1. Build and Deploy Run the following commands after modifying the .java or .vm files:

cd C:\dSpace mvn package

cd C:\dspace\target\dspace-installer ant fresh_install Note: After running the above commands, replace the dspace.cfg and local.cfg files with your previous backup as the commands may override the email settings.

  1. Deploy the WebApp Copy the webapps folder from: C:\dspace\webapps to C:\Program Files\Apache Software Foundation\Tomcat 10.1\webapps

  2. Restart Services Stop and restart Solr:

solr stop -p 8983 solr start -p 8983 Stop and restart the Tomcat service:

  1. Check Logs For error logs and additional information, check the DSpace log file: C:\dspace\log\dspace.log
Reasons:
  • Blacklisted phrase (1): the link below
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Milind S. Patil.

79517313

Date: 2025-03-18 11:55:14
Score: 1
Natty:
Report link

Added this in .csproj file, which seems to fix the issue with nuget package.

 <PropertyGroup Condition="'$(RuntimeIdentifier)' != 'ios-arm64'">
        <RuntimeIdentifier>iossimulator-x64</RuntimeIdentifier>
 </PropertyGroup>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Maddiee

79517301

Date: 2025-03-18 11:52:13
Score: 1.5
Natty:
Report link

I assume you are using python-can package (https://python-can.readthedocs.io/en/stable/). Try to change bus configs:

bus0 = can.interface.Bus(channel=CAN0, interface='socketcan', fd=True)
bus1 = can.interface.Bus(channel=CAN1, interface='socketcan', fd=True)
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Maciek

79517291

Date: 2025-03-18 11:48:12
Score: 5.5
Natty:
Report link

check the exact path importing that files

i have the same issue like i just import a img with wrong path and i did't use the image. after i got error in deployment time in vercel after i remove the import file then redeploy

Reasons:
  • Blacklisted phrase (1): i have the same issue
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): i have the same issue
  • Low reputation (1):
Posted by: bilal pt

79517289

Date: 2025-03-18 11:46:12
Score: 1.5
Natty:
Report link
#deny all
*
# allow any subdirectories
!/**/
# allow any md-files/*
!*.md
# allow any files in .resources subdirectories that start with a dot
!.resources/.*/*
# allow gitignore
!.gitignore
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Armen Kazaryan

79517284

Date: 2025-03-18 11:44:11
Score: 2
Natty:
Report link

As alrady mentioned, JOIN referes to INNER JOIN on default, you might want to look into LEFT joins, which ignore rows that don't have data instead of keeping them null.

The other is RIGHT JOIN, which is actually not used, (Its nearly identical to LEFT JOIN)

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

79517278

Date: 2025-03-18 11:43:11
Score: 3
Natty:
Report link

This is kind of weird. I don't have much to add but I googled how to open .grp files right now specifically to look at how The Cluefinders works. I didn't expect to see someone with my exact thought process right away. Hope you got something to work!

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

79517275

Date: 2025-03-18 11:42:11
Score: 1
Natty:
Report link

This is an active bug on JetBrains tracker, and the proposed solution above goes against SASS docs and recommendations.

"sass-lang.com/documentation/values/calculations" states that: "You can also use interpolation in a calculation. However, if you do, no operations that involve that interpolation will be simplified or type-checked, so it’s easy to end up with extra verbose or even invalid CSS. Rather than writing calc(10px + #{$var}), just write calc(10px + $var)!"

https://youtrack.jetbrains.com/issue/WEB-56489/SASS-Unexpected-term-error-when-using-namespaced-functions-variables-as-calc-arguments

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

79517272

Date: 2025-03-18 11:41:10
Score: 5
Natty: 6.5
Report link

I'm also migrating from WiX V3 to V5 and I'm stuck at this point. Previously, we used MakeSfxCA.exe for creating a self-extracting executable custom action. Has the process changed in V5?

Reasons:
  • RegEx Blacklisted phrase (1.5): I'm stuck
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mahender Kumar

79517267

Date: 2025-03-18 11:40:10
Score: 0.5
Natty:
Report link

You can try to disable and then enable all extensions in VSCode, that worked for me.

I guess there is some issue with VSCode not being able to load the environment that is fixed after we do this.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Suchint

79517262

Date: 2025-03-18 11:39:09
Score: 2
Natty:
Report link

How to pass a table name and column name as params? Answered by LLM :

CREATE OR REPLACE FUNCTION increment(x int, row_id int, table_name text, column_name text)
RETURNS void AS
$$
BEGIN
  EXECUTE format('UPDATE %I SET %I = %I + $1 WHERE id = $2', 
                 table_name, column_name, column_name)
  USING x, row_id;
END;
$$ 
LANGUAGE plpgsql VOLATILE;
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How to
Posted by: Deckard

79517249

Date: 2025-03-18 11:37:09
Score: 2
Natty:
Report link

Stay ahead of the curve in the exciting world of Web 3.0 and cryptocurrency! Our website provides real-time insights and analysis on the latest trends, emerging projects, and market movements in the decentralized finance (DeFi) space. Get up-to-the-minute data, expert commentary, and valuable resources to help you navigate the dynamic landscape of Web 3.0 crypto.

https://www.trendx.tech/project

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

79517245

Date: 2025-03-18 11:35:08
Score: 1.5
Natty:
Report link

Why do you want to load database fixture after test execution (afterAll method) ?

As reported in the official documentation (https://jestjs.io/docs/setup-teardown) you only need to do setup once, typically in the beforeAll() method.

If you are already doing this and still have this error then maybe there are still unresolved async operations.

Try to do something like this:

beforeAll(async () => {
   await loadFixture()
});

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why do you
  • Low reputation (1):
Posted by: Andrea Acampora

79517240

Date: 2025-03-18 11:30:05
Score: 10.5 🚩
Natty: 5
Report link

When I try to delete the build folder using command rm -rf app/assets/builds/* It does not find any build folder but I am also facing the same error. Was there any solution? Rails version 7.1.5 Ruby 3.2.6

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (1): I am also facing the same error
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same error
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: Mohsin

79517230

Date: 2025-03-18 11:25:04
Score: 3
Natty:
Report link

The problem was that the file was named main.c and the BASIC file was named main.bas

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

79517220

Date: 2025-03-18 11:22:03
Score: 4
Natty:
Report link

Ensure PandaCount is in the correct directry, varify its namespace, update Livewire config if needed, register the component correctly, clear cache, and check for typos => https://filamentapps.dev/blog/troubleshooting-laravel-livewire-resolving-the-unable-to-find-component-error

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

79517217

Date: 2025-03-18 11:21:02
Score: 4.5
Natty:
Report link

Solved!

I needed to change view type form Button to androidx.appcompat.widget.AppCompatButton , but why?

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (0.5): why?
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Jawegiel

79517214

Date: 2025-03-18 11:20:02
Score: 2
Natty:
Report link

I just checked your code using check50 and here is the results

:) outdated.py exists  
:) input of 9/8/1636 outputs 1636-09-08  
:) input of September 8, 1636 outputs 1636-09-08  
:) input of 10/9/1701 outputs 1701-10-09  
:) input of October 9, 1701 outputs 1701-10-09  
:) input of " 9/8/1636 " outputs 1636-09-08  
:) input of 23/6/1912 results in reprompt  
:) input of 10 December, 1815 results in reprompt  
:) input of October/9/1701 results in reprompt  
:) input of 1/50/2000 results in reprompt  
:) input of December 80, 1980 results in reprompt  
:) input of September 8 1636 results in reprompt

so what is the problem?

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

79517199

Date: 2025-03-18 11:16:01
Score: 2.5
Natty:
Report link

enter image description hereimage

Home>find&select>repace>

Select the options according to the image

Within:sheet or workbook(active sheet or all sheet)

Lookin:Formula

\>>>SELECT REPLACE ALL

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: sedi

79517198

Date: 2025-03-18 11:15:01
Score: 0.5
Natty:
Report link

I ended up going with a javascript method. Didn't seem like I had to but I just finally gave in

` columns.Bound(o => o.Email).ClientTemplate("\\#=renderEmail(data)\\#");

columns.Bound(o => o.Phone).ClientTemplate("\\#=renderPhone(data)\\#");

`

function renderEmail(data) {
    if (data.Email) {
        return `<a href="mailto:${data.Email}">${data.Email}</a>`;
    } else {
        return '';
    }
}
function renderPhone(data) {
    if (data.Phone) {
        return `<a href="tel:${data.Phone}">${data.Phone}</a>`;
    } else {
        return '';
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jay

79517196

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

Check the port on which your app is running and which port you are running ngrok on . in my case i was running my app on 3000 and i was giving ngrok http 8080 instead of 3000 .

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

79517194

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

I just had to update the TestFlight App and then it worked!

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hassan Ajan