79614681

Date: 2025-05-09 18:28:34
Score: 1
Natty:
Report link

yes, you can either loop across files or parallel the runs.

for bam in $(ls *.bam)
do              
samtools fastq $bam > my_converted_$bam_file.fastq
done

or

parallel -j 4 'samtools fastq {} > {.}.fastq ' ::: *.bam # where 4 is the number of jobs you want to run in parallel
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: nicolotellini

79614672

Date: 2025-05-09 18:23:33
Score: 2.5
Natty:
Report link

Change type in the methods from holder: SurfaceHolder? -> holder: SurfaceHolder

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

79614665

Date: 2025-05-09 18:17:31
Score: 4.5
Natty:
Report link

i made a sale in last 30 days and i still get the 429 error

Reasons:
  • RegEx Blacklisted phrase (1): i still get the 429 error
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: s K

79614663

Date: 2025-05-09 18:16:30
Score: 2
Natty:
Report link

This appears to be due to a liquibase release after version 4.28.0-1. I downgraded liquibase to version 4.28.0-1 from 4.31.1. At each version in between I tested the "update" command, and each version until 4.28.0-1 exhibited the same error. Once I arrived at version 4.28.0-1, the liquibase update succeeded.

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

79614656

Date: 2025-05-09 18:11:25
Score: 6 🚩
Natty:
Report link

ŠŸŠ¾Š¼Ń£Š½ŃŠ¹ (ref this на (in this .

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Single line (0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: OZone

79614655

Date: 2025-05-09 18:10:25
Score: 2
Natty:
Report link

I experienced the same issue and solve it by renaming my file as app.R

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

79614652

Date: 2025-05-09 18:03:23
Score: 1.5
Natty:
Report link

In my case, the problem happened because i changed some inline policy of my iam user so it could not delete some things the stack created. I identified those undeleted resources through the AWS UI and then added necessary permissions to my user and tried again and it worked.

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

79614649

Date: 2025-05-09 18:02:22
Score: 4.5
Natty: 5.5
Report link

see the following solution, yo must use '?' to refer parameters:

https://community.fabric.microsoft.com/t5/Desktop/How-to-use-parameters-in-report-builder-with-a-Postgresql-DB/m-p/3309773#M1106305

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Juan Carlos Del Cid

79614647

Date: 2025-05-09 18:01:22
Score: 1
Natty:
Report link

I finally located the piece I was missing.

The Realm Settings has a variable called SSE Session Idle. This is what implements the desired behavior and expires the token if the user is inactive for a period exceeding the SSE Session Idle.

The Cookie.ExpireTimeSpan just indicates how long till the Cookie is deleted, but as long as the user is within the SSE Session Idle time and no MaxAge has been set on the OpenIdConnect the user can request a new Cookie by making an HTTP request. This also resets the SSE Session Idle timer.

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

79614646

Date: 2025-05-09 18:01:22
Score: 2.5
Natty:
Report link

I was able to Load the live server into my mobile phone. I was able to do so by disabling Microsoft's live preview which was pointing at the host or computer itself, I uninstalled it And installed the live server by Ritwick Dey, Which was hosting the live server on the ipv4 address. Through it, I was able to use that into my mobile phone. Also, I had to enable that specific port from the Windows firewall defender, as it is now serving on different port. Previously, it was serving on port 3000 And now it is serving on port 5500. For Seamless connectivity I had made my wifi network private so that it would be able to transmit data between the computer and the mobile phone. This work took a lot of time but finally I would be able to see the outcome into my mobile, so now I would like to give this to the community, so that if someone is facing a problem like this he or she would take lesser time finding an answer. Thankyou, Hope you all have a wonderful day. šŸ˜„šŸ˜Š

Reasons:
  • Blacklisted phrase (1): Thankyou
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Bhargav Joshi

79614645

Date: 2025-05-09 18:00:21
Score: 2
Natty:
Report link
Public Function BinaryReverse(ByRef pNumber As Variant) As Variant
 If IsNumeric(pNumber) = False Then Exit Function
 With WorksheetFunction
  BinaryReverse = .Bin2Dec(StrReverse(.Dec2Bin(pNumber)))
 End With
End Function

Thanks to all contributors... with your help, anything possible !

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: RoGKƓT

79614637

Date: 2025-05-09 17:47:18
Score: 0.5
Natty:
Report link

Might be a late response but this error can be triggered if for example you're inserting an array of mismatched objects, for example:

array of objects:

obj 1 => { a: 'some value', b: 'some other value' } 
obj 2 => { a: 'some value' // missing b } => should be {a: 'some value', b: undefined or null}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Plvtinum

79614631

Date: 2025-05-09 17:43:17
Score: 1
Natty:
Report link

A server can have multiple clients that connect to it. Each client will have a clientId and clientSecret as you could then use the server as a single sign on provider

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

79614628

Date: 2025-05-09 17:41:16
Score: 0.5
Natty:
Report link

OAuth is a specific protocol for granting authorization to an application.

SSO (Single-Sign On) is the broader concept of signing into a single identity provider (like Google or Microsoft) and then using that authentication to sign into 3rd party applications. SSO may use different protocols to authorize the user in a 3rd-party app, including OAuth, SAML, OIDC.

For some organizations, SSO extends deeper than verifying the user to a third-party app. It may also control which applications each user can sign into and even what access level they should have within each 3rd-party app.

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

79614624

Date: 2025-05-09 17:40:15
Score: 2.5
Natty:
Report link

Thanks to everybody who helped me on this.

Within a loop of fn_get_audit_file, decided for the following:

Solution 1:

SELECT @v_Class_type_Desc = Class_type_Desc, @v_Securable_Class_Desc = Securable_Class_Desc

from master.sys.dm_audit_class_type_map

where class_type = @p_class_type;

-- Make Action Name

set @v_Action_Name = (

select name from master.sys.dm_audit_actions

where action_id = @p_action_id

and class_desc = @v_Securable_Class_Desc

);

-- Make Action Name - 2nd

if @v_Action_Name is NULL or @v_Action_Name = ''

begin

set @v_Action_Name = (

select name from master.sys.dm_audit_actions

where action_id = @p_action_id

and class_desc = @v_Class_type_Desc

);

end;

Solution 2:

-- Make Action Name

set @v_Action_Name = (

select distinct(name) from master.sys.dm_audit_actions

where action_id = @p_action_id

);

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @v_Class_type_Desc
  • User mentioned (0): @v_Securable_Class_Desc
  • User mentioned (0): @p_class_type
  • User mentioned (0): @v_Action_Name
  • User mentioned (0): @p_action_id
  • User mentioned (0): @v_Securable_Class_Desc
  • User mentioned (0): @v_Action_Name
  • User mentioned (0): @v_Action_Name
  • User mentioned (0): @v_Action_Name
  • User mentioned (0): @p_action_id
  • User mentioned (0): @v_Class_type_Desc
  • User mentioned (0): @v_Action_Name
  • User mentioned (0): @p_action_id
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: altink

79614615

Date: 2025-05-09 17:33:13
Score: 4
Natty:
Report link

I have the same issue when writing custom functions for XPath evaluation in .NET C#, using XSLT inheritance. When text() is provided as argument, it turns into the type XPathSelectionIterator that is mentioned in the question's title.

The solution for me was to match it with the XPathNodeIterator type in a pattern and access the string as Current?.Value.

var stringValue = arg[0] switch
{
    string s => s,
    XPathNodeIterator i => i.Current?.Value ?? ""
    _ => ""
};
Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (1):
Posted by: Criselmof

79614614

Date: 2025-05-09 17:32:12
Score: 2
Natty:
Report link

Just coming back to confirm that the following setting resolved the issue where the app wouldn't run on other machines:

<WindowsAppSdkDeploymentManagerInitialize>false</WindowsAppSdkDeploymentManagerInitialize>

Reference: GitHub comment

I’d like to ask:
Is it safe to keep this configuration long-term?
Could it cause any issues with future updates of .NET MAUI, Windows App SDK, or when publishing to platforms like the Microsoft Store?

Thanks again for the support!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: JosƩ Donizete Oliveira Junior

79614613

Date: 2025-05-09 17:32:12
Score: 1
Natty:
Report link

I was using RStudio and did this. Both tables printed had the NA in there, without errors.

Don''t know if it will work for you:

x <- "NA"

data_summary2 <- data.frame(
  Fonte = c("Motor", "Piso", "ResĆ­duo"),
  GL = c(2, 3, 6),
  `Soma dos Quadrados` = c(11.765, 2.296, 0.362),
  `Quadrado MƩdio` = c(5.883, 0.765, 0.060),
  `Valor F` = c(97.59, 12.70, x),
  `Pr(>F)` = c(0.0000265, 0.00522, x)
)
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: KaMileib

79614604

Date: 2025-05-09 17:25:11
Score: 3
Natty:
Report link

I also have the same problem. As the screenshot of my two external monitors shows, in the Quick Launch and on the vertical (right hand side) monitor, Firefox Nightly appears with its orange icon, while the tray of the left screen shows the blue version.

enter image description here

The Change Icon dialog shows that the icon has no other version, just the orange one. Where does the blue one come from?

icon has only orange version

After reading the idea from @SidF, I tried to change the scaling of the monitors, which originally were 125% and 100% for the left and right monitor, respectively. I tried every possible combination of 125% and 100%, and some other values too, but the icons always remained, even if I restarted the app between the changes.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I also have the same problem
  • Contains question mark (0.5):
  • User mentioned (1): @SidF
  • High reputation (-1):
Posted by: Csongor Halmai

79614603

Date: 2025-05-09 17:24:10
Score: 4
Natty: 4.5
Report link

In 2025, whitelisting words can be done with constrained decoding:

https://huggingface.co/blog/constrained-beam-search

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

79614587

Date: 2025-05-09 17:16:08
Score: 0.5
Natty:
Report link

Yes, there is a way to format the labels on the Y-Axis.

First, handle the Chart.FormatNumber event.

var chart = new Chart();
chart.FormatNumber += ChartFormatNumber;

In the event handler, filter the labels for the Y-Axis and format them as needed.

private void ChartFormatNumber(object sender, FormatNumberEventArgs e)
{
    /* Process the elements of type 'AxisLabels'. Additionally, filter by Y-Axis. */
    if (e.ElementType == ChartElementType.AxisLabels && sender is Axis axis && axis.AxisName == AxisName.Y)
    {
        /* Format the seconds as 'hh:mm:ss' */
        e.LocalizedValue = TimeSpan.FromSeconds(e.Value).ToString();
    }
}

enter image description here

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

79614567

Date: 2025-05-09 17:02:04
Score: 6.5 🚩
Natty: 5
Report link

I have the same problem, wait for somebody to answer

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: nguyen xuan linh

79614554

Date: 2025-05-09 16:54:02
Score: 2.5
Natty:
Report link

This is not something that’s provided out of the box. You can, however, create HTML or JSX converters that can handle it for you. You won’t be able to click a button and swap views to edit, though. At least, not by default.

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

79614546

Date: 2025-05-09 16:49:00
Score: 2.5
Natty:
Report link

This might be a controversial take, but at the heart of it, yes, I think it is a bit of a fancy yet powerful data structure (it inherently uses data to create an 'algorithm' unlike most conventional algorithms). The "training" is all about using data to set the weight and biases across the neural network and hence create this 'algorithm'. This essentially means that the weights and biases are in fact your data, massaged and extruded to a humanly unrecognisable level.

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

79614543

Date: 2025-05-09 16:44:59
Score: 3.5
Natty:
Report link

We strongly recommend reinstalling the SAP .NET Connector 3.0 as the first step. It comes in both 32-bit and 64-bit versions, so ensure that the connector version is compatible with your operating system (How do I tell if my computer is running a 32-bit or a 64-bit version of Windows?). Additionally, during the installation process, in the ā€˜Optional setup stepsā€˜ section, make sure to check the ā€˜Install assemblies to GAC’ option; it is not installed by default**.**

https://powerbipoint.com/2024/01/15/fix-error-sap-business-warehouse-could-not-find-any-resources-appropriate-for-the-specified-culture-or-the-neutral-culture/

Reasons:
  • Blacklisted phrase (1): How do I
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ram Tricks

79614538

Date: 2025-05-09 16:40:58
Score: 1.5
Natty:
Report link

The source if my issue was an existing flutter_launcher_icons.yaml file. The system was finding & using this file 1st and values in pubspec.yaml were ignored.

Sorry for creating this turmoil.

Thank you for the answers and time spent looking at this.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: phil magnuson

79614529

Date: 2025-05-09 16:36:57
Score: 2.5
Natty:
Report link

I came to a solution where I just added a tap gesture to the superview of my button to absorb the tap and not pass it along to the other superviews.

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

79614524

Date: 2025-05-09 16:33:56
Score: 4
Natty:
Report link

By the way, if I need to add to both, the names need to match right?

The JPA documentation says that you should only put it on the owning side of a relation, as some of the other answers already mention.

As for why you should not do it anyway, e.g. by trying to make both sides of the relationship the "owner", as suggested by the other answer that says "You actually CAN use @JoinTable on both sides" (can't comment under it due to lacking reputation): If you don't designate either one of the sides as the non-owning side using the mappedBy element of the @ManyToMany annotation, you will get two unidirectional relationships, instead of one bidirectional relationship.

"But I can trick Hibernate into using the same junction table for both of these unidirectional relationships, by using @JoinTable on both sides and specifying the correct columns, so what's the problem?" If Hibernate thinks there are two relationships, it will try to persist it twice.

Consider this scenario, you have the movie and category tables in your database in a many-to-many relationship, tracked by the movie_category table connecting them together. Now you'd like to fetch the movie entity Borat and the category entity comedy, add the category to Borat, and also add the movie to comedy to keep the in-memory model consistent with the database (for some unknown reason you have a bidirectional relationship in this weird example). Hibernate will eventually flush the changes and it will try to write the same thing to the movie_category table twice, once for each relationship, and you will get an error due to the duplicate row (something like <borat_id>, <comedy_category_id> already exists in this table).

I could also imagine it causing more sophisticated, harder-to-debug surprises.

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): can't comment
  • RegEx Blacklisted phrase (1.5): reputation
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @JoinTable
  • Low reputation (1):
Posted by: Onur Yilmazer

79614517

Date: 2025-05-09 16:30:55
Score: 1
Natty:
Report link

Vercel does not have that feature at the moment. But the vercel domain can be assigned to another branch and this way you can switch your environment and make your productive enironment unreachable. Before you need that, you need create a branch in GIT that serves a "website in maintanance mode" site.

You can assign a different branch in Vercel this way:

  1. Project > Settings > Domains > Your Domain > Connect to environment > Preview > Branch > Select a branch that serves a "maintanance site"
Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Peter

79614515

Date: 2025-05-09 16:27:54
Score: 3.5
Natty:
Report link

It sounds like the issue may lie in configuration differences between the sample project and your existing one—especially around view resolvers or resource handling in Spring Boot. Double-check that your project’s application.properties (or YAML) file has the correct JSP view settings and that the src/main/webapp directory is properly structured. Also, make sure you’ve included the necessary dependencies for JSP support in Gradle. While you troubleshoot that, why not take a break and browse the delicious options on the Waffle House menu?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alex John

79614509

Date: 2025-05-09 16:17:52
Score: 1
Natty:
Report link

Go to android\gradle.properties and change:

newArchEnabled=true

to

newArchEnabled=false

Also in app.json:

"newArchEnabled": true,

to

"newArchEnabled": false,
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Miguel

79614499

Date: 2025-05-09 16:09:49
Score: 8
Natty: 7
Report link

I have the same problem, maybe this issue will help https://github.com/prettier/prettier-vscode/issues/1252

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vitalii Drapaliuk

79614497

Date: 2025-05-09 16:09:49
Score: 4.5
Natty:
Report link

Following the solution over here: https://www.shashankshekhar.com/blog/cuda-colab solved the issue

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

79614496

Date: 2025-05-09 16:08:48
Score: 1.5
Natty:
Report link

I just had the same problem. In my code I have hx-swap="outerHTML transition:true". This works and is the right solution for my project. Everywhere were I want to have page transitions I put this there, but at one place I had it wrong: hx-swap="innerHTML transition:true". Then It goes wrong. So this could might help someone :-)

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Herman Van Der Blom

79614491

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

As @MikeM commented, setting android:baselineAligned="false" on the <MaterialButtonToggleGroup> solved the issue.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @MikeM
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: CitroenAX

79614479

Date: 2025-05-09 15:57:46
Score: 1
Natty:
Report link

You iterator typenames are inaccessible due to implicit private: at the beginning of the class. Making them public: should resolve this problem.

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

79614472

Date: 2025-05-09 15:55:45
Score: 0.5
Natty:
Report link

AOSP utilises EXT4 for its root filesystem (like /data/media/0/; basically, all except mounted ones, for which I believe that solely exFAT is a possible alternative). EXT4 has no filesystem-defined maximum path length. [1] However, the Linux kernel does, exposed via PATH_MAX. It is usually 4096 characters. [2] Unfortunately, programmatically verifying (and, by extension, relying upon) it isn't recommended. [3]

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

79614471

Date: 2025-05-09 15:55:44
Score: 7.5 🚩
Natty: 4.5
Report link

I am having literally this exact same problem... json web token cookie is definitely being sent and appears in the response body, but when i check devtools the cookie is not there but i can clearly see the user is logged in in my app. did you ever find an answer for this?

Reasons:
  • RegEx Blacklisted phrase (3): did you ever find an answer
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Omar A

79614468

Date: 2025-05-09 15:54:44
Score: 1
Natty:
Report link
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.12.2'

for gradle I had to add the line above to make it work. I have these three lines now:

testImplementation 'org.junit.jupiter:junit-jupiter:5.12.2'
testRuntimeOnly 'org.junit.platform:junit-platform-engine:1.12.2'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.12.2'
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: bmaj

79614457

Date: 2025-05-09 15:46:42
Score: 1.5
Natty:
Report link

I am glad Python is actively developed.

It is frustrating that there are so many moving targets and incompatibilities between versions.

I am very much dissuaded whenever I think "I might be able to do that in Python" because I so often run into roadblocks of the forms: you should upgrade to the latest version of Python, or the library you want is not available, or the library you want is not available for the current version.

I only wanted a way to list the titles of the open windows to a text file.

Winlister can't do it. Windows provides no easy way to do it.

I --eventually -- got something to work in Python.

It should not have been this difficult.

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

79614454

Date: 2025-05-09 15:45:41
Score: 2
Natty:
Report link

I was facing a similar problem where the zip file extraction was not working. I was able to perform the following workaround:

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

79614436

Date: 2025-05-09 15:30:38
Score: 3
Natty:
Report link

Problem resolved - it appears that the cause was a setting relating to my work's VPN. Turning the VPN off allowed for the update to take place.

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

79614429

Date: 2025-05-09 15:24:36
Score: 2.5
Natty:
Report link

try to install the older version of dart plugin from vscode extension by clicking the dart plugin gear icon.

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

79614428

Date: 2025-05-09 15:23:36
Score: 0.5
Natty:
Report link

Improving on steven answer above https://stackoverflow.com/a/77559901/1875674

public class KeyServiceDictionary<TKey, TService> : IReadOnlyDictionary<TKey, TService>
{
    private readonly KeyedServiceCache _keyedServiceCache;
    private readonly IServiceProvider _serviceProvider;
    private readonly bool _isServiceEnumerable;
    private readonly Type _serviceType;
    private readonly IServiceProviderIsKeyedService _serviceProviderIsKeyedService;

    //caching
    private readonly Dictionary<TKey, TService> _resolvedServices = new Dictionary<TKey, TService>();

    public KeyServiceDictionary(KeyedServiceCache keyedServiceCache, IServiceProvider serviceProvider, IServiceProviderIsKeyedService serviceProviderIsKeyedService)
    {
        _isServiceEnumerable = typeof(TService).IsGenericType &&
                               typeof(TService).GetGenericTypeDefinition() == typeof(IEnumerable<>);

        _serviceType = _isServiceEnumerable? typeof(TService).GetGenericArguments()[0]: typeof(TService);

        _keyedServiceCache = keyedServiceCache;
        _serviceProvider = serviceProvider;

        _serviceProviderIsKeyedService = serviceProviderIsKeyedService;
    }

    public IEnumerator<KeyValuePair<TKey, TService>> GetEnumerator()
    {
        return new Enumerator(Keys.GetEnumerator(), this);
    }

    IEnumerator IEnumerable.GetEnumerator()
    {
        return GetEnumerator();
    }

    public int Count => Keys.Count();

    public bool ContainsKey(TKey key)
    {
        return Keys.Any(x => x.Equals(key));
    }

    public bool TryGetValue(TKey key, out TService value)
    {
        value = _serviceProvider.GetKeyedService<TService>(key);

        return value != null;
    }

    public TService this[TKey key]
    {
        get
        {
            if (!_serviceProviderIsKeyedService.IsKeyedService(_serviceType, key))
                throw new KeyNotFoundException($"Could not find Key:{key} in Dictionary");

            if (_resolvedServices.TryGetValue(key, out var service))
                return service;


            try
            {
                service = _isServiceEnumerable
                    ? (TService)_serviceProvider.GetKeyedServices(_serviceType, key)
                    : _serviceProvider.GetRequiredKeyedService<TService>(key);
            }
            catch (InvalidOperationException e)
            {
                throw new KeyNotFoundException($"Could not find Key:{key} in Dictionary", e);
            }
            
            _resolvedServices.Add(key, service);

            return service;
        }
    }

    public IEnumerable<TKey> Keys =>
        (_isServiceEnumerable
            ? _keyedServiceCache.GetKeys<TKey>(_serviceType)
            : _keyedServiceCache.GetKeys<TKey, TService>()).Where(k =>
            _serviceProviderIsKeyedService.IsKeyedService(_serviceType, _serviceType));

    public IEnumerable<TService> Values => Keys.Select(key => this[key]);

    private class Enumerator : IEnumerator<KeyValuePair<TKey, TService>>
    {
        private readonly IEnumerator<TKey> _keys;
        private readonly IReadOnlyDictionary<TKey, TService> _parentDictionary;
        private KeyValuePair<TKey, TService> _currentKeyPair;

        public Enumerator(IEnumerator<TKey> keys, IReadOnlyDictionary<TKey,TService> parentDictionary)
        {
            _keys = keys;
            _parentDictionary = parentDictionary;
        }

        public bool MoveNext()
        {
            return _keys.MoveNext();
        }

        public void Reset()
        {
            _keys.Reset();
        }

        private KeyValuePair<TKey, TService> GetCurrent()
        {
            var service = _parentDictionary[_keys.Current];
            _currentKeyPair = new KeyValuePair<TKey, TService>(_keys.Current, service);
            return _currentKeyPair;
        }

        public object Current => GetCurrent();

        KeyValuePair<TKey, TService> IEnumerator<KeyValuePair<TKey, TService>>.Current => GetCurrent();

        public void Dispose()
        {

        }
    }
}
public static class ServiceExtensions
{
    public static void WithKeyServiceDictionarySupport(this IServiceCollection serviceCollection)
    {
        serviceCollection.AddSingleton(s => new KeyedServiceCache(serviceCollection));
        serviceCollection.AddTransient(typeof(IReadOnlyDictionary<,>), typeof(KeyServiceDictionary<,>));
    }
}

Up to date Gist

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tadhg Mulkern

79614426

Date: 2025-05-09 15:22:36
Score: 2
Natty:
Report link

No, the Terraform provider does not track the scanning type, therefore manually changing it via the console or the CLI will not cause any state mismatch.

You can opt in without worrying about your ECR getting destroyed.

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

79614424

Date: 2025-05-09 15:20:35
Score: 1.5
Natty:
Report link

You can do this:

uv run python -m pdb script
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: cpaniaguam

79614408

Date: 2025-05-09 15:16:34
Score: 1
Natty:
Report link
Text(DateFormat("dd/MM/yyyy").format(DateTime.parse(controller.lista[index].data!)).toString(),

                    style: const TextStyle(
                        color: Colors.black,
                        fontWeight: FontWeight.bold,
                        fontSize: 12),
                  ),
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Moises Nogueira

79614407

Date: 2025-05-09 15:13:33
Score: 2.5
Natty:
Report link

Why not use php's include? In your case it would be<?php> include "nav.php" ?>

Reasons:
  • Whitelisted phrase (-1): In your case
  • Low length (1.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why not use
  • Low reputation (1):
Posted by: Farialves

79614382

Date: 2025-05-09 15:01:30
Score: 0.5
Natty:
Report link

If you've put the whole schema into a single .query() statement there should be quite a few responses generated. You can quickly debug the whole thing (each response will have its own index number), use .num_statements to get the total length handle them one at a time,

https://docs.rs/surrealdb/latest/surrealdb/struct.Response.html#method.num_statements

or use this method to take out the errors and handle Ok responses vs. Errs.

https://docs.rs/surrealdb/latest/surrealdb/struct.Response.html#method.take_errors

If still unsure I would just copy paste the whole schema into a &str and stick that in, see if that works and if so then work bit by bit to what you have with the bytes into a &str one step at a time and see if anything stands out.

And for the quickest iteration and without needing to connect to anything remote you can do the whole thing in memory to start:

let db = connect("memory")

and go from there.

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

79614381

Date: 2025-05-09 15:00:30
Score: 1
Natty:
Report link

You are setting the TextField type to number and you are trying to set the value as a string:

type="number"
value={"+" + foo}

if you want to show the plus before the actual number you need to set type to text:

type="text"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: JoaoFCarvalho

79614360

Date: 2025-05-09 14:46:27
Score: 1.5
Natty:
Report link

in android Studio -> settings -> search for
http proxy:
Appearance & Behavior > System Settings > Http proxy

set your proxy to No Proxy 0r to your machine's correct proxy settings.

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

79614356

Date: 2025-05-09 14:45:26
Score: 2
Natty:
Report link

Oh, here is the poster of the quesiton. I think I have found the reason. When we update ans, we need to compare cnt1 and cnt2. But before that, I have done cnt1 = (cnt1 % N + _nums1[p1] % N) % N and cnt2 = (cnt2 % N + _nums2[p2] % N) % N which changed how large they actually are.

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

79614349

Date: 2025-05-09 14:41:25
Score: 1.5
Natty:
Report link

Aleksandr Dubinsky's answer points to a syntax that can be nested multiple times, when you have more than two choices. In the following I need to return three possible values:

i = 2

s = "start" if i==0 else "end" if i == 10 else None

print(s)
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: sandro

79614340

Date: 2025-05-09 14:35:22
Score: 1.5
Natty:
Report link

Sadly, this is why PR environments, or having multiple staging/pre-prod environments became so popular. In my opinion, there is sadly no silver bullet for this issue. From my perspective, you will need to limit work that can go into QA, have another environment after QA with a specific branch, or have dynamic environments for each working branch. None of these are simple and require workflow changes, but will make life easier.

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

79614331

Date: 2025-05-09 14:32:21
Score: 1
Natty:
Report link

This is a known bug: https://issuetracker.google.com/issues/244400727.

Current workaround is to apply inset paddings manually to FloatingActionButton in landscape orientation.

override fun onCreate(savedInstanceState: Bundle?) {
 ...
 enableEdgeToEdge()
 ...
 setCotent {
  Scaffold(
   floatingActionButton = {
    FloatingActionButton(
     onClick = {},
     modifier = if (LocalConfiguration.current.orientation == Configuration.ORIENTATION_LANDSCAPE) Modifier.windowInsetsPadding(WindowInsets.safeDrawing) else Modifier
    ) {
     Icon(...)
    }
   },
   contentWindowInsets = WindowInsets.safeDrawing
  ) {
   ...
  }
 }
}

The result:

enter image description here

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

79614322

Date: 2025-05-09 14:29:20
Score: 3
Natty:
Report link

How would I change this.. class="ng-untouched ng-pristine ng-valid"

to class="ng-untouched ng-valid ng-dirty

with Javascript

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): How would I
  • Low reputation (1):
Posted by: Naomi Doughty

79614316

Date: 2025-05-09 14:24:19
Score: 1
Natty:
Report link

Because the Print method is on the pointer receiver, the type Test does not implement PrintStr.

Here are two options for fixing the problem.

Option 1: Use the address of the field. The value of values.Field(i).Addr().Interface() is a *Test, which does implement the interface.

switch v := values.Field(i).Addr().Interface().(type) 

https://go.dev/play/p/ElJamDeiwSB

Option 2: Declare method on value receiver. With this change, type Test implements the interface.

func (t Test) Print() {

https://go.dev/play/p/uAfWzYzBmiX

Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jasmine Crockett

79614314

Date: 2025-05-09 14:21:19
Score: 2.5
Natty:
Report link

Thank you all for responding my questions ! I really appreciate the clarification.

So the sum it all up :

  1. React treats the array like a tree inside the <App/> component, and the paragraphs are its sub-nodes.

  2. React.memo prevents re-renders unless its props change due to parent re-renders, conditional rendering, or state changes from the child component.

  3. If a child component updates its own state, it will re-render itself, but this does not cause the parent to re-render. As a result, a new virtual DOM tree is created, with the child component as the root of that tree.

Also a few defintions I understood Based on the explanations you all provided:

Re-rendering: This is the process of regenerating the virtual DOM tree after the initial render or following a state change.

Re-mounting: This refers to the actual update of the DOM itself when components are re-initialized.

Again, thank you so much for all the support— I really appreciate it. I know my questions might seem basic, but they truly help me a lot. Thanks again! :)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): help me
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dave

79614313

Date: 2025-05-09 14:20:18
Score: 3
Natty:
Report link

I figured that the error was caused due to strict pydantic definitions, which stop us from defining any new instance variables in the inherited class definition. Although I could not find any workarounds that worked with llama_index, langchain had more flexible definition so switched packages in the end.

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

79614308

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

For ASP.NET Core with .NET 9, based on @LazZiya's answer and the asp.net docs on how to resolve a service at app startup, this is how I did it in the Program.cs file:

  1. Configure localization services:
builder.Services.AddLocalization(options => options.ResourcesPath = "Resources");

builder.Services.AddMvc()
    .AddViewLocalization(LanguageViewLocationExpanderFormat.Suffix)
    .AddDataAnnotationsLocalization();

(source)

  1. Create the resource files

File SharedResource.en.resx in the Resources/ path.

Name en
Validation_ValueMustNotBeNull The field '{0}' is required.
Validation_AttemptedValueIsInvalid The value '{0}' is not valid for the field '{1}'.
  1. Override the default model binding error messages:
var app = builder.Build();

using (var serviceScope = app.Services.CreateScope())
{
    var services = serviceScope.ServiceProvider;

    var localizer = services.GetRequiredService<IStringLocalizer<SharedResource>>();
    var options = services.GetRequiredService<IOptions<MvcOptions>>().Value;

    options.ModelBindingMessageProvider.SetValueMustNotBeNullAccessor((field) => localizer["Validation_ValueMustNotBeNull", field]);
    options.ModelBindingMessageProvider.SetAttemptedValueIsInvalidAccessor((value, field) => localizer["Validation_AttemptedValueIsInvalid", value, field]);
    // ...
}

You can check here all the available properties you can override.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @LazZiya'sand
  • Low reputation (1):
Posted by: John Jones

79614305

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

This work for me: npm cache clean --force.

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

79614300

Date: 2025-05-09 14:16:17
Score: 1.5
Natty:
Report link

I had started to notice the same thing, though I don't know if it is new or not. You can even see it occur on the angular material site, so it isn't an implementation issue. Open that first dialog without animation button a few times. If you click outside to close, the overlay is leaked, not the dialog component it self, but if you click anywhere inside the dialog at all, that becomes a leak.

https://material.angular.dev/components/dialog/examples

enter image description here

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

79614299

Date: 2025-05-09 14:15:17
Score: 2
Natty:
Report link

I don't have any problems with Weighted Switch Controller and JMeter 5.4.2

enter image description here

The error you're getting means that there is no jmeter-plugins-cmn-jmeter in JMeter Classpath

I would recommend installing this plugin via JMeter Plugins Manager, this way it will download all dependencies and this problem will go away

Reasons:
  • Blacklisted phrase (1): this plugin
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Ivan G

79614297

Date: 2025-05-09 14:14:16
Score: 0.5
Natty:
Report link

$git pull origin your-branch is a shorcut which runs two commands one after another:

  1. $git fetch origin your-branch
  2. $git merge origin your-branch

So:

So, if you're checked out on a different branch in your workspace (your-other-branch) and you run $git pull origin your-branch, it'll update your-branch on your local repository, then it'll merge your-branch from the local repository into your-other-branch in your workspace.

tdlr; run $git switch/checkout your-branch before running $git pull origin your-branch.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): is a
  • Low reputation (1):
Posted by: Kuchengeschmack

79614295

Date: 2025-05-09 14:12:16
Score: 2.5
Natty:
Report link

TurtoiseGit (Windows Explorer extension) > Show log

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

79614294

Date: 2025-05-09 14:12:16
Score: 2
Natty:
Report link

However, the Convert Custom Object to JSON does not support datatable datatypes. It appears that the datatable must be first converted to an intermediate datatype first and there is where I'm hitting a wall. The CustomObject datatype appears to be a (pardon my terminology) a single row entity/instance. I've pursued several posted solutions and none of them work.

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

79614286

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

I tried the time_pulse_us function with a mixed result. I fed the microcontroller (Pi Pico) from a function generator. The duration I got was a mixed bag with times all over the place. I then used the same setup but with Arduino IDE and used the pulseInLong function. The result was exact to three decimals.

My conclusion is that MicroPython is not suited for time critical applikations. At least not with the time_pulse_us function. It is too unreliable.

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

79614284

Date: 2025-05-09 14:04:13
Score: 3.5
Natty:
Report link

Update on this issue. The S3 trigger seemed to have a timing issue. I was able to resolve this by using Cloudwatch EventBridge to monitor S3 CreateObject event and use that as a trigger. Once I removed the S3 trigger, changed to this trigger (and adjusted code for the changes to JSON event), it works perfectly now.

Reasons:
  • Blacklisted phrase (1): Update on this
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Brian Edwards

79614276

Date: 2025-05-09 14:00:12
Score: 3
Natty:
Report link

I had a similar error (130 unknown data type) but it was because the original field was created as a char instead of varchar. When I dropped and re-created the field as varchar, the migration to SQL Server worked.

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

79614274

Date: 2025-05-09 13:59:11
Score: 7.5 🚩
Natty: 5.5
Report link

The website https://developer.bosch.com/products-and-services/sdks/bosch-glm-plr-app-kit closed back in 2022.

Do you know where the Bosch GLM/PLR Bluetooth App Kit can be found now?

Thanks

Eric

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Eric

79614265

Date: 2025-05-09 13:53:08
Score: 1.5
Natty:
Report link

There a Chrome extension to add the VSIX download option to the VS Code marketplace

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

79614260

Date: 2025-05-09 13:49:07
Score: 2.5
Natty:
Report link

In your POST-triggered push version, you are not keeping the stream open in the GET method for the '/sse' route. As a result, the stream gets closed, and your frontend is no longer able to read from it.

The only required modification is adding a while (true) loop to keep the stream open:

app.get('/sse', async (c) => {
  return streamSSE(c, async (stream) => {
    activeStreams.add(stream);

    stream.onAbort(() => {
      activeStreams.delete(stream);
    });

    // Send initial message (optional)
    await stream.writeSSE({
      data: `Connected at ${new Date().toISOString()}`,
      event: "time-update",
      id: String(id++),
    });


    // While-True loop to keep stream open
    while (true) {
      await stream.sleep(1000); // default delay
    }
  });
});

Please let me know whether this resolves your issue!

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alpharius397

79614257

Date: 2025-05-09 13:46:06
Score: 12.5 🚩
Natty: 4.5
Report link

Hi Did you ever get this Solved?
I have a similar issue now,. after from .net to .net core application, migrated LinqToXsd to using the XObjectsCore nuget, Same code base, but now i get the error, duplicate nodes, what is suggested fix this without recreating the cs file?

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever get this Solved
  • RegEx Blacklisted phrase (1.5): Solved?
  • RegEx Blacklisted phrase (1): i get the error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have a similar issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: sridhar

79614253

Date: 2025-05-09 13:44:05
Score: 0.5
Natty:
Report link

You can set up GitLab as use bug tracker with the following steps:

  1. Login to the Kiwi TCMS web interface as user with superuser status or as a member of group Administrator
  2. Go to the top menu and select Admin → Everything else → Bug trackers
  3. Click Add Bug tracker
  4. Enter the following information:
    • Name: "GitLab Project A"
    • Tracker type: "tcms.issuetracker.types.Gitlab"
    • Base URL: "https://gitlab.com/%5C<Path to Project A>"
    • API URL: "https://gitlab.com"
    • API username: not required
    • Api password: project access token (scopes: api, role: reporter)

Now you can go to a test run and click on the three dots on the right of a test case and select Report bug. The issue tracker of your GitLab project will then open with an issue containing all relevant information of the corresponding test case.

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

79614251

Date: 2025-05-09 13:43:04
Score: 5.5
Natty: 6.5
Report link

I do some research on online learning and I find this topic.

I have a question because in your example u have only one batch of data, am i right ? So if i understand right, you could use .fit because in your example it would do the same result no ?

So to use train_on_batch u have to use a for loop, no ?

Thanks a lot

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1.5): I have a question
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: lulu marty

79614249

Date: 2025-05-09 13:42:03
Score: 1.5
Natty:
Report link

I'm having a similar experience having used my own MIBs in the MIB folder.

ERRORS as follows:

time=2025-05-09T13:31:39.200Z level=INFO source=net_snmp.go:174 msg="Loading MIBs" from=mibs

time=2025-05-09T13:31:39.202Z level=WARN source=main.go:179 msg="NetSNMP reported parse error(s)" errors=56

time=2025-05-09T13:31:39.202Z level=ERROR source=main.go:185 msg="Missing MIB" mib=SNMPv2-TC from="At line 10 in mibs/WLC.mib"

time=2025-05-09T13:31:39.202Z level=ERROR source=main.go:185 msg="Missing MIB" mib=SNMPv2-TC from="At line 10 in mibs/WIFI.mib"

time=2025-05-09T13:31:39.202Z level=ERROR source=main.go:185 msg="Missing MIB" mib=SNMPv2-TC from="At line 10 in mibs/WAN.mib"

time=2025-05-09T13:31:39.202Z level=ERROR source=main.go:185 msg="Missing MIB" mib=SNMPv2-TC from="At line 10 in mibs/SFP.mib"

time=2025-05-09T13:31:39.202Z level=ERROR source=main.go:185 msg="Missing MIB" mib=SNMPv2-TC from="At line 10 in mibs/PEPVPN-SPEEDFUSION.mib"

time=2025-05-09T13:31:39.202Z level=ERROR source=main.go:185 msg="Missing MIB" mib=SNMPv2-TC from="At line 10 in mibs/LAN.mib"

time=2025-05-09T13:31:39.202Z level=ERROR source=main.go:185 msg="Missing MIB" mib=HCNUM-TC from="At line 12 in mibs/IPT-NETFLOW-MIB.my"

time=2025-05-09T13:31:39.202Z level=ERROR source=main.go:185 msg="Missing MIB" mib=SNMPv2-TC from="At line 14 in mibs/IPT-NETFLOW-MIB.my"

time=2025-05-09T13:31:39.202Z level=ERROR source=main.go:185 msg="Missing MIB" mib=SNMPv2-TC from="At line 9 in mibs/IPSEC-VPN.mib"

time=2025-05-09T13:31:39.202Z level=ERROR source=main.go:185 msg="Missing MIB" mib=SNMPv2-TC from="At line 10 in mibs/GRE.mib"

time=2025-05-09T13:31:39.202Z level=ERROR source=main.go:185 msg="Missing MIB" mib=SNMPv2-TC from="At line 10 in mibs/DEVICE.mib"

time=2025-05-09T13:31:39.202Z level=ERROR source=main.go:185 msg="Missing MIB" mib=SNMPv2-TC from="At line 10 in mibs/CELLULAR.mib"

time=2025-05-09T13:31:39.202Z level=ERROR source=main.go:137 msg="Failing on reported parse error(s)" help="Use 'generator parse_errors' command to see errors, --no-fail-on-parse-errors to ignore"

I downloaded the MIBs it said they were missing into the MIBs folder on the French site, but still no joy. Any guidance very much appreciated!.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Thomas Tailford

79614246

Date: 2025-05-09 13:42:03
Score: 0.5
Natty:
Report link

My solution was to put $CI_PROJECT_DIR between redirect operator and build.env, i.e. instead of

  script:
    - echo "API_INVOKE_URL=$API_INVOKE_URL" >> build.env

I have now

  script:
    - echo "API_INVOKE_URL=$API_INVOKE_URL" >> $CI_PROJECT_DIR\build.env

And everything works.

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

79614244

Date: 2025-05-09 13:41:03
Score: 1.5
Natty:
Report link

It might be due to a mix of tabs and spaces in the indentation. Different codes or editors may use different types of indentation, so issues can occur when you copy and use code with mixed indentation styles. If you select all the code with Ctrl + A like in the image below, you'll be able to tell which type of indentation was used. Additionally, the 'Spaces: 4' label at the bottom of VS Code shows how indentation is currently configured in the editor. You can change it as needed.

enter image description here

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: OH Yucheol

79614239

Date: 2025-05-09 13:40:02
Score: 2
Natty:
Report link

Start the application using npm dev or pnpm dev and it should generate the file for you.

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

79614230

Date: 2025-05-09 13:33:00
Score: 1
Natty:
Report link

Okay so, I forgot that destructuring preventDefault from an Event object gives an unusable function (since it's not bound to the event object's this anymore)

Calling preventDefault on the mousedown event does work, woops '^^

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

79614220

Date: 2025-05-09 13:27:59
Score: 1
Natty:
Report link

We had same problem with multi language app that is on all platforms (android, iOS, desktop and web) so we came up with building gradle plugin for it.
It uses the defined strings.xml from different folders in the composeResources folder to generate languages along with global state for the current language and helper functions to list all languages in the app or find it with the language code.
You can check out our repository readme for more details of using plugin and see if it satisfying your needs.

https://github.com/hyperether/compose-multiplatform-localize

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

79614217

Date: 2025-05-09 13:26:59
Score: 4
Natty:
Report link

Created a ticket for to AWS. Got the answer that this is not (yet) possible.

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

79614213

Date: 2025-05-09 13:23:58
Score: 0.5
Natty:
Report link

The strategy described is not recommended, due to how package manager workspaces work. A workspace and, more broadly, the JS ecosystem, expect that the workspace's definition is at the root of the workspace. What you're doing may work in the short term, or on accident, but it's not recommended.

To share code across workspaces, it's recommended to publish a package to a registry and consume it from there, like you would for any other external package.

Note: The limitations/expectations involved in this decision are based on package managers, not Turborepo. Turborepo does adhere to expectations of the JavaScript ecosystem, so what's described in the question doesn't work because of how package manager workspaces work by convention.

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

79614207

Date: 2025-05-09 13:21:57
Score: 1.5
Natty:
Report link

I know this answer is late, but I hope my experience can help someone. In my case, the error occurred while using Plesk shared hosting. I had created an Excel template and pre-formatted thousands of rows in print preview, preparing for a large data export. However, the error disappeared once I removed the formatting. I add the formatting in C# during exporting of the data.

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

79614199

Date: 2025-05-09 13:18:56
Score: 4
Natty:
Report link

Yes, I have similar issue with reserved IPv6. But I have noticed that issue appeared in php 8.4.
For IP:

2001:0db8:85a3:0000:0000:8a2e:0370:7334

The code like this:

filter_var(
            $ip,
            FILTER_VALIDATE_IP,
            FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE
        )

for PHP 8.3 returns bool(false)
but for PHP 8.4 returns

2001:0db8:85a3:0000:0000:8a2e:0370:7334

So does not filter it.

I guess it might be problem of some php settings, but I haven't found any.

Reasons:
  • Blacklisted phrase (1): I have similar
  • Has code block (-0.5):
  • Me too answer (2.5): I have similar issue
  • Low reputation (1):
Posted by: mdco

79614197

Date: 2025-05-09 13:17:55
Score: 1.5
Natty:
Report link

In your Databricks workspace unity Catalog enable, go to Compute > Cluster Policies, click Create Policy, and name it UC_Policy to set up a Unity Catalog-enabled cluster policy.

enter image description here

Attach the UC policy to your cluster.

enter image description here

The notebook in the child pipeline is using a Linked Service that's compatible with Unity Catalog.

The way the Linked Service is defined in each pipeline should be reviewed.

It should be verified the user identity Managed Identity or Personal Access Token—changes between pipeline levels to provide correct Authentication type and cluster details.

enter image description here

It should also be checked whether the notebook activity is directly associated with a policy or cluster pool, or if that association is lost when the notebook is invoked through the parent pipeline.

enter image description here

Once all references use the same linked service and policy: Run Master pipeline — it should now work successfully.

enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Pritam

79614188

Date: 2025-05-09 13:13:53
Score: 2
Natty:
Report link

I came to this page with the same issue and I have found that I have 2 settings.json files:

  1. In C:\Users\<username>\AppData\Roaming\Code\User\settings.json

  2. C:\...\project\.vscode\settings.json , so in my workspace (opened folder)

The first one had the -vv setting, the second one didn't. Adding -vv to the second one fixed the issue for me.

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

79614186

Date: 2025-05-09 13:12:53
Score: 2.5
Natty:
Report link

Have you implemented DIY animation

animateItem only fadeIn fadeOut
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: kangkang

79614183

Date: 2025-05-09 13:10:53
Score: 0.5
Natty:
Report link

You have to convert the task, bug, etc, to a "Product Backlog Item".

  1. Click on the item in the "Work Items".

  2. Over to the far right is a three-dots icon, click on that.

  3. Click "Change type...".

  4. Choose "Product Backlog Item", and give a reason if you wish to.

  5. Click "Ok"

  6. Update any parameters it highlights in red.

  7. Click "Save".

Reasons:
  • No code block (0.5):
Posted by: ckhatton

79614181

Date: 2025-05-09 13:10:53
Score: 2.5
Natty:
Report link

Right click on the project or solution and select Sync Namespaces.

enter image description here

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

79614179

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

After a few AS restarts or computer reboots the configs got loaded correctly...

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Some Noob Student

79614168

Date: 2025-05-09 13:04:51
Score: 0.5
Natty:
Report link

Try with LEFT JOIN and WHERE with OR logic:

SELECT
    *
FROM table1 t1
LEFT OUTER JOIN table2 t2 ON t1.d = t2.id
LEFT JOIN table3 t3 ON t1.id = t3.id
WHERE t3.id IS NOT NULL OR t1.colx = '1'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Omprakash S

79614164

Date: 2025-05-09 13:02:50
Score: 3.5
Natty:
Report link

That's really annoying. Thank you for sharing I am having the same exact issue, specifically when using .popoverTip. Looks like trash now.

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

79614158

Date: 2025-05-09 12:59:49
Score: 2
Natty:
Report link

I just found a website that shows it: https://gitwhois.com/

II'm sharing it so I can find it later.

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

79614156

Date: 2025-05-09 12:58:49
Score: 0.5
Natty:
Report link

I wanted to answer this in the hope it would help.

As Radoslav pointed out, what it did come down to was "something completely unrelated is using the same multicast IP/port". As it turns out something else on the network was using this port and somehow getting into jgroups processing causing the strange version to appear and mismatch in the packets. It was unfortunate because it did give off the impression that there was something wrong from a configuration standpoint i.e. The version imported to the jar was mismatching.

Switching to a completely unused port on the machine allowed this to work first time.

Hope it helps if someone else faces this in future.

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dcoyne

79614145

Date: 2025-05-09 12:53:47
Score: 4.5
Natty: 6.5
Report link

m

fsdsfdfdfdfdfdfdfdffdffsdsfdfdfdfdfdfdfdffdffsdsfdfdfdfdfdfdfdffdffsdsfdfdfdfdfdfdfdffdffsdsfdfdfdfdfdfdfdffdffsdsfdfdfdfdfdfdfdffdf

;

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Low entropy (1):
  • Low reputation (1):
Posted by: user30492031

79614144

Date: 2025-05-09 12:52:47
Score: 0.5
Natty:
Report link

I saw your question yesterday, I see no one has responded yet so I'll try to get you in the right direction. I'm honestly a bit lost in your code (not your fault) so I can't provide you with an exact solution, but I know where your problem is, the origin.

Every 3D object has an origin point in 3D space. That origin point is completely free from the object in space (it could be anywhere, depending on how it was made). This point however determines how certain changes get oriented, especially stuff like rotation. The object will rotate around this point. If you then look at your first and second screenshot again, you see where your origin point is, it is at the top right corner of your original wooden block. That's why if you turn it towards that top side (second screenshot), it will leave a space, and when you rotate it down, it will rotate 'into' itself.

Again, I'm just not experienced enough to determine how this is set in your code or how to fix it, but I hope you can do something with this.

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

79614143

Date: 2025-05-09 12:52:47
Score: 1
Natty:
Report link

TKInter widget not appearing on form

On notebook, add keyword fill='both'

Move label1 next to label2 on line 13.

snippet:

notebook = ttk.Notebook(form)
notebook.pack(expand=True, fill='both')

label1 = tkinter.ttk.Label(form, text='Test Label 1') 
label2 = tkinter.ttk.Label(form, text='Test Label 2')   #   This one works
entry = tkinter.ttk.Entry(form)

Screenshot:

enter image description here

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

79614142

Date: 2025-05-09 12:52:47
Score: 1.5
Natty:
Report link

As an extra, showcasing the expressive power of standard Scheme, here is an implementation that accepts any number of lists, including none at all.(In other words, it behaves just like Python's built-in zip()function.)

(define (zip . lists)
  (if (null? lists)
      '() 
      (apply map list lists)))

Let's go to the REPL and test that it works as advertised:

> (zip) ; no arguments at all
()

> (zip '(1 2 3)) ; a single argument
(1) (2) (3))

;; Let's conclude by trying four arguments.
> (zip '(1 2 3) '(I II III) '(one two three) '(uno dos tres))
((1 I one uno) (2II two dos) (3 III three tres))

Finally, we make sure that the two-argument tests in the original post continue to pass:

> (zip '(1 2) '(3 4))
((1 3) (2 4))

> (zip '(1 2 3) '())
()

> (zip '() '(4 5 6))
()

> (zip '(8 9) '(3 2 1 4))
((8 3) (9 2))

> (zip '(8 9 1 2) '(3 4))
((8 3) (9 4))

We get all of this for four lines of standard-Scheme code -- no extra libraries, no language extenions. That's not so bad, is it?

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

79614140

Date: 2025-05-09 12:50:46
Score: 3
Natty:
Report link

Thank you, my good Sir.
Your helped where AI could not, and for that, I am in debt with you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Gleison Viera