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

79517190

Date: 2025-03-18 11:13:00
Score: 0.5
Natty:
Report link

This happens because of partial array initialization rules in C

How Partial Initialization Works?

    int arr[5] = {1, 2, 3, 0, 0};

What If You Don’t Initialize At All?

    int arr[5];  // Uninitialized array

Key Takeaway:

    int arr[5] = {0};  // All elements set to 0
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Alphin Thomas

79517175

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

Found the answer on another forum. I was not using the auth middleware. To fix it, in my routes file all I had to do was add:

import { middleware } from '#start/kernel'

router.get('/', [HomeController, 'index']).use(middleware.auth())
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: RyanJMP

79517171

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

For anyone else observing this problem:

I had to do:

sudo ldconfig

Because apparently sometimes, the linker cache needs to be refreshed after adding new shared libraries.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Michael Baumgärtner

79517165

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

I found the issue. I was using the wrong event. The correct one is: github.event.workflow_run.name

 - name: Download Staging Artifact
    if: github.event.workflow_run.name == Smoke Test Staging
    run: |
      gh run download ${{ github.event.workflow_run.id }} \
      -p "playwright-staging-report-*" \
      -D playwright-staging-reports
    env:
      GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Thanks everyone

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Libin Thomas

79517154

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

I think that books is a Pandas Series, but fuzzywuzzy.process.extractOne expects a list of strings as the second argument. So you may try to convert books to a list before passing it to process.extractOne writing:

books = pd1["title"].str.strip().str.lower().tolist()  
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Camilla Giuliani

79517142

Date: 2025-03-18 10:56:54
Score: 8 🚩
Natty: 5
Report link

@Ingrid Iplinsky have you found solution on this? I'm struggling with the same issue....

Reasons:
  • RegEx Blacklisted phrase (2.5): have you found solution on this
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Ingrid
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Robert Głowacki

79517131

Date: 2025-03-18 10:53:53
Score: 2
Natty:
Report link

You are looking for the action Change Under Caret, which you can find at Version Control Systems > Change Under Caret in the keymap.

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

79517129

Date: 2025-03-18 10:52:53
Score: 1.5
Natty:
Report link

Under linux and compatible systems, you may use

~/.git-credentials

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

79517127

Date: 2025-03-18 10:52:51
Score: 10.5 🚩
Natty: 5
Report link

I am just wondering if the issue been fixed and how?

Msg 7710, Level 16, State 1, Line 13

Warning: The partition scheme 'partFuncScheme' does not have any next used filegroup. Partition scheme has not been changed.

I also get the same error message in my test.

Thanks & regards,

Irene

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): regards
  • RegEx Blacklisted phrase (1.5): fixed and how?
  • RegEx Blacklisted phrase (1): I also get the same error
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I also get the same error
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Irene

79517123

Date: 2025-03-18 10:50:48
Score: 8.5 🚩
Natty: 5
Report link

I've the same problem of the question and I've seen many sample that shows to use this: transition: grid-template-areas 0.5s ease; but none is working for me. Any ideas? thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): Any ideas
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): 've the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: michele thefirst

79517108

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

It looks like Vincent was correct that `datagrid()` doesn't work for imputed objects.

I think you have to do this instead:

data_age50 = complete(data_imputed, 'long', include = TRUE) %>% mutate(age=50) %>% as.mids()
with(data_age50, avg_comparisons(my_model, variables = list(Allocation= c("Control", "Intervention")), type = "link"))
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: medahank

79517107

Date: 2025-03-18 10:42:46
Score: 2.5
Natty:
Report link

Yes! To prevent SmartScreen warnings, opt for an EV Code Signing Certificate, as it offers an immediate reputation. If you do not need a physical USB token, use a cloud-based signing solution such as:

SSL2Buy – Provides EV Code Signing Certificates with cloud signing solutions.

DigiCert KeyLocker – Cloud secure signing, no hardware required.

SSL.com eSigner – EV Code Signing without USB tokens.

GlobalSign Atlas – Enterprise cloud-based signing.

These options provide remote team access and automated signing without hardware concerns.

Reasons:
  • RegEx Blacklisted phrase (1.5): reputation
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Judy Page

79517097

Date: 2025-03-18 10:40:46
Score: 2.5
Natty:
Report link

This question is currently tracked in the R8 issue tracker as https://issuetracker.google.com/403517811.

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

79517092

Date: 2025-03-18 10:39:45
Score: 4
Natty:
Report link

You can try below linked details for the issue mentioned by you.

https://docs.preset.io/docs/using-jinja-to-manipulate-the-aggregated-column-used-on-a-chart

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

79517091

Date: 2025-03-18 10:38:45
Score: 2
Natty:
Report link

just add this code to the CSS File :

* { overflow: hidden !important; }
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jamal Said

79517078

Date: 2025-03-18 10:34:43
Score: 4
Natty:
Report link

How to fix it => update version unity to 2022.3.53f

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How to fix it
  • Low reputation (1):
Posted by: Sỹ Nguyễn Quang

79517077

Date: 2025-03-18 10:33:43
Score: 4
Natty: 4
Report link

I have try all methods, but my question is not reslove, and my question is

>>> import torch
>>> print(f'CUDA Available: {torch.cuda.is_available()}
  File "<stdin>", line 1
    print(f'CUDA Available: {torch.cuda.is_available()}
                                                      ^
SyntaxError: EOL while scanning string literal
>>> print(f"CUDA Device Name: {torch.cuda.get_device_name(0)}")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/root/anaconda3/envs/test/lib/python3.8/site-packages/torch/cuda/__init__.py", line 341, in get_device_name
    return get_device_properties(device).name
  File "/root/anaconda3/envs/test/lib/python3.8/site-packages/torch/cuda/__init__.py", line 371, in get_device_properties
    _lazy_init()  # will define _get_device_properties
  File "/root/anaconda3/envs/test/lib/python3.8/site-packages/torch/cuda/__init__.py", line 229, in _lazy_init
    torch._C._cuda_init()
RuntimeError: CUDA unknown error - this may be due to an incorrectly set up environment, e.g. changing env variable CUDA_VISIBLE_DEVICES after program start. Setting the available devices to be zero.

I try sudo apt-get install nvidia-modprobe, sudo reboot .I use lxc container, the cuda is 11.7. torch is 1.13.0+cu117, nvidia is 535, please help me . thank you

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ginebra Casilles

79517075

Date: 2025-03-18 10:33:42
Score: 4.5
Natty:
Report link

This is issue in FireFox browser ,They have fixed in Version 137. ref: https://bugzilla.mozilla.org/show_bug.cgi?id=1947112

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

79517070

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

TLDR: I was looking for the problem in the wrong place, was stuck in a rut, reading nrmzmh’s response unstuck me and I found my stupid mistake.

So I was so focused on the fact that I’m learning Dash and I’m not familiar with it that I was staring at the code to create graphs in Dash and not getting what went wrong. Thanks to nrmzmh I realized that wasn’t the problem.

So in Jupyter I had this:

re.findall("\\n (\w*) Class: (\w*) \\n", text)

And all my testing told me the data was fine, because it was.

But then, as a .py script, it didn’t handle the escape characters well, so I wrote this instead:

re.findall(r"\\n (\w*) Class: (\w*) \\n", text)

So I added the "r" to make it a raw string but forgot to change the double backslashes back to single ones, like so:

re.findall(r"\n (\w*) Class: (\w*) \n", text)

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: AGA

79517059

Date: 2025-03-18 10:27:41
Score: 0.5
Natty:
Report link

Ignore everything : *

Allow markdown files: !*.md

Allow everything inside .resourses and its subdirectories:

!.resourses/
!.resourses/**

Ensure .gitignore itself is tracked:

!.gitignore

Full code:

*

!*.md

!.resourses/
!.resourses/**

!.gitignore
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kiryl Famin

79517049

Date: 2025-03-18 10:22:40
Score: 1.5
Natty:
Report link

Simple declarations will cause no issue. It's good practice as long as those declarations are not stateful object that need proper disposal.

Also because of a function like the build method might be called frequently, you should avoid expensive computations there.

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

79517042

Date: 2025-03-18 10:19:39
Score: 2
Natty:
Report link

What android API version you testing at? Outline class has method canClip() defining whether the outline can be used to clip a view. And it says As of API 33, all Outline shapes support clipping. Prior to API 33, only Outlines that could be represented as a rectangle, circle, or round rect supported clipping. So there is no way to clip view to path on pre-33 API without creating custom view

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: HukuToc2288

79517040

Date: 2025-03-18 10:19:39
Score: 2
Natty:
Report link

The default value of the scatter function of the Axes3D class (which gets called in this case) is 20. However 20 is also the default value if s is None in the Axes class (in normal mode). So when you set it to None in 3d mode, it will not get a default value and raises an error.

Axes3d:

 def scatter(self, xs, ys, zs=0, zdir='z', s=20, c=None, depthshade=True,
                *args, **kwargs)

Axes:

def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
                vmin=None, vmax=None, alpha=None, linewidths=None, *,
                edgecolors=None, plotnonfinite=False, **kwargs)

I'm not sure how I could provide a solution, since not using the parameter would use default behavior. What would you want to achieve by setting it to None?

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

79517018

Date: 2025-03-18 10:11:37
Score: 1.5
Natty:
Report link

It seems you're using CMake.

Check out the docs : Do you have

find_package(Qt6 REQUIRED COMPONENTS Widgets)
target_link_libraries(mytarget PRIVATE Qt6::Widgets)

in your CMakeLists.txt ?

If you have this but still can't compile, the issue might be with your PATH variable.

Try reinstalling and / or manually adding your dependencies to your PATH if not done automatically. This blog post might help you.

To check your paths, try to set the debug option in CMake :

set(CMAKE_FIND_DEBUG_MODE 1)
find_package(Qt6 COMPONENTS Core Gui Widgets REQUIRED)
set(CMAKE_FIND_DEBUG_MODE 0)
Reasons:
  • Blacklisted phrase (1): This blog
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ashley

79517012

Date: 2025-03-18 10:09:37
Score: 1.5
Natty:
Report link

Pandas DataFrames have an itertuples method that returns a generator of named tuples. The named tuples have an _asdict() method. So you can get a generator of rows as dictionaries with:

row_generator = (row._asdict() for row in df.itertuples())

References:

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dr John A Stevenson

79517011

Date: 2025-03-18 10:08:36
Score: 1.5
Natty:
Report link
import { createRequire } from "module";
const require = createRequire(import.meta.url);

const jsonData = require("../file.json");
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: jibran khalil

79516987

Date: 2025-03-18 09:59:34
Score: 0.5
Natty:
Report link

I think it will be hard to get a good answer to this here, I would recommend posting this on the image.sc forum as it's more image-related.
It looks like phase correlation may give better results. If you want to stick with features you can also try skimage package SIFT() or ORB() that allow better parameterisation. In general for low contrast apply normalisation, for noise reduction apply Gaussian blur or scale down. The feature keypoint detection methods actually already include some of this functionality internally.

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

79516985

Date: 2025-03-18 09:59:34
Score: 2
Natty:
Report link

One way I think of it is simple:
Service A provides an API: /check_token, Service B adds an Interceptor to intercept all requests, and then calls Service A's API to verify and obtain permissions

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

79516972

Date: 2025-03-18 09:56:33
Score: 4
Natty:
Report link

Step1: Go Home - Front Page = > Edit

enter image description here

Step2: Select Rank Math SEO => Click on Edit Snippet

enter image description here

Step3: Delete %title% %sep%

Step4 Save is done

enter image description here

For more: https://hort51.com/

Or email to me by: [email protected]

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Frank Blanding

79516969

Date: 2025-03-18 09:54:33
Score: 0.5
Natty:
Report link

I'd recommend trying VIDEX (Virtual Index for MySQL), which you can find on GitHub at https://github.com/bytedance/videx. It's an open-source project that introduces hypothetical index support to MySQL, similar to PostgreSQL's HypoPG.

VIDEX works by introducing a new storage engine that intercepts optimizer requests for statistics such as table rows, ndv (number of distinct values), and cardinality. These requests are then redirected to a Python-based statistics service. Although VIDEX is still in the early stages as an open-source project, it has shown promising results in benchmarks like TPC-H and JOB. With the oracle NDV and cardinality provided, the VIDEX query plan achieves 100% identity with that of InnoDB.

Additionally, VIDEX offers interfaces for NDV and cardinality estimation. If you are comfortable with Python, you can extend or reimplement these algorithms as needed.

For ease of use, you can try out VIDEX using Docker or by compiling it from source. It can be deployed either as a plugin or as a separate instance to ensure it does not impact your production environment.

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

79516963

Date: 2025-03-18 09:52:32
Score: 3.5
Natty:
Report link

Things are moving on towards application/openapi+yaml and application/openapi+json.

See https://datatracker.ietf.org/doc/draft-ietf-httpapi-rest-api-mediatypes/

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

79516962

Date: 2025-03-18 09:52:32
Score: 1
Natty:
Report link

To the Inbox component, adding socketUrl does the job. I can now receive real-time notifications with this

<Inbox
  socketUrl="https://eu.ws.novu.co"
  backendUrl="https://eu.api.novu.co"
  applicationIdentifier="APP_ID"
  subscriberId="SUBSCRIBER_ID"
>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Sarmad

79516956

Date: 2025-03-18 09:50:31
Score: 1
Natty:
Report link

It may be related to how you initialise the Dash app. On my end, the plot displays correctly when I structure like this.

import dash
from dash import dcc, html

# Initialize Dash app
app = dash.Dash(__name__)

app.layout = html.Div(children=[
    html.H1("SCP Containment Class Distribution"),
    dcc.Graph(id="scp_chart", figure=fig)
])

if __name__ == "__main__":
    app.run(debug=True)

enter image description here

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

79516954

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

The problem is that youre subscribing multiple times and not waiting for the subscription to be ready before fetching the data. To fix this, you only need to subscribe once in componentDidMount and check if the subscription is ready using ready(). Then, you can use Tracker.autorun() to reactively fetch and update the messages when they change.

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

79516952

Date: 2025-03-18 09:50:31
Score: 1
Natty:
Report link

For Ruby to handle MS Excel issue with UTF encoding for German characters I used this approach:

UTF8_BOM = "\uFEFF".freeze
def to_csv
  CSV.generate(headers: true) do |csv|
    csv << csv_headers
    csv << csv_data
  end.prepend(UTF8_BOM)
end
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yaroslav Yenkala

79516942

Date: 2025-03-18 09:46:30
Score: 3.5
Natty:
Report link

What was if we need to show multiple line curve. And is any same solution with TextRenderer method.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What was
  • Low reputation (1):
Posted by: Krutik Dobariya

79516930

Date: 2025-03-18 09:42:29
Score: 4.5
Natty:
Report link

The sync response returned availableThermostatModes as a string, which is deprecated according to this documentation. I also found this sync validator which helped me identify the problem.

Reasons:
  • Blacklisted phrase (1): this document
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mattijs Lootens

79516927

Date: 2025-03-18 09:42:29
Score: 4
Natty:
Report link

Found a reasonable solution for my specific use case thanks to @dazwilkin - I can share a document or folder with a service account through its email in the same way I would share with a human. Other use cases might require domain wide delegation.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @dazwilkin
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Rainbow-Anthony Lilico

79516922

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

Tag handlers build the view. They don't render the view. Use a Renderer instead, usually in combination with an UI component. Or simply use a tag file (with JSTL), especially as you ultimately don't seem to want to use UI components.

See also:

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: BalusC

79516921

Date: 2025-03-18 09:41:28
Score: 0.5
Natty:
Report link

I have the same issue. I need to know if the new version of the app is published when I publish the app from the developer console. I have to do some automation. Unfortunately, there is no Official API to fetch the live app version for Android. I use Unity and I need to work in Unity Editor. AppUpdateManager from Android only works on Android Builds.

I solved this issue currently, but it might be changed in the future. It takes the latest version from the App Store and Play Store. You need to have Selenium.WebDriver NuGet Package for this to work. You can use this NuGet Package to install it. Also, you need to pass something like “com.company.project” to the methods below to work.

You have to download ChromeDriver for Windows. Extract the .zip file. Then copy and paste .exe into your project somewhere. In this way, you don’t have to use Selenium-Manager to automatically download the ChromeDriver. You would need to put Selenium-Manager in your Environment PATH and in your Unity Editor tools directory for it. Giving the ChromeDriver path much more convenient and easier.

private static void GetLatestVersionFromAppStore(string bundleId, Action<string> onCompleted)
{
    UnityWebRequest request = UnityWebRequest.Get($"https://itunes.apple.com/lookup?bundleId={bundleId}");
    
    request.SendWebRequest().completed += operation =>
    {
        if (request.result != UnityWebRequest.Result.Success)
        {
            onCompleted?.Invoke(string.Empty);
            return;
        }
        
        string json = request.downloadHandler.text;
        var parsedJson = JsonUtility.FromJson<AppStoreResponse>(json);
        onCompleted?.Invoke(parsedJson.results.Length > 0 ? parsedJson.results[0].version : string.Empty);
        request.Dispose();
    };
}

private static string GetLatestVersionFromPlayStore(string packageName)
{
    string url = $"https://play.google.com/store/apps/details?id={packageName}&hl=en";
    var options = new ChromeOptions();
    options.AddArgument("--headless");

    string[] guids = AssetDatabase.FindAssets("chromedriver t:DefaultAsset");

    string chromeDriverPath;
    if (guids.Length > 0)
        chromeDriverPath =
            AssetDatabase.GUIDToAssetPath(guids.Find(x => AssetDatabase.GUIDToAssetPath(x).Contains(".exe")));
    else
        chromeDriverPath = string.Empty;

    using (var driver = new ChromeDriver(chromeDriverPath, options))
    {
        driver.Navigate().GoToUrl(url);
        
        var button = driver.FindElement(By.XPath("//button[i[contains(@class, 'google-material-icons') and text()='arrow_forward']]"));
        button.Click();

        var wait = new WebDriverWait(driver, TimeSpan.FromSeconds(10));
        
        var isPageLoaded = wait.Until(drv =>
        {
            ReadOnlyCollection<IWebElement> webElements = drv.FindElements(By.ClassName("G1zzid"));
            
            bool areAllElementsDisplayed = webElements.All(element => element.Displayed);
            
            return areAllElementsDisplayed && (bool)((IJavaScriptExecutor)drv).ExecuteScript(
                "return document.readyState == 'complete'");
        });

        var upperElements = driver.FindElements(By.ClassName("q078ud"));
        var lowerElements = driver.FindElements(By.ClassName("reAt0"));
        
        Dictionary<string, string> elements = new Dictionary<string, string>();

        for (int i = 0; i < upperElements.Count; i++)
            elements[upperElements[i].Text] = lowerElements[i].Text;
        
        return elements.GetValueOrDefault("Version", string.Empty);
    }
}
Reasons:
  • Blacklisted phrase (1): I have to do
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): I have the same issue
  • Whitelisted phrase (-2): I solved
  • Whitelisted phrase (-1.5): You can use
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (0.5):
Posted by: DeathPro

79516917

Date: 2025-03-18 09:39:28
Score: 3.5
Natty:
Report link

Right click on tab. Option near the foot of the context menu: "Copy into new window".

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

79516916

Date: 2025-03-18 09:39:28
Score: 3
Natty:
Report link

According to the answers here: Is it possible to seamlessly redirect websockets? You can do a redirect, but there is no guarantee that the client will follow it. I know that the thread is about nodejs implementation, but the specification of Websocket, that is mentioned is the same, no matter the server's language implementation.

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Marian Vigenin

79516910

Date: 2025-03-18 09:36:27
Score: 2.5
Natty:
Report link

its work for me <p-datePicker formControlName="dateImputation" dateFormat="dd/mm/yy" [style]="{'width':'100%'}" [panelStyle]="{'height':'69%'}"appendTo="body">

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

79516900

Date: 2025-03-18 09:33:26
Score: 3
Natty:
Report link

I just realized that replace(...) is case sensitive and made it work with a ToLower(...) conversion

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Laviza Falak Naz

79516897

Date: 2025-03-18 09:32:26
Score: 2.5
Natty:
Report link

If your Power Automate Replace expression isn’t working, double-check the syntax and confirm you're using the correct input values. Try using simple static text to test the function first. rslhelper suggests ensuring there are no extra spaces or mismatched quotation marks in your expression.

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

79516890

Date: 2025-03-18 09:27:25
Score: 4.5
Natty:
Report link

As far as I know, the doc you use here seems a little old, which is talking about IE based taskpane. Could you let us know your environment details?
Ideally, after your configuration on shared runtime, and open the taskpane. You will find "attach debugger" here and find functions.js inside your add-in resource.
enter image description here

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you let us know your
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: SiruiMSFT

79516888

Date: 2025-03-18 09:26:24
Score: 1.5
Natty:
Report link

Turns out it was really simple - just disable the App Sandbox in the .entitlements - you live & learn

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