79654722

Date: 2025-06-05 15:08:59
Score: 2
Natty:
Report link

Change

url="jdbc:mysql://localhost:3306/web_student_tracker?useSSL=false"

to

url="jdbc:mysql://localhost:3306/web_student_tracker?useSSL=false&allowPublicKeyRetrieval=true"

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Mesmer M.

79654717

Date: 2025-06-05 15:01:57
Score: 8.5 🚩
Natty: 5
Report link

Looking for the same. Have you solved it?

Reasons:
  • Blacklisted phrase (2): Have you solved it
  • RegEx Blacklisted phrase (1.5): solved it?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Luis Simoes

79654713

Date: 2025-06-05 14:59:56
Score: 3
Natty:
Report link

Maybe this can help ? stackoverflow - Fatal: could not read username for 'https //github.com' device not configured

I know that's not exactly what you asked but as advised in the post I'd recommend switching to ssh if possible, this is less pain to maintain.

To help you reproduce, if the issue is due to Jenkins running it not as a tty, maybe you should try executing your code locally but inside a non-interactive script.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Aurel B

79654709

Date: 2025-06-05 14:55:55
Score: 1
Natty:
Report link

The official fix in electron-react-boilerplate changes the devEngines value to this:

  "devEngines": {
    "runtime": {
      "name": "node",
      "version": ">=14.x",
      "onFail": "error"
    },
    "packageManager": {
      "name": "npm",
      "version": ">=7.x",
      "onFail": "error"
    }
  },
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: xfeeefeee

79654707

Date: 2025-06-05 14:55:55
Score: 6.5 🚩
Natty: 4.5
Report link

I'm having trouble getting the multiline syntax for " ${{ if" to work. You seem to have it working above, but using your example on my end just ends up with syntax errors. I'm unable to find any docs explaining how the syntax is supposed to work (e.g. indentation, special characters like the leading '?', etc).

Any guidance or links to docs explaining how this is supposed to work?

Thx.

Reasons:
  • Blacklisted phrase (1): Thx
  • RegEx Blacklisted phrase (2): I'm having trouble
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: David

79654705

Date: 2025-06-05 14:51:54
Score: 1.5
Natty:
Report link

I believe you are after a repeater:

https://filamentphp.com/docs/3.x/forms/fields/repeater

This will allow you to repeat the components, and on a single click, you'll be able to save all the data at once.

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

79654702

Date: 2025-06-05 14:51:54
Score: 2
Natty:
Report link

Thank you very much for your helpful responses and sorry for the delay in response, I unfortunately was unable to work on this project for a while.

Following your advice, I have now removed 'contrasts' from the data inputted into the GLMM and draw no inference from the model output. But, from the model I use the emmeans package to run comparisons and contrast and draw inference from there. I believe these are correct and align with the vignettes from emmeans.

###Main effects (con1 , con2, con1 X con2)
#con1: 3 levels = self, friend, stranger
#con2: 2 levels = happy, neutral

joint_tests(model)

#con1 - sig
#con2 - non-sig
#int  - sig

#----------------------#
###Unpicking 'main effect' of condition 1 (aggregated across condition2)
condition1_emm <- emmeans(model, pairwise ~ con1)
condition1_emm 

#----------------------#
###Unpicking 'interaction effect'
#condition 1 split by condition2 
#(Happy: self vs friend, self vs stranger, friend vs stranger)
#(Neutral: self vs friend, self vs stranger, friend vs stranger)
con1_by_con2 <- emmeans(model, pairwise ~ con1| con2)
con1_by_con2 

con1_by_con2 %>%confint()

#----------------------#
###Unpicking 'interaction effect'
#condition 2 split by condition1 
#(Self: Happy vs Neutral)
#(Friend: Happy vs Neutral)
#(Stranger: Happy vs Neutral)
con2_by_con1 <- emmeans(model, pairwise ~ con2| con1)
con2_by_con1 

con2_by_con1 %>%confint()

One other area I want to explore within the interaction is whether the difference between two people (e.g., self vs. friend) changes depending on the prime (happy vs. neutral). So, I have created custom contrast coding for this, is this correct and also okay to draw inference from please?

# Get the estimated marginal means for the interaction
emm_interaction <- emmeans(model, ~ con1 * con2)

# Define all three interaction contrasts with 6 elements each
contrast_list <- list(
 "Self_vs_Friend_Happy_vs_Neutral" = c( 1, -1, 0, -1, 1, 0),
 "Self_vs_Stranger_Happy_vs_Neutral" = c( 1, 0, -1, -1, 0, 1),
 "Friend_vs_Stranger_Happy_vs_Neutral" = c( 0, 1, -1, 0, -1, 1)
)

# Run the contrasts with multiple comparisons adjustment
emm_interaction_cont <- contrast(emm_interaction, contrast_list, adjust = "sidak")
emm_interaction_cont

#Confidence intervals
emm_interaction_cont%>%
  confint()

Thank you very much for your help.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: nalee_psych

79654697

Date: 2025-06-05 14:48:53
Score: 1
Natty:
Report link

I want to add to this. I'm publishing .NET 8 Azure Function apps from Visual Studio 2022. If I check the box that says "Produce single file" in my publish profile, the publish succeeds, but no functions are found and the function app goes into a cycle of trying to reload. We can see the warmup function firing occasionally. No errors are logged anywhere. Even the App Insights telemetry logs only show that no functions were found. This is clearly broken and clearly very difficult to troubleshoot. I hope this helps someone else.

enter image description here

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Mike Yeager

79654692

Date: 2025-06-05 14:45:52
Score: 1.5
Natty:
Report link

I faced this issue in Visual Studio, and here's what worked for me: The issue seemed to be caused by a caching problem in Visual Studio or IIS Express.
-> Restarting the system resolved it for me.

After the restart, I was able to run the project without any issues. This method worked in my case.

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

79654691

Date: 2025-06-05 14:45:52
Score: 1
Natty:
Report link

/opt/bitnami/apache/conf/domain.crt

conf is here:
/opt/bitnami/apache2/conf/bitnami/bitnami-ssl.conf

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

79654688

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

I got an answer on the Microsoft Tech community. The short answer is yes, 3 is the maximum number of scopes. Quoting answer here for discoverability:

Yes, the "maxItems": 3 restriction in the schema for the scopes property is intentional. This means you can only specify up to three scopes out of the available options ("team", "personal", "groupChat", "copilot") for a given bot or command list.

This limitation is likely in place to ensure clarity in the bot's experience and to avoid potential conflicts or ambiguities that could arise from enabling all possible scopes simultaneously.

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

79654684

Date: 2025-06-05 14:39:50
Score: 3
Natty:
Report link

Please take a look at this solution. It seems to be what you are looking for.

Functional Behavior Tree

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

79654681

Date: 2025-06-05 14:39:50
Score: 3.5
Natty:
Report link

I get the solution as Betafamily is unable to generate installable link if there is watch app added.

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

79654680

Date: 2025-06-05 14:38:50
Score: 0.5
Natty:
Report link

This error, in general, means that Docker was looking for a certain container identified by that SHA signature but did not find the container.

In addition to the other answers here, check for any accidental changes to your dockerfile or docker-compose file that have occurred since the last time you built the project, such as by switching git branches.

In my case, an old version of my docker-compose file was in my environment due to changing to an outdated git branch. The old version built the image using an ARM image (on an Apple M Macbook) but the new version specified "platform: linux/amd64" for the container. Thus, Docker was looking for an ARM container and only found an amd64 container. Restoring the correct version of my docker-compose by merging git branches fixed it

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

79654674

Date: 2025-06-05 14:34:48
Score: 7 🚩
Natty: 4
Report link

This works fine for me ... in one direction: "los detalles t\u00E9cnicos" is replaced by "los detalles técnicos". However, if I try to swap in the other direction, i get this error: "UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe9 in position 0: unexpected end of data". Any ideas ?

Reasons:
  • Blacklisted phrase (1): Any ideas
  • RegEx Blacklisted phrase (1): i get this error
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jurgen Vandenberghe

79654669

Date: 2025-06-05 14:30:46
Score: 0.5
Natty:
Report link
SELECT date,
       get_json_object(json_col, '$.estudents[0].id_student') AS id_student,
       get_json_object(json_col, '$.estudents[0].score') AS score
FROM your_table
WHERE get_json_object(json_col, '$.estudents[0].score') RLIKE '\\.'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Cesar

79654664

Date: 2025-06-05 14:27:45
Score: 0.5
Natty:
Report link

These answers were a good starting point for me, but non quite worked.

git diff --name-only --diff-filter=ACM main | xargs rubocop --force-exclusio

this adds a filter for added, copied or modified files and forces the exclusion so you don't check files that are ignored in the rubocop.yml

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

79654635

Date: 2025-06-05 14:09:40
Score: 1.5
Natty:
Report link

Short version, create a parent and reparent the glb to the same parent as the box mesh. Now, if you're doing physics calculations (which it appears you're doing) you might need to twiddle with bounding boxes and whatnot.

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

79654631

Date: 2025-06-05 14:07:40
Score: 1.5
Natty:
Report link

Termux is designed to run with user permissions, so commands that run as root are impossible unless the device itself is rooted, for obvious reasons. Hence, su, sudo, etc. won't work on an unrooted device with Termux.

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

79654627

Date: 2025-06-05 14:04:39
Score: 1.5
Natty:
Report link

It looks as though this might be databricks secret sauce. You can achieve the same result by just using

transform(mapped_trace, x -> transform(x.segments, y -> y.shape))

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

79654602

Date: 2025-06-05 13:54:36
Score: 1.5
Natty:
Report link

std::variant is designed as a type-safe union, it does not support direct polymorphism or implicit upcasting to a common base. And then the issue is that you are trying to cast the active variant value to the Base class using reinterpret_cast, which is unsafe. Also, u are avoiding std::visit so instead make all variant types inherit from the same base class which contains the shared member "i". This way, you can safely work with pointers or references to the base class without needing unsafe casts or runtime checks.

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

79654594

Date: 2025-06-05 13:50:34
Score: 1.5
Natty:
Report link

Can you try with this?

UPDATE revenue_data
SET gtm_type = p.type
FROM (
    SELECT DISTINCT pl, type
    FROM emea.product
    WHERE type = 'value1'
) p
WHERE revenue_data.pl = p.pl;

or You Want to Dynamically Set gtm_type to the Matching type?

Reasons:
  • Whitelisted phrase (-2): Can you try
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Haripriyabalan Hari

79654589

Date: 2025-06-05 13:47:33
Score: 2.5
Natty:
Report link

i think one solution is allowing cors in ur backend index.js file

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

79654588

Date: 2025-06-05 13:47:33
Score: 3
Natty:
Report link

This post https://techcommunity.microsoft.com/blog/iis-support-blog/error-hresult-0x80070520-when-adding-ssl-binding-in-iis/377281 made me suspect a problem during import.

I got rid of the HRESULT: 0x80070520 message by deleting and re-importing the certificate, with “Allow this certificate to be exported” checked.

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

79654579

Date: 2025-06-05 13:42:32
Score: 1.5
Natty:
Report link

As the person before said, "you cannot remove it completely". But try something like this:

:highlight VertSplit cterm=NONE ctermbg=NONE

This may get the result you expect.

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

79654570

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

In principle this potentially be implemented using a ConfigSource plugin. Example here.

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

79654563

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

As I understand it a legend is simply a colour key to identify which data set a value blongs to.

E.g. a bar graph representing the distribution of favourite types of ice cream among a group of people can be drawn with each bar being coloured differently. The legend would then be a list matching each colour with each flavour. Yellow for vanilla, brown for chocolate etc.

So if the yellow bar reaches 15 on the graph the legend informs us that 15 people out of the data set prefer vanilla icecream, as the legend says yellow represents a preference for vanilla.

In the example you posted the legend is the bit to the right of the graph.

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

79654547

Date: 2025-06-05 13:26:27
Score: 1.5
Natty:
Report link

You could eliminate the Doppler effect by adding the current forward/backward velocity of the ship to the starting velocity of your bullets, but I wouldn't go down that road as it would mean adding a visual improvement that introduces inconsistencies in the core shooting mechanic of your game, e.g. the bullets fly faster when you are moving forward.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Sahand Malaei Balasi

79654534

Date: 2025-06-05 13:21:25
Score: 1.5
Natty:
Report link

The screenRecord limatation was increased from 3 minutes to 30 minutes in Android 14: https://cs.android.com/android-studio/platform/tools/adt/idea/+/30e0278da071829221e1282fff0381c175e38049

If you are running under rooted device you can apply this workaround to get more than 30 minutes, you can follow this tutorial : https://maestro.dev/blog/fixing-androids-3-minute-screen-recording-limitation

Or we can do the ugly solution by looping the screenrecord adb shell command and merge the frame later.

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Probably link only (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Sofien Rahmouni

79654520

Date: 2025-06-05 13:15:23
Score: 0.5
Natty:
Report link

Still it is not working on both localhost and 127.0.0.1, so
step1: use ngrok or deploy it
step2: add it in settings -> authorized domain
then it worked for me

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

79654518

Date: 2025-06-05 13:12:22
Score: 0.5
Natty:
Report link

 <button id="signup-btn"> <a href='/signup'>Sign Up</a></button> 

this is a mistake

<Link to="/signup">Sign up</Link>

You should be using Link from react-router-dom in react

https://v5.reactrouter.com/web/api/Link visit this for reference

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

79654512

Date: 2025-06-05 13:08:21
Score: 5.5
Natty:
Report link

tried this on postgresql

--Syntax
SELECT 
LOWER(REGEXP_REPLACE(<CamelCaseExample>, '([a-z0-9])([A-Z])', '\1_\2', 'g')) AS snake_case;

--Example
SELECT 
LOWER(REGEXP_REPLACE('CamelCaseExample', '([a-z0-9])([A-Z])', '\1_\2', 'g')) AS snake_case;

--On all records in any table
with my_table (camelcase) as (
  values ('StackOverflow'), 
         ('Stackoverflow'), 
         ('stackOverflow'), 
         ('StackOverFlowCom'), 
         ('stackOverFlow')
)
select camelcase, trim(both '_' from lower(regexp_replace(camelcase, '([a-z0-9])([A-Z])', '\1_\2', 'g'))) as snake_case
from my_table;

Just FYI, a) REGEXP_REPLACE finds places where a lowercase letter or digit is followed by an uppercase letter. b) It inserts an underscore (_) between them. c) LOWER() converts the entire result to lowercase.

output
enter image description here

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Blacklisted phrase (1): Stackoverflow
  • Blacklisted phrase (1): stackOverflow
  • Blacklisted phrase (1): StackOverFlow
  • Blacklisted phrase (1): stackOverFlow
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Gurupreet Singh Bhatia

79654508

Date: 2025-06-05 13:07:21
Score: 3
Natty:
Report link

I know this is an old question, but the answer is sadly NO.

An example of two issues in different repos with the same comment ID:

https://github.com/dotnet/yarp/pull/459#discussion_r509375552

https://github.com/dotnet/runtime/issues/3453#issuecomment-509375552

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

79654506

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

If the legend displays the color scale accurately, then it is an effective legend. if your data is continuous interval level data then a color map is suitable.

if you have continuous data but need a limited set of discrete shades of color (out of accessibility requirements, for example) you may consider binning the data into buckets of, say, 0%, 25%, 50%, 75% and 100%, and map these to 5 different shades of a single color. You should be aware of drawbacks to this method in certain scenarios however, because outside of your visualization, these arbitrary cutoffs may not be meaningful to users.

But if the instruction is to simply include a legend, there are many types of legends to meet this standard and the one you choose should reflect the scale of whatever kind of data you are displaying.

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

79654504

Date: 2025-06-05 13:04:20
Score: 1
Natty:
Report link
protected override void OnInitialized()
{
    if(RendererInfo.IsInteractive == false)
    {
        // Pre-Rendering
    }
    else if (OperatingSystem.IsBrowser())
    {
        // WebAssembly
    }
    else
    {
        // Server
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: lolhans

79654497

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

I've been stuck with the same issue for days, but the cause was something else.
Default odoo uses non-patched wkhtmltopdf.
This causes issues on newer systems.

The patched version on it's turn requires libssl1.1 (not libssl3), which is also not by default available in recent ubuntu server versions.

Steps to solve:

  1. Remove current installation:
    sudo apt remove --purge wkhtmltopdf

  2. Download and install libssl1.1
    wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.debsudo dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb

  3. Download and install qkhtmltopdf (with patched Qt)
    wget https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-2/wkhtmltox_0.12.6.1-2.jammy_amd64.deb
    sudo apt install ./wkhtmltox_0.12.6.1-2.jammy_amd64.deb

This solved it on my side!

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): stuck with the same issue
  • Low reputation (1):
Posted by: Jef Fabri

79654495

Date: 2025-06-05 13:00:18
Score: 2
Natty:
Report link

Most likely the the timestamp value is not set when you created the data view.

You can go to Management > Kibana > Data Views. Edit your data view and set the timestamp.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Murat K.

79654486

Date: 2025-06-05 12:55:18
Score: 0.5
Natty:
Report link

As mentioned in MSDOC,

Azure DevOps Server 2019 and later versions support integration with GitHub Enterprise Server repositories only. Integration with other Git repositories is not supported.

If you are using Azure DevOps Server 2019 or 2020 versions, GitHub.com is not supported, you have to authenticate using GitHub Enterprise Server with PAT or GitHub credentials.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): get the same error
  • High reputation (-1):
Posted by: Pravallika KV

79654478

Date: 2025-06-05 12:50:16
Score: 3
Natty:
Report link

So this doesn't work for me as well

tomSelect.settings.plugins = ["remove_button"];

So i've found this in the doc and it works for me.

https://tom-select.js.org/plugins/remove-button/#remove-button

new TomSelect('#input-tags',{
    plugins: {
        remove_button:{
            title:'Remove this item',
        }
    },
    
});
    
Reasons:
  • Whitelisted phrase (-1): works for me
  • RegEx Blacklisted phrase (2): doesn't work for me
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lk dev

79654468

Date: 2025-06-05 12:48:16
Score: 1.5
Natty:
Report link

According to your error message from pip, the maximum version of torch that you're allowed to install is 2.2.2. From what I see on PyPI, it seems that 2.2.2 was the last version for which they released wheels for MacOS 10.9+ (see for example that the list of wheels for 2.3.0 does not contain [...]-macosx_10_9[...].whl, but the list of wheels for 2.2.2 does).

What is your MacOS version? If my understanding is correct, the only version of PyTorch 2.7.1 available for Python 3.9 and MacOS is torch-2.7.1-cp39-none-macosx_11_0_arm64.whl, so you will need MacOS 11 or newer for it to work.

Reasons:
  • Blacklisted phrase (1): What is your
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Valérian Rey

79654458

Date: 2025-06-05 12:43:14
Score: 2
Natty:
Report link

You should download the reference genome and GTF files from ENSEMBL (and NOT ENCODE), and then use those files directly in the "nextflow run ..." command. There are some differences in the columns of reference genome or GTF files in ENCODE and ENSEMBL, and the ENSEMBL format is considered as a correct format for nf-core/rnaseq pipeline.

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

79654455

Date: 2025-06-05 12:40:13
Score: 3
Natty:
Report link

Might be late and a non-issue for you but anyone else watching: You can do a router.replace and a useEffect to validate if someone else tries to access froma bookmarked link

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

79654440

Date: 2025-06-05 12:32:11
Score: 1
Natty:
Report link

The capture groups are indexed based on their absolute position in the string, not the order they are encountered. So (match-string 2) will return the match data for the second captured group "2".

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

79654423

Date: 2025-06-05 12:26:09
Score: 6 🚩
Natty:
Report link

IMHO, there might be issues concerning the bundle configuration. As recommended on the DoctrineExtensions documentation page, did you follow the installation method shown here https://symfony.com/bundles/StofDoctrineExtensionsBundle/current/index.html ?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Marilena RUFFELAERE

79654412

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

If someone is still trying to solve this, you need to use Apps> Google Workspace> Gmail>Confomity, not Apps> Google Workspace> Gmail> Routing.

Go to "Content conformity" or whatever this is called in english. Clic add a rule.

Assuming your group address is [email protected]:

Step 1: Select "Outgoing" and "Internal - send"

Step 2: select "ALL of the following match the message"

a) Clic "Add" → "Advanced content match" → Position "Sender header" → "Matches regex" and add the following regular expression: (?i)group@domain\.com

Validate it, and then

b) "Add" → "Advanced content match" → Position "Recipients header" → "Not matches regex" and add the following regular expression: (?i)group@domain\.com

The (?i) part is probably not mandatory but it does not hurt.

The b) test can probably also be skipped, since adding [email protected] as a recipient if the address is already within the recipients list won't change anything.

Step 3: "Also deliver to": [email protected]

Save.

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

79654410

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

As a workaround, we ended up using the following command instead of the mentioned command:

npm --allow-same-version --no-git-tag-version version $(git describe --tags --abbrev=0 --match "v*")

In other words, calling git describe instead of using from-git.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Arno Moonen

79654395

Date: 2025-06-05 11:59:01
Score: 1
Natty:
Report link

Thank you for the details. The error usually means there’s a mismatch or missing configuration between your Teams app manifest, Azure AD app registration, or OAuth connection.

Key things to check:

  1. Manifest botId matches Azure AD App Registration
// manifest.json
"bots": [
  {
    "botId": "<your-azure-ad-app-client-id>",
    "scopes": [
      "personal",
      "team",
      "groupChat"
    ],
    "supportsFiles": false,
    "isNotificationOnly": false
  }
],
"validDomains": []
  1. OAuth Connection Name matches in code and Azure
# In your bot code (Python)
OAUTH_CONNECTION_NAME = "YourConnectionName"  # Must match Azure Bot OAuth connection name
# When sending OAuth card
await step_context.prompt(
    OAuthPrompt.__name__,
    PromptOptions(
        prompt=Activity(
            type=ActivityTypes.message,
            text="Please sign in",
        )
    ),
)
  1. Azure Bot OAuth Connection Settings

    • In Azure Portal, go to your Bot resource > Settings > OAuth Connection Settings.

    • The connection name must match what you use in your code.

References:

If you’ve checked these and still see the error, try clearing Teams cache or reinstalling the app.

Thank you,

Karan Shewale.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: KARAN

79654385

Date: 2025-06-05 11:52:00
Score: 1
Natty:
Report link

In case anyone is encountering the same issue using the Java SDK, here's the solution. Note the port number and setEndpoint() function call.

SpeechClient.create(
    SpeechSettings.newBuilder().setEndpoint("us-central1-speech.googleapis.com:443").build()
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kavindu Diyes

79654383

Date: 2025-06-05 11:50:59
Score: 2.5
Natty:
Report link

Looks like you don't have python_calamine installed. You should install it.

Also you can tell us about steps you've already tried so we can find solution faster

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

79654381

Date: 2025-06-05 11:46:59
Score: 2.5
Natty:
Report link

Navigate to the Play Console → Your app → Test and release → Setup → App integrity. Under “App signing key certificate,” copy the SHA-1 fingerprint and add it to Firebase. If it still fails, remove the debug keys and keep only this one.

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

79654378

Date: 2025-06-05 11:44:57
Score: 4
Natty: 4.5
Report link

Just had this exact same issue and fixed it by following the steps from here:
https://learn.microsoft.com/en-us/azure/azure-sql/database/active-geo-replication-security-configure?view=azuresql

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

79654377

Date: 2025-06-05 11:42:57
Score: 3
Natty:
Report link

use a query exploration and use page location, seems to work showing gclid but the standard reports so not

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

79654375

Date: 2025-06-05 11:41:56
Score: 1
Natty:
Report link

Derived values can be overridden as of Svelte 5.25. Do note that they are not deeply reactive. So newsItems.push(item) will not work. Instead use assignment: newsItems = [...newsItems, item].

If you don't want to upgrade to Svelte 5.25 or higher, then I'm afraid you can only use an $effect rune.

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

79654370

Date: 2025-06-05 11:38:55
Score: 2.5
Natty:
Report link

The latest version of the extension https://marketplace.visualstudio.com/items?itemName=ms-mssql.mssql now has a design schema preview which allows creating ER diagrams, transforming them to SQL and publishing them to the DB.

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

79654364

Date: 2025-06-05 11:34:54
Score: 2.5
Natty:
Report link

check if you have a file called "network_security_config.xml". It might be too restrictive for example, allowing cleartext only for specific domains or missing mobile-network specific permissions

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

79654354

Date: 2025-06-05 11:30:52
Score: 0.5
Natty:
Report link

Just Simple Alternative

In my case, i am using infinite builder by default. no itemCount. and my list is widget.images .

PageView.builder(
    controller: _pageController,
    allowImplicitScrolling: true,
    itemBuilder: (context, index) {
      final url = widget.images[index % widget.images.length];
      return InteractiveViewer(maxScale: 3, child: Image.asset(url));
    },
),

But also, i want to view initial page, so i manage using _pageController . To initialize _pageController , i sent initialIndex for example index 2.
When i snap to right, infinite looping work. after i reach last page, the page show first page again and keep going.

But !!, when i star over again. after pageview show initial page then i snap to left, infinite loop not work. from this i learn that is pageview default infinite only work for upcoming index.

To fix this, i create schema to handle range page/index e.g. from 0-1000. and create function to calculateActualInitialIndex. to make infinite loop to left direction, i set initialIndex to center of range page. if range 0-1000, then initialIndex will be 500. This will work to infitie loop for left direction until indexValue is 0.

and here to initialize _pageCntroller and calculate initial:

late final PageController _pageController;
static const int _infiniteScrollFactor = 1000; // range for 0-1000

int _calculateInitialPage() {
    return (_infiniteScrollFactor ~/ 2) * widget.images.length + widget.initialIndex;
}

@override
void initState() {
    _pageController = PageController(initialPage: _calculateInitialPage());
    super.initState();
}
Reasons:
  • RegEx Blacklisted phrase (1): i want
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Indra Trisna

79654346

Date: 2025-06-05 11:26:51
Score: 2
Natty:
Report link

You need to detect something like ROOT_SOURCE_DIR in your build_makefileN.mk

ROOT_SOURCE_DIR:=$(abspath $(dir $(filter %build_makefile1.mk,$(MAKEFILE_LIST))))

And then include intermediate makefiles relative to this directory:

include $(ROOT_SOURCE_DIR)/common/other_dir/...

See also https://github.com/sergeniously/makeup/blob/master/makeup/.mk

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

79654334

Date: 2025-06-05 11:16:49
Score: 0.5
Natty:
Report link

Gue juga pernah ngalamin hal serupa di project React Native gue. Jadi gini, API-nya jalan mulus pas pakai Wi-Fi, tapi langsung error begitu nyoba lewat data seluler. Ternyata penyebabnya bisa macem-macem, tapi beberapa hal ini yang paling masuk akal:

Masalah HTTPS/SSL Kadang koneksi via data seluler lebih ketat. Kalau SSL-nya self-signed atau kurang valid, Android bisa auto block, apalagi di jaringan seluler. Di Wi-Fi sih aman-aman aja. Coba cek validitas sertifikat di server kamu.

Belum setting network_security_config.xml Android butuh config khusus biar bisa akses domain tertentu di atas API 28. Gue waktu itu kelupaan masukin domain ke situ, makanya error terus di data.

Provider seluler ngeblok domain/IP Bisa jadi IP backend kamu ke-detect aneh sama operator, atau DNS-nya error. Gue sempet pindahin ke Cloudflare, langsung lancar.

DNS masalah di jaringan seluler DNS yang dipake waktu pakai data bisa beda sama Wi-Fi. Gue atur DNS di HP ke 8.8.8.8 (Google) atau 1.1.1.1 (Cloudflare), lumayan ngaruh.

Buat tesnya, gue biasanya buka API-nya langsung di browser HP waktu pakai data. Kalau kadang bisa kadang timeout, fix itu masalah DNS/SSL atau domain-nya lambat resolve.

Kalau mau akses alternatif biar lebih stabil, bisa juga lewat sini: 🔗 https://link.space/@dauntogelterbaru

Semoga ngebantu ya! ✌️

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

79654329

Date: 2025-06-05 11:13:48
Score: 1
Natty:
Report link

I did what the git told me to do and it solved my same problem:

git config --global --add safe.directory E:/Projects-D/Shima/Coding_New
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: EhsanSafari

79654327

Date: 2025-06-05 11:12:47
Score: 2.5
Natty:
Report link

The problem was due to the fact that I downloaded an older version of the framework from Sourceforge instead of Gitthub! I have paid the price for my stupidity. Darkmode works fine in the latest version from Github.

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

79654326

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

Here is a short, simple and fast solution.

function is_ip_in_cidr($ip, $cidr)
{
  list($net, $mask) = explode('/', $cidr);
  $ip = inet_pton($ip);
  $net = inet_pton($net);
  $prefix = $mask >> 3;
  $shift = 8 - ($mask & 7);

  if (8 == $shift) {
    return !strncmp($ip, $net, $prefix);
  } else {
    $ch_mask = -1 << $shift;
    return !strncmp($ip, $net, $prefix) && ((ord($ip[$prefix]) & $ch_mask) == (ord($net[$prefix]) & $ch_mask));
  }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: firejox

79654324

Date: 2025-06-05 11:10:46
Score: 2.5
Natty:
Report link

Having the same problem now, and I use i3 and Eclipse 2025-03 (4.35.0)

The thing that worked for me was pressing the Insert (ins) button to go in replace mode and pressing it again to return in insert mode. Hope this helps someone.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): Having the same problem
  • Low reputation (1):
Posted by: Simone Mastroianni

79654321

Date: 2025-06-05 11:08:45
Score: 6.5
Natty: 7.5
Report link

Can you share file your .aar for me? I build file .aar but it error load dlopen failed: library "libffmpegkit_abidetect.so" not found

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you share
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you share
  • Low reputation (1):
Posted by: Quang Trung

79654310

Date: 2025-06-05 11:02:44
Score: 1.5
Natty:
Report link

Add the below packages in package.json and do npm install

"@testing-library/dom": "^10.4.0",
"@testing-library/user-event": "^13.5.0"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shareef DotNet Guru

79654298

Date: 2025-06-05 10:57:41
Score: 8.5 🚩
Natty: 5
Report link

Even I am also facing the same issue, I changed the browser parameter to google chrome in TCP (automation specialist 2)

Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • RegEx Blacklisted phrase (2): Even I am
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Frenzy

79654295

Date: 2025-06-05 10:55:40
Score: 1.5
Natty:
Report link

Just specify --config-file option as an argument for clang-tidy:

set(CMAKE_CXX_CLANG_TIDY "clang-tidy;--config-file=${CMAKE_SOURCE_DIR}/.clang-tidy")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sergey Belenkov

79654294

Date: 2025-06-05 10:55:40
Score: 4.5
Natty:
Report link

i always guessed this was because of js files being imported inside ts files. Thus even if mongoose has it's types, its not begin recognized.

While exporting I made this changed and everything worked :

export default /** @type {import("mongoose").Model<import("mongoose").Document>} */ (User);

This is my full file :

    import mongoose from "mongoose"

const userSchema = new mongoose.Schema({
    username: {
        type: String,
        required: [true, "Please provide a username" ],
        unique: true
    },
    email: {
        type: String,
        required: [true, "please provide email"],
        unique: true
    },
    password: {
        type: String,
        required: [true, "Please provide a password"]
    },
    isVerified: {
        type: Boolean,
        default: false
    },
    isAdmin: {
        type: Boolean,
        default: false
    },
    forgotPasswordToken: String,
    forgotPasswordTokenExpiry: Date,
    verifyToken: String,
    verifyTokenExpiry: Date
})

const User = mongoose.models.User || mongoose.model("User", userSchema)


export default /** @type {import("mongoose").Model<import("mongoose").Document>} */ (User);
Reasons:
  • RegEx Blacklisted phrase (2.5): Please provide
  • RegEx Blacklisted phrase (2.5): please provide
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Anish Thakkar

79654289

Date: 2025-06-05 10:50:38
Score: 5
Natty: 4.5
Report link

I Have the same Problem.

I place the file(s) in a directory called TreeAndMenu in myextensions/ folder.

An add the following code at the bottom of my LocalSettings.php

wfLoadExtension( 'TreeAndMenu' );
Reasons:
  • Blacklisted phrase (1): I Have the same Problem
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I Have the same Problem
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Toitone

79654286

Date: 2025-06-05 10:48:37
Score: 1
Natty:
Report link

try using this approach for working with new tabs:

with context.expect_page() as new_tab:
          self.accountSetup_link.click()
tab = new_tab.value
acc_setup = AccountSetup(tab, context)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Konstantin

79654284

Date: 2025-06-05 10:46:36
Score: 1
Natty:
Report link

--FIRST REMOVE ROWS THAT FALL WITHIN A MINUTE OF EACH OTHER (d2 is datetime)

while exists(select 1 from #temp t inner join #temp t2 on t.[member] = t2.[member] and datediff(minute,t.smalldatestamp,t2.smalldatestamp) = 1 and t.d2 != t2.d2)

begin

delete #temp from #temp inner join

(select top 1 t1.[member], t1.d2 from #temp t1 inner join #temp t2 on t1.[member] = t2.[member] and datediff(minute,t1.smalldatestamp,t2.smalldatestamp) = 1 and t1.d2 != t2.d2) t3

on #temp.[member] = t3.[member] and #temp.d2 = t3.d2

end

--THEN REMOVE ROWS THAT THAT FALL IN THE SAME MINUTE

while exists(select 1 from #temp t inner join #temp t2 on t.[member] = t2.[member] and t.smalldatestamp = t2.smalldatestamp and t.d2 != t2.d2)

begin

delete #temp from #temp inner join

(select top 1 t1.[member], t1.d2 from #temp t1 inner join #temp t2 on t1.[member] = t2.[member] and t1.smalldatestamp = t2.smalldatestamp and t1.d2 != t2.d2) t3

on #temp.[member] = t3.[member] and #temp.d2 = t3.d2

end

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

79654276

Date: 2025-06-05 10:43:35
Score: 1
Natty:
Report link
  1. Hibernate compares in-memory collections (Set<SubscriptionMailItem>) with the snapshot from the database and assumes changes if equals() or hashCode() are not aligned.

  2. Or it’s trying to reattach a detached entity in a managed context and assumes some fields may have changed.

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

79654270

Date: 2025-06-05 10:40:34
Score: 2.5
Natty:
Report link
textarea { 
min-width: 33ch;
min-height: 5ch;
}
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: hope__32

79654260

Date: 2025-06-05 10:30:32
Score: 0.5
Natty:
Report link

Another possibility is that the text is written to the database in an unsupported format. In my case the text contained a hidden character (U+FEFF the UTF BOM character) which SQL Server does not support.

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

79654255

Date: 2025-06-05 10:28:32
Score: 1.5
Natty:
Report link

Just solved this problem by downgrading PHP version from 8.2 to 8.1

And update the version of Carbon to at least 2.63, Previous versions through this error.

This will work like magic.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Hafiz Ameer Hamza

79654252

Date: 2025-06-05 10:25:30
Score: 11 🚩
Natty: 6.5
Report link

did you find a solution? I'm having the same problem.

Reasons:
  • Blacklisted phrase (1): I'm having the same problem
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you find a solution
  • Low reputation (1):
Posted by: Daniel Pacheco

79654238

Date: 2025-06-05 10:15:27
Score: 1.5
Natty:
Report link
const LoadingComponent = {
  RaLoadingIndicator: {
    styleOverrides: {
      root: {
        display: 'none',
      },
    },
  },
};

It works
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Julien Trotoux

79654229

Date: 2025-06-05 10:13:26
Score: 0.5
Natty:
Report link

Sharing @deglan comment for the visibility:

logger.add("file_{time}.log", mode="w")

The mode is the mode in which you will open the file.

You can learn more about the mode here:

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @deglan
  • High reputation (-1):
Posted by: Espoir Murhabazi

79654215

Date: 2025-06-05 10:07:25
Score: 2
Natty:
Report link

In Vuetify 3 you can set elevation="0":

<v-expansion-panel elevation="0">
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: August Langhout

79654210

Date: 2025-06-05 10:02:23
Score: 2
Natty:
Report link

Arquillian is not meant to be used with Mockito.

You should work with an @Alternative which has to be added to an Arquillian @Deployment.

Even the official Jakarata CDI Spec reveals this way: It declares the @Mock Stereotype, which bundles @Alternative and @Priority:

@Alternative
@Priority(value = 0)
@Stereotype
@Target(TYPE)
@Retention(RUNTIME)
@interface Mock { }
@Mock
@Stateless
class MyFacesContext extends jakarta.faces.context.FacesContext {...}
@ExtendWith(ArquillianExtension.class)
class ArquillianTest {
    @Deployment
    static WebArchive createDeployment() {
        return ShrinkWrap.create(WebArchive.class).addClasses(MyFacesContext.class);
    }
    
    @Inject
    FacesContext facesContext;

    @Test
    void testMock() {
        assertNotNull(facesContext)
    }        
}

There exist Libraries which try to associate Mockito with Arquillian like:

Their implementation missuses Mockito in some way.

Moreover it's not the way Jakarta EE thinks.

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Alternative
  • Low reputation (1):
Posted by: rudi1602

79654204

Date: 2025-06-05 10:01:23
Score: 1
Natty:
Report link

I witness similar error when I try to use rabbitmq as base image to build my image.

The simplest solution is adding

USER rabbitmq

https://github.com/davidkhala/mq/blob/eedd5d9f9eafb0a487d43582d777cc2a5bfb3e4c/rabbitmq/container/tls/Dockerfile#L11

Reasons:
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: 刘宇翔

79654197

Date: 2025-06-05 09:56:21
Score: 2.5
Natty:
Report link

Solution use uv:

uv pip install mostlyai[local]

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Raffa50

79654183

Date: 2025-06-05 09:42:18
Score: 2.5
Natty:
Report link

New workaround w/o using mouse-clicks

It's 2025 and I'm having the same problem, at least within Chrome/Edge. I like Red's approach, but I wanted a solution which works without using the mouse.

Therefore, instead of using dblclick, my solution handles keydown and keyup events to turn the datepicker into a normal textfield whenever the user starts pressing the Ctrl-key. When Ctrl is released, the field is turned into a datepicker, again.

Please note:

So, here is my solution to enable using Ctrl+X and Ctrl+V inside native datepickers. I only tested it with Chrome/Edge, but I hope it should also work with other browsers.

const dateInputs = document.querySelectorAll('[type="date"]');

dateInputs.forEach(el => {
  el.addEventListener('keydown', (event) => {
    if (!event.repeat && event.ctrlKey && el.type !== "text") {
      el.type = "text";
      el.select();
    }
  });

  el.addEventListener('keyup', (event) => {
    if (!event.repeat && !event.ctrlKey && el.type !== "date") {
      el.blur();
      el.type = "date";
      el.focus();
    }
  });
});
input {
  display: block;
  width: 150px;
}
<input type="date" value="2011-09-29" />
<input type="date" />

Reasons:
  • Blacklisted phrase (1): I'm having the same problem
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm having the same problem
  • Low reputation (0.5):
Posted by: Alexander Urban

79654178

Date: 2025-06-05 09:37:16
Score: 1.5
Natty:
Report link

Path Configuration is not being loaded because it requires authentication. It redirects to new session every time the app is opened.

Add allow_unauthenticated_access to ConfigurationsController.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Nicklas Niels Jensen

79654174

Date: 2025-06-05 09:36:16
Score: 3
Natty:
Report link

Well I ended up uninstalling the app on all the devices and it worked.

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

79654164

Date: 2025-06-05 09:32:15
Score: 0.5
Natty:
Report link

Try This,
In Power BI, click Transform Data to open Power Query.

Find the two affected columns (List price, Selling price, or whichever ones are misbehaving).

Right-click the column header, then choose the following

Change Type > Using Locale...

In the popup choose below

Choose Data Type: Decimal Number

Choose Locale: English (United States) (or any locale that uses a period as decimal separator)

Then Click OK

Reasons:
  • Whitelisted phrase (-1): Try This
  • No code block (0.5):
  • Low reputation (1):
Posted by: Haripriyabalan Hari

79654163

Date: 2025-06-05 09:32:15
Score: 2.5
Natty:
Report link

Maybe you could check the answer given here How to test a PHP API in a Docker container ? This is not directly your question, but is related to curl error within docker context.
Don't hesitate adding your dockerfile and docker-compose, if you need more help.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Marilena RUFFELAERE

79654154

Date: 2025-06-05 09:26:13
Score: 3
Natty:
Report link

I had a similar problem, found out that just using router.refresh() after the router.push() fixed it.

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

79654152

Date: 2025-06-05 09:25:13
Score: 1
Natty:
Report link

This error occurs because the python_calamine module is not installed, and attempts to use pip fail with:

No module named pip

Why This Happens:

This usually means you're in a Python environment where pip was not installed or is misconfigured. Despite other packages like pandas or numpy working, they might have been installed by system package managers (like apt, conda, or preinstalled in the environment).

Solution Steps

1. Check if pip is available via Python module

Try running:

python -m pip --version

If this returns an error like "No module named pip", continue below.

2. Reinstall pip using get-pip.py

If ensurepip doesn’t work, you can manually bootstrap pip:

i.Download the script:

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

ii.Install pip:

python get-pip.py

This will install pip into your environment.

3. Install python_calamine

Once pip is working, run:

pip install python_calamine

If you're using a notebook or special environment:

import sys

!{sys.executable} -m pip install python_calamine

Extra Tip: Verify Python and pip Match

Ensure you're using the right Python version:

which python

python --version

Then compare with pip:

which pip

pip --version

If they don’t point to the same environment, use:

python -m pip install python_calamine

Summary

Hope this helps someone else facing the same issue!

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (1):
Posted by: sajina pk

79654142

Date: 2025-06-05 09:22:12
Score: 0.5
Natty:
Report link

Using peach and unionAll, we can reconstruct the original table:

unionAll(peach(x->table(take(x.ticker, size(x.volume_all)) as ticker, x.volume_all as volume), t1), false)

In the code, peach performs parallel processing: it applies an anonymous function (x -> ...) to each row of t1, expanding the grouped ticker and volume_all arrays into multiple rows. unionAll: Combines all temporary tables into a single result.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: hz.wale

79654125

Date: 2025-06-05 09:12:09
Score: 4.5
Natty: 4
Report link

That could be an encrypted file

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

79654109

Date: 2025-06-05 08:58:06
Score: 1
Natty:
Report link

1. First step you need to ensure that the "Gradle Wrapper" in the path:

android/gradle/wrapper/gradle-wrapper.properties.

Support "Java 21".

Depending on the "Gradle" doc, only Gradle 8.4 officially supports Java 21.

2. In the file "android/build.gradle" or "android/settings.gradle" Ensure that you are using AGP 8.3.2 or higher. Don't use AGP < 8.2 if you are using JAVA 21

3. Run the command "flutter doctor -v", and then check which path flutter is using for java.

4. Clear your cache with the command "flutter clean", and then "flutter pub get".

5. Use the command "flutter build apk --verbose" to get the full details of the build stracture in the console to see the log

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

79654105

Date: 2025-06-05 08:54:05
Score: 1.5
Natty:
Report link

You meet this problem probably because there is a folder named 'torch' (but is not your package) somewhere else on your device.

Steps you may follow:

  1. open your command board and type:

    pip show torch

  2. the location of this package will be displayed. follow the location and ensure there is Torch.py in that folder.

  3. search on your device if there is any other folder named 'Torch'. If yes, change its name.

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

79654097

Date: 2025-06-05 08:52:04
Score: 3.5
Natty:
Report link

Use Ctr +shift +F anther windows off searching apear let you specifie the file type

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

79654094

Date: 2025-06-05 08:50:04
Score: 2.5
Natty:
Report link

Font size units like "px", "pt", and "em" are used to specify the size of text in web design. Pixels (px) are absolute units based on the screen resolution, while points (pt) are an older system related to physical print. Em (em) is a relative unit, based on the font size of the parent element.

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

79654088

Date: 2025-06-05 08:46:03
Score: 3
Natty:
Report link

I suspect your tests don't fail hard enough with some proper exception.

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

79654083

Date: 2025-06-05 08:44:02
Score: 1
Natty:
Report link

When checking their SDKs, they mainly offer server side programming languages.

Although they have NodeJS in their SDKs, looking through the documentation shows OAuth2.0 authentication which implies server side handling.

Sadly it seems like there's no pure client side calls from their page, so it's safe to assume that this is meant for server to server communication.

Reasons:
  • No code block (0.5):
  • Starts with a question (0.5): When
Posted by: Tatachiblob

79654079

Date: 2025-06-05 08:42:01
Score: 1.5
Natty:
Report link

Check the version of git on typing git -- version in terminal . once got git version then

Check if you're in a Detached HEAD state

Go to View > Git Repository.

If it says HEAD instead of a branch name, you are in a detached HEAD.

check if the branch was deleted or renamed remotely

Go to Git > Manage Branches in Visual Studio.

See if any branch is listed under Remotes/origin/.

If you see only main and not master, then maybe master was renamed to main on GitHub

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

79654075

Date: 2025-06-05 08:36:00
Score: 0.5
Natty:
Report link

Since my original answer was deleted as link-only and no-one cared to undelete although I improved it. Here it is again:

Found a workaround myself. See the github discussion https://github.com/orgs/wixtoolset/discussions/9081

PS: you need one file without language - a "neutral" file. So simply duplicate the english file or omit it:

Short steps (given your language file is named RtfTheme.wxl):

  1. duplicate RtfTheme.wxl as RtfTheme.en-US.wxl

  2. remove Culture="en-us" from RtfTheme.wxl

  3. add <Payload Name="1033\thm.wxl" SourceFile="RtfTheme.en-US.wxl" />

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: cz-dev-ge

79654065

Date: 2025-06-05 08:26:53
Score: 6 🚩
Natty:
Report link

@Rajat Gupta his answer is perfect!

Reasons:
  • Low length (2):
  • No code block (0.5):
  • User mentioned (1): @his
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: 刘大河

79654059

Date: 2025-06-05 08:23:52
Score: 1.5
Natty:
Report link

I tried everything written here, none of it worked. I saw a youtube video and cleared the cache and data of gboard. After that it stopped appearing.

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