79745806

Date: 2025-08-25 13:19:44
Score: 2
Natty:
Report link

Really insightful post ran into a similar issue recently and was also surprised that adding a new enum value triggered a compatibility error. Totally agree that this makes managing evolving schemas in Pub/Sub pretty tricky. Curious to hear how others are handling this switching to strings might be the safer route, but feels like a compromise.

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

79745798

Date: 2025-08-25 13:13:42
Score: 0.5
Natty:
Report link

The problem is actually not in the filter, but in the size of the propagation step. In this case, it is too small, which means that the fft is being computed too many times and thus generating error. By increasing the step size to 0.001, you get way better results:

enter image description here

You can prove that these results are better by introducing a function that measures pixel distance between arrays:

def distance(a: array,b: array):
    return np.dot((a-b).flatten(),(a-b).flatten())/len(a.flatten())  

Using this function to compare the propagated profile to the analytical one shows a distance of 1.40-0.33j when dz=0.001, whereas the distance is -2.53+22.25j when dz=0.00005. You can play around with dz to see if you can get better results.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Henrique Guerra

79745794

Date: 2025-08-25 13:10:41
Score: 1.5
Natty:
Report link

Try to normalize your data before running linear regression (I mean your X) by using MinMaxScaler for example. (sklearn.preprocessing.MinMaxScaler), thay may have an impact on the coeficients.

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

79745793

Date: 2025-08-25 13:09:41
Score: 1
Natty:
Report link

If you only want to subscribe to pull request and commits on main, you can do like:

/github subscribe owner/repo pulls commits:main
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alvaro

79745789

Date: 2025-08-25 13:05:40
Score: 2.5
Natty:
Report link

I think the reason in my case for this error is not the Python version, but rather that the Mac architecture is different than those available for built distributions I have M1 which is ARM64 and for Macos there is only available x86-64. So I cannot install ruptures this way.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: AHR

79745783

Date: 2025-08-25 13:00:38
Score: 3
Natty:
Report link

Solved by removing expose sourse roots to PYtHONPAT. But the reason is

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

79745772

Date: 2025-08-25 12:53:36
Score: 2
Natty:
Report link

i generate this software with python for convert images to video.

Image2Video - Turn Images into Videos Effortlessly

A practical tool to convert image collections into high-quality videos with customizable settings. Powered by FFmpeg, perfect for creating timelapses, creative slideshows, or processing CCTV footage.


🌟 Key Features

https://github.com/intellsoft/image-to-timelapse-video

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

79745763

Date: 2025-08-25 12:47:35
Score: 0.5
Natty:
Report link

MANIFEST.MF

Manifest-Version: 1.0
MIDlet-1: Hello!, icon.png, Hello
MIDlet-vendor: Mehrzad
MicroEdition-Configuration: CLDC-1.1
MIDlet-name: Hello!
MIDlet-version: 1.1
Created-By: 1.8.0_381 (Oracle Corporation)
Nokia-MIDlet-Category: Application
MicroEdition-Profile: MIDP-2.0

It should be like this:

Manifest-Version: 1.0
MIDlet-1: Hello!, icon.png, Hello
MIDlet-Vendor: Mehrzad
MicroEdition-Configuration: CLDC-1.1
MIDlet-Name: Hello!
MIDlet-Version: 1.1
Created-By: 1.8.0_381 (Oracle Corporation)
Nokia-MIDlet-Category: Application
MicroEdition-Profile: MIDP-2.0
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mehrzad.20105

79745761

Date: 2025-08-25 12:46:35
Score: 1
Natty:
Report link

I left this problem alone, and I was working on the other parts of my project

last night i ran into a problem and google up the error message and i came up with this thread of stack overflow

link

I looked at the accepted answer(first answer) he wrote

The problem was: I was using the slim build of jQuery,

I was trying to figure out the solution for another problem, I decided to give it a shot, I replace the jquery CDN link with the one which is not slim version, and bam it worked!

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ramin Safari

79745752

Date: 2025-08-25 12:35:32
Score: 0.5
Natty:
Report link

To fix this issue, increase the heap memory by updating the following line in android/gradle.properties:

org.gradle.jvmargs=-Xmx512M

to:

org.gradle.jvmargs=-Xmx8G

Then run:

flutter clean
flutter run

If 8 GB isn’t enough, you can increase it further (e.g., -Xmx16G).

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

79745751

Date: 2025-08-25 12:34:32
Score: 1.5
Natty:
Report link

For me, the answer was I don't want the button to send the form at all, and this helped me:

https://stackoverflow.com/a/3315016/5057078

Text of the answer:

The default value for the type attribute of button elements is "submit". Set it to type="button" to produce a button that doesn't submit the form.

<button type="button">Submit</button>

In the words of the HTML Standard: "Does nothing."

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

79745747

Date: 2025-08-25 12:32:31
Score: 4
Natty:
Report link

To be honest, i dont know either !

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

79745740

Date: 2025-08-25 12:24:29
Score: 1.5
Natty:
Report link

I don't know if it will solve your problem, but you are creating an ChatOpenAI model, who is maybe, not optimized for Mistral Response.

There is a class for Mistral Model Who looks like that :

from langchain_mistralai import ChatMistralAI

ChatMistralAI = ChatMistralAI(model="mistral-nemo",mistral_api_key=_api_key)

Regards

Reasons:
  • Blacklisted phrase (1): Regards
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Charles Divaret

79745739

Date: 2025-08-25 12:22:28
Score: 2
Natty:
Report link

Firstly, you can define a ghost sequence which clones the array. You can then write two-state lemmas about the array. I happened to write a blog post about a very similar situation here.

https://dev.to/hath995/verified-ordered-set-in-dafny-2aak

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
Posted by: Hath995

79745725

Date: 2025-08-25 12:03:24
Score: 0.5
Natty:
Report link

I faced this issue in my Flutter app and resolved it by increasing the Gradle JVM memory.

In android/gradle.properties, update the line:

org.gradle.jvmargs=-Xmx512M

to:

org.gradle.jvmargs=-Xmx8G

Then run:

flutter clean
flutter run

If 8 GB isn’t enough, you can increase it further 16GB(e.g., -Xmx16G).

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

79745723

Date: 2025-08-25 12:02:23
Score: 2
Natty:
Report link

I don't know if someone still needed this, but the alternative I found is using panel, then setting the BorderStyle to FixedSingle, then height to 2px. You can also do it with vertical separator lines using same method except the width set to 2px instead of the height. I was used to designing layout on Netbeans with Java using javax.swing.Separator and I was looking for it when I shift language to C# with Visual Studio 2022.

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

79745721

Date: 2025-08-25 12:01:23
Score: 2.5
Natty:
Report link

You mustn't close the window of turtle until it done and you can add this line to make it not close until you close it by your self

turtle.done() # put in end

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ų…Ø­Ų…ØŊ ØđØĩØ§Ų… ØđØĻØŊ Ø§Ų„ØĻاØģØ·

79745718

Date: 2025-08-25 11:59:22
Score: 3.5
Natty:
Report link

Sir!

Thank you so much! I had almost lost hope :)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Fahad Abdullah

79745710

Date: 2025-08-25 11:53:21
Score: 4
Natty:
Report link

Fixed it, Problem was that the XSRF token Header was NOT set. i had to do it manually.

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

79745698

Date: 2025-08-25 11:44:18
Score: 1
Natty:
Report link

https://blog.logrocket.com/create-style-custom-buttons-react-native/ use this tutorial, using TouchableOpacity from react-native

Using <TouchableOpacity /> to create custom button components

Now that you’ve set up the main screen, it’s time to turn your attention to the custom button component.

const AppButton = props => (
    // ...
)

Name the custom button component AppButton.

Import the <TouchableOpacity /> and <Text /> components from react-native.

import { View, Button, StyleSheet, TouchableOpacity, Text } from "react-native";

To create custom buttons, you need to customize the <TouchableOpacity /> component and include the <Text /> component inside of it to display the button text.

const AppButton = ({ onPress, title }) => (
  <TouchableOpacity onPress={onPress} style={styles.appButtonContainer}>
    <Text style={styles.appButtonText}>{title}</Text>
  </TouchableOpacity>
);
Reasons:
  • Blacklisted phrase (1): this tutorial
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Henrique Vazquez

79745694

Date: 2025-08-25 11:41:17
Score: 3.5
Natty:
Report link

After 2 months later, it still need user add the prompt manually.

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

79745689

Date: 2025-08-25 11:35:16
Score: 0.5
Natty:
Report link

Looking at your sample \S+?\.c should work.

\S checks for the 1st non whitespace character and matches

+? quantifies this match for as few as possible characters

\.c matches the dot and c

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

79745684

Date: 2025-08-25 11:31:15
Score: 2.5
Natty:
Report link

The fuse operation and the script itself will work correct if to change the negative dx to the positive one (as well as the x-origine, accordingly) in the addRectangle().

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

79745679

Date: 2025-08-25 11:27:14
Score: 1.5
Natty:
Report link

Official Documentation and Explanation on how to properly delete a message

Here are the key Google documents that explain the correct process:

  1. Gmail IMAP Extensions - Access to Gmail labels (X-GM-LABELS)

    • Link: https://developers.google.com/gmail/imap/imap-extensions#access_to_gmail_labels_x-gm-labels
    • Explanation from this document: This developer documentation explains that Gmail provides a custom X-GM-LABELS IMAP attribute. You can use the STORE command with this attribute to modify the labels on a message. The documentation explicitly lists \Trash and \Spam as valid labels you can add. This is the correct, Google-supported IMAP command for applying the "Trash" label to a message, which is the necessary first step for deletion.
  2. How Gmail works with IMAP clients - "How messages are organized"

    • Link: https://support.google.com/mail/answer/7126229?hl=en#zippy=%2Chow-messages-are-organized
    • Explanation from this document: This Google Support page clarifies the relationship between folders and labels. Critically, under the "How messages are organized" section, it states: "Messages in Trash and Spam are not included in "All Mail."" This confirms that applying the \Trash or \Spam label is the specific action that removes a message from the general "All Mail" archive, putting it into a state where it can be permanently deleted.

The Correct Two-Step Process

Based on the documentation, the reliable way to move a message to the Trash and permanently delete it is:

  1. Apply the \Trash Label: Use the UID STORE ... +X-GM-LABELS (\\Trash) command on the message in its original folder (e.g., INBOX). This effectively moves it to the [Gmail]/Trash folder.
  2. Expunge from Trash: SELECT the "[Gmail]/Trash" folder, mark that same message with the \Deleted flag, and then run the EXPUNGE command.

Understanding Gmail's Label System: The "All Mail" Archive

In Gmail, the traditional concept of folders is replaced by a more flexible system of labels. The only true "folder" that holds all of your email is the "All Mail" archive. Everything else that appears to be a folder, including your Inbox, is simply a label applied to a message.

  1. How Gmail Works with IMAP Clients ("How messages are organized")

    • Link: https://support.google.com/mail/answer/7126229?hl=en#zippy=%2Chow-messages-are-organized
    • Explanation from this document: This Google Support page explains that Gmail only keeps one copy of every message. This single copy is located in your "All Mail" view. The document clarifies that when a message appears in a "folder" like the Inbox, it's not a separate copy. Instead, the message in "All Mail" has an "Inbox" label applied to it, making it visible in that view. This confirms that "All Mail" is the master archive, and other views are just filtered representations based on labels.
  2. Creating Labels to Organize Gmail (User Guide)

    • Link: https://support.google.com/mail/answer/118708?hl=en
    • Explanation from this document: This guide demonstrates that the "folders" users create are, in fact, labels. It highlights a key feature impossible with traditional folders: you can apply multiple labels to a single email. This allows one message from your "All Mail" archive to appear in several different organizational categories (e.g., "Work," "Projects," and "Urgent") simultaneously, reinforcing that these are not separate folder locations but descriptive tags.
  3. Access to Gmail Labels via IMAP (X-GM-LABELS) (Developer Guide)

    • Link: https://developers.google.com/gmail/imap/imap-extensions#access_to_gmail_labels_x-gm-labels
    • Explanation from this document: This technical documentation provides the definitive programmatic proof. It shows that manipulating so-called "folders" is done by modifying a message's labels through the X-GM-LABELS attribute. Even system-critical locations like the Inbox, Spam, and Trash are treated as special labels (\Inbox, \Spam, \Trash). This confirms that from a technical standpoint, there is no "move" operation between folders, only the adding and removing of labels on the single message copy that always resides in "All Mail" until it is moved to Trash or Spam.
Reasons:
  • Blacklisted phrase (1): This guide
  • Blacklisted phrase (1): this document
  • Whitelisted phrase (-1.5): You can use
  • RegEx Blacklisted phrase (2): Urgent
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: phpjunkie

79745668

Date: 2025-08-25 11:18:11
Score: 0.5
Natty:
Report link

Thank you, everyone. I had the same issue, and it was resolved after using the proper winutils version for Spark 4.0.0/Hadoop 3.4.x. You can download it from https://github.com/kontext-tech/winutils/tree/master

  1. Copy the entire bin from hadoop-3.4.0-win10-x64

  2. Paste in C:\Hadoop (it will look like C:\Hadoop\bin)

  3. Add variable HADOOP_HOME = C:\Hadoop

  4. Add Path C:\Hadoop\bin

  5. Optional (If above doesn't work) - Add hadoop.dll to C:\Windows\System32 (Suggested by 1 of the commenters on this post)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Shadow

79745660

Date: 2025-08-25 11:12:10
Score: 2.5
Natty:
Report link

I have got this working using ShadowDOM example.

The critical piece was to pass (as @ghiscoding indicates) is to set the options.shadowRoot item.

I believe the errors like TypeError: Cannot read properties of null (reading '0') where from extra controls I taken from a different example - commenting these out for now.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @ghiscoding
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dave

79745649

Date: 2025-08-25 10:58:06
Score: 2
Natty:
Report link

Just Enable the option in IIS for 32 bit application , Your issue will be resolved.
For Settings you will follow this path
Application pool-> Right click on Application Pool -> advance settings-> Enable 32 bit -> True

enter image description here

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

79745639

Date: 2025-08-25 10:54:05
Score: 3.5
Natty:
Report link

I have found that the (new?) plugin is now called NppTextFx2 in the plugins admin.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: master2080

79745637

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

I've recently came to know this package that applies shimmer effect to any widgets,
But there are some limitations in this.

You cannot use this on image like even if you apply Colors.transparent as baseColor still it wouldn't make the image appear,

THE POINT IS,
Doesn't matter which colour or child your widget has, after applying the shimmer.fromColors the only baseColor works as background color and highlight color as the effect.

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

79745636

Date: 2025-08-25 10:53:04
Score: 5
Natty: 5
Report link

Oh wow, I remember struggling with unpacking an XAPK too 😅 ended up finding tools on sites like https://apkjaka.com/ that made it way easier. Have you tried that route before?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: APKJAKA

79745629

Date: 2025-08-25 10:48:03
Score: 1.5
Natty:
Report link

The answer that I gave myself is the following:

Then, I agree with @Homer512 's comment, which also stated that this makes it also useful to work on OR operations.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Homer512
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: jackb

79745628

Date: 2025-08-25 10:47:02
Score: 3
Natty:
Report link

Looks like it's not possible by default but yet there is a workaround. I haven't tried myself so, solely depending the accepted answer from an AWS support engineer.

https://repost.aws/questions/QUp8dW3d91TTmSNWKPwZvUrw/auth-cognito-user-without-temporary-password#ANAIkPvchVTUaJYGJ-LR-IKg

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

79745627

Date: 2025-08-25 10:47:02
Score: 1
Natty:
Report link

I also have a problem with cordova-plugin-admobpro after updating to API 35 - rewarded video is not shown. It seems that the plugin is relates to an outdated SDK version (20.4.0):

https://developers.google.com/admob/android/deprecation

I tried specifying more recent versions, such as 23.2.0, with the following command:

cordova plugin add cordova-plugin-admobpro --save --variable PLAY_SERVICES_VERSION=23.2.0 --variable ADMOB_ANDROID_APP_ID="ca-app-pub-***~***"

Unfortunately, it doesn’t appear to work with these newer versions, if I understand correctly.

I sent the letter to the author - Raymond Xie (floatinghotpot), waiting for feedback. If he doesn't answer, I'll try other projects, but cordova-plugin-admobpro was the most convenient IMHO:

https://www.npmjs.com/package/admob-plus-cordova

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

79745612

Date: 2025-08-25 10:33:59
Score: 3
Natty:
Report link

use new version of quill

npm i react-quill

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

79745610

Date: 2025-08-25 10:29:58
Score: 10
Natty:
Report link

I am also facing this issue even after updating dependencies. Any solution ?

Reasons:
  • Blacklisted phrase (1.5): Any solution
  • Blacklisted phrase (1): also facing this
  • RegEx Blacklisted phrase (2): Any solution ?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nikita Goyal

79745608

Date: 2025-08-25 10:24:56
Score: 6
Natty: 6
Report link

I am trying to compile 3.6.9 since it is needed for dependencies (Pulsar), and it gets stuck there as well on an RPI4 with gcc 12.

make altinstall looks ok but i need to install it systemwide, any tips?

Best regards

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Blacklisted phrase (1): any tips
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (1): I am trying to
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: fredrik

79745602

Date: 2025-08-25 10:18:54
Score: 0.5
Natty:
Report link

With a bit of testing and from the comments of people helping, I have come to a conclusion.

#define T1ms 16000    // assumes using 16 MHz PIOSC (default setting for clock source)

That preprocessor directive is wrong due to not using a L293D and utilizing another type of motor driver specific to stepper motors called a DM332T driver from stepperonline-omc.

Now, if I define T1ms to 400 unlike in the example previously listed for the internal clock frequency, I can move my stepper in one direction in a faster RPM. So something like this:

#define T1ms 400

Or...if I was risky, I could test with:

#define T1ms 1 // this is if I would like 400 RPM with the current driver config

See, the driver has an internal couple of dipswitch settings that can be altered on the outside of the driver. This dipswitch setting appliance on the outside of the driver allows for faster RPM or more steps per RPM.

I have been reading theory recently and learning about how to control the STEP of the stepper motors and direction of the stepper motors too. I have been reading from here: https://www.orientalmotor.com/stepper-motors/technology/stepper-motor-basics.html

With the preprocessor directive of T1ms set to 1, I would need to fasten my motor to something heavy so not to throw safety in the wind. This way, the motor will not become disconnected from its source or location. I think with my questioning, this is the answer I was looking to attain.

Q: How can I make the motor move faster than what the internal clock allows?

and...

A: Use a driver with dipswitches and allow the driver to account for driving.
Reasons:
  • Blacklisted phrase (0.5): How can I
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: For Ward

79745600

Date: 2025-08-25 10:16:54
Score: 3
Natty:
Report link

I created a new simple Flutter project and try to load a Tiled map on Firebase.

My folder structure:

assets/
 ├── image.png
 └── map.tmx

In my pubspec.yaml I declared:

flutter:
(2 spaces)assets:
(4 spaces)- assets/

This is my map.tmx

<?xml version="1.0" encoding="UTF-8"?>
<map version="1.10" tiledversion="1.11.2" orientation="orthogonal" renderorder="right-down" width="30" height="20" tilewidth="32" tileheight="32" infinite="0" nextlayerid="2" nextobjectid="1">
 <tileset firstgid="1" name="image" tilewidth="32" tileheight="32" tilecount="60" columns="6">
  <image source="image.png" width="192" height="336"/>
 </tileset>
 <layer id="1" name="Tile Layer 1" width="30" height="20">
  <data encoding="csv">
0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,
1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,
1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,
1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,
0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,
1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,
1,0,1,1,1,1,1,1,1,1,1,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,
0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,
0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
</data>
 </layer>
</map>

But I still get this error:

Unable to load asset: "assets/tiles/map.tmx".
The asset does not exist or has empty data.
See also: https://docs.flutter.dev/testing/errors

Where is the assets/tiles/ ?
Thank everyone.

Reasons:
  • RegEx Blacklisted phrase (1): I still get this error
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Truong Dan

79745585

Date: 2025-08-25 10:02:50
Score: 1
Natty:
Report link

+-------+----------------------------+-------------+-----------------------------+----------------------+-------------------------+-----------------------------+-----------------------------------------------+

| SL.NO | CROP NAME | RAINFALL | WEATHER CONDITIONS | NATURE OF CROP | SOIL TYPE | GLOBAL RANKING IN EXPORT* | PLACE OF AVAILABILITY (India) |

+-------+----------------------------+-------------+-----------------------------+----------------------+-------------------------+-----------------------------+-----------------------------------------------+

| 1 | Rice | 100–200 cm | Warm & humid; 22–32°C | Kharif | Clayey/alluvial loam | India ≈ #1 exporter | WB, UP, Punjab, Bihar, Odisha, TN, Assam etc. |

| 2 | Wheat | 50–75 cm | Cool, dry; 10–15°C grow, | Rabi | Well-drained loam | Mainly domestic use | UP, Punjab, Haryana, MP, Rajasthan, Bihar |

| | | | 21–26°C ripening | | | | |

| 3 | Jowar (Sorghum) | 45–75 cm | Warm, drought tolerant | Kharif (some Rabi) | Sandy loam/black soils | Small exporter | Maharashtra, Karnataka, Telangana, AP, MP |

| 4 | Bajra (Pearl millet) | 25–50 cm | Hot & arid; 25–35°C | Kharif | Sandy/loamy, light | Small exporter | Rajasthan, Gujarat, Haryana, UP, Maharashtra |

| 5 | Ragi (Finger millet) | 70–100 cm | Cool–warm; 18–28°C | Kharif (some Rabi) | Red loam/lateritic | Small exporter | Karnataka, TN, Uttarakhand, Sikkim, Himachal |

| 6 | Maize | 50–100 cm | Warm; 21–27°C | Kharif (also Rabi) | Fertile loam/alluvial | Minor exporter | Karnataka, MP, Bihar, UP, Telangana, AP, MH |

| 7 | Pulses (Chana, Arhar etc.) | 25–50 cm | Warm; dry at ripening | Rabi & some Kharif | Loam/black soils | Net importer | MP, Maharashtra, Rajasthan, UP, Karnataka |

| 8 | Sugarcane | 75–150+ cm | Warm; 21–27°C; frost-free | Plantation/Annual | Deep loam/alluvial | Brazil #1, India also exp. | UP, Maharashtra, Karnataka, TN, AP, Punjab |

| 9 | Oilseeds (Groundnut etc.) | 25–75 cm | Warm; 20–30°C | Mostly Kharif | Loam/black cotton | Limited exports | Gujarat, Rajasthan, MP, Maharashtra, AP, KA |

| 10 | Tea | 150–300 cm | Cool, humid; 15–25°C | Plantation | Acidic lateritic | Top 4–5 exporter | Assam, WB (Darjeeling), Kerala, TN, Karnataka |

| 11 | Coffee | 150–250 cm | Cool, shaded; 15–28°C | Plantation | Loam/laterite | Top 8–10 exporter | Karnataka (Kodagu), Kerala (Wayanad), TN |

| 12 | Horticulture (F&V) | Crop-spec. | Crop-specific | Varies | Fertile, well-drained | India #2 producer | Maharashtra (grapes), AP (mango), UP (potato) |

| 13 | Rubber | 200+ cm | Hot, humid; >25°C | Plantation | Lateritic/red loam | Not major exporter | Kerala, Karnataka, TN, NE states |

| 14 | Cotton | 50–100 cm | Warm; 21–30°C; frost-free | Kharif | Black cotton (regur) | Top 2–3 exporter | Maharashtra, Gujarat, Telangana, AP, MP etc. |

| 15 | Jute | 150–200 cm | Hot, humid; 24–35°C | Kharif | Alluvial delta soils | Top 2 (with Bangladesh) | WB, Bihar, Assam, Odisha, Meghalaya |

+-------+----------------------------+-------------+-----------------------------+----------------------+-------------------------+-----------------------------+-----------------------------------------------+

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Filler text (0.5): ----------------------------
  • Filler text (0): -------------
  • Filler text (0): -----------------------------
  • Filler text (0): ----------------------
  • Filler text (0): -------------------------
  • Filler text (0): -----------------------------
  • Filler text (0): -----------------------------------------------
  • Filler text (0): ----------------------------
  • Filler text (0): -------------
  • Filler text (0): -----------------------------
  • Filler text (0): ----------------------
  • Filler text (0): -------------------------
  • Filler text (0): -----------------------------
  • Filler text (0): -----------------------------------------------
  • Filler text (0): ----------------------------
  • Filler text (0): -------------
  • Filler text (0): -----------------------------
  • Filler text (0): ----------------------
  • Filler text (0): -------------------------
  • Filler text (0): -----------------------------
  • Filler text (0): -----------------------------------------------
  • Low reputation (1):
Posted by: Adithya Adi

79745575

Date: 2025-08-25 09:58:49
Score: 2
Natty:
Report link

According to the feedback from the GCC team, the issue that causes an Internal Compiler Error in GCC is that GCC also does not reject the struct binding as an invalid template argument

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

79745573

Date: 2025-08-25 09:53:47
Score: 5.5
Natty: 4.5
Report link

Here, I want to know where the OHLC data is coming from and how the candlesticks get rearranged according to the timeframe, like a 1-year chart with 1-day candles, and where the OHLC data is passed to display the candlesticks. - In trading view - enter image description here

Reasons:
  • Blacklisted phrase (1): I want to know
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: BharathTesting

79745569

Date: 2025-08-25 09:48:46
Score: 3.5
Natty:
Report link

SELAMÜNALEYKÜM BEYLER. NASIL KİNİTOPET İNDİREBİLİRİM BEYLER. BEYLER BİR BENİM ÇAY OCAĞINA GELİNDE SİZE KAHVE ISMARLIYIM DOSTLARIM. BEYLER NAPIONUZ BEYLER. BEN SİNAN KAYA MEMLEKETİM KARTAL KAYA GELDİM BURAYA KAYA KAYA HERKESE KAYARIM BEYLER DİKKAT EDİN KORKUN BENDEN WUUUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Filler text (0.5): AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  • Low reputation (1):
Posted by: OSURUKLUMUHİTTİN31

79745553

Date: 2025-08-25 09:34:42
Score: 0.5
Natty:
Report link

Thanks, I am able to access rest api with JWT Token.

Putting my steps for reference.

Get Access token sample :

curl -X POST 'http://localhost:8080/auth/token' \
  -H "Content-Type: application/json" \
  -d '{
    "username": "user",
    "password": "pass"
  }'

Response JWT token :

{"access_token":"eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxIiwiaXNzIjpbXSwiYXVkIjoiYXBhY2hlLWFpcmZsb3ciLCJuYmYiOjE3NTYxMTM3MDMsImV4cCI6MTc1NjIwMDEwMywiaWF0IjoxNzU2MTEzNzAzfQ.SBi_s0yYrHFiEyiwzU6a78nmwYTe91FDnU1mC5aoLqnHQ2JGMBqv0njOrxXDTi9YpSQ_iesvTfbjsmqqYSC54w"}

Request API using above generated token :

 curl -X GET 'http://localhost:8080/api/v2/dags' \
  -H "Authorization: Bearer eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxIiwiaXNzIjpbXSwiYXVkIjoiYXBhY2hlLWFpcmZsb3ciLCJuYmYiOjE3NTYxMTM3MDMsImV4cCI6MTc1NjIwMDEwMywiaWF0IjoxNzU2MTEzNzAzfQ.SBi_s0yYrHFiEyiwzU6a78nmwYTe91FDnU1mC5aoLqnHQ2JGMBqv0njOrxXDTi9YpSQ_iesvTfbjsmqqYSC54w"

API Response : {"dags":[],"total_entries":0}

Thanks.

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

79745545

Date: 2025-08-25 09:22:39
Score: 4.5
Natty: 4
Report link

I've encountered the same problem.
I find my problem related to the Build Variant.
when I switch build variant to debug, compose preview works fine. but when I switch it to the custom build type I defined in Build.gradle, compose preview stops work.

Is there any way to let compose preview work in custom build types?

Reasons:
  • Blacklisted phrase (1): Is there any
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: chenrenxiang

79745535

Date: 2025-08-25 09:14:37
Score: 3
Natty:
Report link

Got the same error - even using your last example.

My command is :

New-Object System.DirectoryServices.ActiveDirectoryAccessRule $AdminSID, "GenericWrite", "Allow"

New-Object : Cannot find an overload for "ActiveDirectoryAccessRule" and the argument count: "3".

Or using the method syntax :

[System.DirectoryServices.ActiveDirectoryAccessRule]::new(
    $AdminSID,
    [System.DirectoryServices.ActiveDirectoryRights]::GenericWrite,
    [System.Security.AccessControl.AccessControlType]::Allow)

Cannot find an overload for "new" and the argument count: "3".
Any suggestion ?
Thanks :-)
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2): Any suggestion
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Luuke

79745525

Date: 2025-08-25 09:06:35
Score: 1
Natty:
Report link

Run npm i dotenv.

import { env } from 'process'
import 'dotenv/config'

const { NODE_ENV } = env
console.log(NODE_ENV)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Shub

79745520

Date: 2025-08-25 08:57:33
Score: 0.5
Natty:
Report link

This one will catch from and included START until and included END:

(?m)START[^$]{0,80}END

The option (?M) is for using ^ and $ for start and end of lines instead of start and end of string.

This one will catch from and not included START until and not included END:

(?m)(?<=START)[^$]{0,80}(?=END)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Wace

79745517

Date: 2025-08-25 08:55:32
Score: 2
Natty:
Report link

A little update. Since 1.7.1 upload_records is deprecated, and upload_points should be used instead.

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

79745509

Date: 2025-08-25 08:48:31
Score: 1.5
Natty:
Report link

The MS documentation doesn't easily show the collation of local character-type variables, only poorly explains that changing the collation has only limited support in some platforms. This extensive writeup may be of use to those who find this question:

https://www.sommarskog.se/collations.html

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

79745508

Date: 2025-08-25 08:47:31
Score: 1
Natty:
Report link
// app/Exceptions/Handler.php

use Illuminate\Auth\AuthenticationException;

protected function unauthenticated($request, AuthenticationException $exception)
{
    return response()->json(['message' => 'Unauthenticated.'], 401);
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kundan Kapgate

79745505

Date: 2025-08-25 08:44:30
Score: 2.5
Natty:
Report link

from PIL import Image

# Ø§ŲØŠØ­ Ø§Ų„ØĩŲˆØąØĐ PNG

png_path = "/mnt/data/Ų…ØĩØ§Ų†Øđ_Ø§Ų„ØđØ§Ų…ØąŲŠØĐ_؈ØĻØąØŽ_Ø§Ų„ØđØąØĻ.png"

jpg_path = "/mnt/data/Ų…ØĩØ§Ų†Øđ_Ø§Ų„ØđØ§Ų…ØąŲŠØĐ_؈ØĻØąØŽ_Ø§Ų„ØđØąØĻ.jpg"

# ØŠØ­ŲˆŲŠŲ„ PNG ØĨŲ„Ų‰ JPG

img = Image.open(png_path).convert("RGB")

img.save(jpg_path, "JPEG")

jpg_path

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: Ahmed Zaki

79745504

Date: 2025-08-25 08:43:30
Score: 1.5
Natty:
Report link

try not to import it from src. Instead, use something like:
../core/transformers/Decimal.transformer

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

79745495

Date: 2025-08-25 08:33:27
Score: 3
Natty:
Report link

The conversion to a list from double is caused by duplicates/ multiple items for the same id-pair.

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

79745494

Date: 2025-08-25 08:31:26
Score: 1.5
Natty:
Report link

There was exactly the same problem, but it was solved as follows

//presignedRequest.Parameters.Add("uploadId", uploadId);  
//presignedRequest.Parameters.Add("partNumber", partNumber.ToString());  
presignedRequest.UploadId = uploadId;  
presignedRequest.PartNumber = partNumber;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Adelie

79745483

Date: 2025-08-25 08:15:23
Score: 1
Natty:
Report link

I found out the way is: to create a separate action which registers itself in the IDE menu with the associated accelerator

@ActionID(
        category = "Window",
        id = "ste.netbeans.nblogmanager.logviewer.LogViewerShortcutAction"
)
@ActionRegistration(
        displayName = "#CTL_LogViewerShortcutAction",
        key = "DS-L" // Ctrl+Shift+L
)
@ActionReference(path = "Menu/Window", position = 333)
@Messages({
    "CTL_LogViewerShortcutAction=Show Log Viewer"
})
public final class LogViewerShortcutAction extends AbstractAction {
    public LogViewerShortcutAction() {
        putValue(NAME, Bundle.CTL_LogViewerShortcutAction());
    }
    @Override
    public void actionPerformed(ActionEvent e) {
        TopComponent tc = WindowManager.getDefault().findTopComponent("LogViewerTopComponent");
        if (tc == null) {
            tc = new LogViewerTopComponent();
        }
        tc.open();
        tc.requestActive();
    }
}
Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ste

79745474

Date: 2025-08-25 08:06:21
Score: 2
Natty:
Report link

Apparently, according to AWS support it was the AWS engineers updating the Bedrock models that caused the issue.

Right now it is possible to deploy via the descriptive bot builder in us-east-1 only. Then it is possible to export and import in another region.

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

79745473

Date: 2025-08-25 08:05:21
Score: 0.5
Natty:
Report link

To read elements on a new window/tab using selenium you need to get the webdriver to switch to that new window/tab
To simply switch to the most recently opened tab you can do:

driver.switch_to.window(driver.window_handles[-1])

However you may want to do something more robust; The docs have a good section on Working with windows and tabs

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

79745464

Date: 2025-08-25 07:57:19
Score: 1
Natty:
Report link

Working version: I am using Groq API keys and mock API specs.

import asyncio
import json
import logging
import os

from dotenv import load_dotenv
from llama_index.core.agent import ReActAgent
from llama_index.core.memory import ChatMemoryBuffer
from llama_index.core.tools import FunctionTool
from llama_index.llms.groq import Groq

load_dotenv()

logging.basicConfig(level=logging.INFO)
logger = logging.getLogger('multi-tool-reproduction')

# Mock data to simulate the OpenAPI + Requests workflow
MOCK_API_SPECS = {
    "companies": {
        "endpoint": "/v1/companies/list",
        "method": "POST",
        "base_url": "https://api.my-company.com",
        "description": "List all companies for authenticated user"
    },
    "users": {
        "endpoint": "/v1/users/profile",
        "method": "GET",
        "base_url": "https://api.my-company.com",
        "description": "Get user profile information"
    }
}

MOCK_API_RESPONSES = {
    "https://api.my-company.com/v1/companies/list": {
        "success": True,
        "companies": [
            {"id": 1, "name": "Acme Corp", "status": "active"},
            {"id": 2, "name": "Tech Solutions Inc", "status": "active"},
            {"id": 3, "name": "Global Enterprises", "status": "inactive"}
        ]
    },
    "https://api.example.com/companies": {
        "success": False,
        "error": "Invalid domain - this is the wrong endpoint!"
    }
}


def mock_load_openapi_spec(query: str) -> str:
    """
    Mock version of OpenAPIToolSpec functionality
    This simulates finding API endpoints based on user queries
    """
    logger.info(f"🔍 OPENAPI TOOL CALLED with query: '{query}'")

    query_lower = query.lower()

    # Simple matching logic
    if "companies" in query_lower or "list" in query_lower:
        spec = MOCK_API_SPECS["companies"]
        result = {
            "found": True,
            "endpoint": spec["endpoint"],
            "method": spec["method"],
            "full_url": f"{spec['base_url']}{spec['endpoint']}",
            "description": spec["description"],
            "base_url": spec["base_url"]
        }
        logger.info(f"📋 OPENAPI FOUND: {spec['base_url']}{spec['endpoint']}")
    elif "users" in query_lower or "profile" in query_lower:
        spec = MOCK_API_SPECS["users"]
        result = {
            "found": True,
            "endpoint": spec["endpoint"],
            "method": spec["method"],
            "full_url": f"{spec['base_url']}{spec['endpoint']}",
            "description": spec["description"],
            "base_url": spec["base_url"]
        }
        logger.info(f"📋 OPENAPI FOUND: {spec['base_url']}{spec['endpoint']}")
    else:
        result = {
            "found": False,
            "error": f"No API endpoint found for query: {query}",
            "suggestion": "Try queries like 'list companies' or 'get user profile'"
        }
        logger.info("📋 OPENAPI: No matching endpoint found")

    return json.dumps(result, indent=2)


def mock_post_request(url: str, body: str = "{}", headers: str = "{}") -> str:
    """
    Mock version of RequestsToolSpec post_request functionality
    This simulates making HTTP POST requests
    """
    logger.info(f"🌐 HTTP POST TOOL CALLED with URL: '{url}'")

    try:
        request_body = json.loads(body) if body else {}
        request_headers = json.loads(headers) if headers else {}

        # Mock response based on URL
        if url in MOCK_API_RESPONSES:
            response_data = MOCK_API_RESPONSES[url]
            logger.info(f"ðŸ“Ą HTTP SUCCESS: Found mock response for {url}")
        else:
            # This simulates the BUG - when wrong URL is used
            response_data = {
                "success": False,
                "error": f"No mock response for URL: {url}",
                "message": "This represents the bug - agent used wrong URL!",
                "expected_urls": list(MOCK_API_RESPONSES.keys())
            }
            logger.warning(f"ðŸ“Ą HTTP FAILURE: No mock response for {url}")

        result = {
            "status_code": 200 if response_data.get("success") else 400,
            "url": url,
            "request_body": request_body,
            "request_headers": request_headers,
            "response": response_data
        }

        return json.dumps(result, indent=2)

    except Exception as e:
        logger.error(f"❌ HTTP tool error: {e}")
        return json.dumps({
            "success": False,
            "error": str(e),
            "url": url
        })





def mock_get_request(url: str, headers: str = "{}") -> str:
    """
    Mock version of RequestsToolSpec get_request functionality
    """
    logger.info(f"🌐 HTTP GET TOOL CALLED with URL: '{url}'")

    try:
        request_headers = json.loads(headers) if headers else {}

        if url in MOCK_API_RESPONSES:
            response_data = MOCK_API_RESPONSES[url]
            logger.info(f"ðŸ“Ą HTTP SUCCESS: Found mock response for {url}")
        else:
            response_data = {
                "success": False,
                "error": f"No mock response for URL: {url}",
                "message": "This represents the bug - agent used wrong URL!"
            }
            logger.warning(f"ðŸ“Ą HTTP FAILURE: No mock response for {url}")

        result = {
            "status_code": 200 if response_data.get("success") else 400,
            "url": url,
            "request_headers": request_headers,
            "response": response_data
        }

        return json.dumps(result, indent=2)

    except Exception as e:
        logger.error(f"❌ HTTP GET tool error: {e}")
        return json.dumps({
            "success": False,
            "error": str(e),
            "url": url
        })


async def test_multi_tool_agent():
    """Test agent with both tools - THE MAIN ISSUE"""
    print("\n" + "=" * 80)
    print("🧊 TEST 3: MULTI-TOOL AGENT (THE BUG)")
    print("=" * 80)

    try:

        # Create both tools
        openapi_tool = FunctionTool.from_defaults(
            fn=mock_load_openapi_spec,
            name="load_openapi_spec",
            description="Find API endpoints and specifications based on user query. Returns JSON with endpoint details including the full URL to use."
        )

        http_tool = FunctionTool.from_defaults(
            fn=mock_post_request,
            name="post_request",
            description="Make HTTP POST requests to API endpoints. Requires the full URL including domain name."
        )

        # System prompt similar to Stack Overflow issue
        system_prompt = """
You are an API assistant with two tools: load_openapi_spec and post_request.

IMPORTANT WORKFLOW:
- FIRST: Use load_openapi_spec to find the correct API endpoint for the user's request
- SECOND: Use post_request with the EXACT full URL from the first tool's response

Always follow this two-step process. Never guess URLs or use default endpoints.
"""

        memory = ChatMemoryBuffer.from_defaults()
        llm = Groq(model="llama3-70b-8192", api_key=os.getenv("GROQ_API_KEY"))
        agent = ReActAgent.from_tools(
            tools=[openapi_tool, http_tool],
            llm=llm,
            memory=memory,
            verbose=True,
            system_prompt=system_prompt
        )

        print("\n🚀 Running test...")
        response = await agent.achat("List my companies")
        print(f"\n📋 Final response: {response}")

    except Exception as e:
        print(f"❌ Multi-tool agent error: {e}")
        logger.exception("Multi-tool agent detailed error:")


async def main():
    """Run all tests to reproduce the multi-tool chaining issue"""

    print("LlamaIndex Multi-Tool Chaining")
    print("=" * 60)

    # Test multi-tool agent (the main issue)
    await test_multi_tool_agent()

    print("\n" + "=" * 80)


if __name__ == "__main__":
    asyncio.run(main())

Answer:

🚀 Running test...
> Running step 1a1b21a8-5b87-4379-94b2-941769dfeedc. Step input: List my companies
INFO:httpx:HTTP Request: POST https://api.groq.com/openai/v1/chat/completions "HTTP/1.1 200 OK"
Thought: The current language of the user is: English. I need to use a tool to help me answer the question.
Action: load_openapi_spec                                                                                                                                                                                                           
Action Input: {'query': 'list companies'}                                                                                                                                                                                           
INFO:multi-tool-reproduction:🔍 OPENAPI TOOL CALLED with query: 'list companies'                                                                                                                                                    
INFO:multi-tool-reproduction:📋 OPENAPI FOUND: https://api.my-company.com/v1/companies/list
Observation: {
  "found": true,                                                                                                                                                                                                                    
  "endpoint": "/v1/companies/list",                                                                                                                                                                                                 
  "method": "POST",                                                                                                                                                                                                                 
  "full_url": "https://api.my-company.com/v1/companies/list",                                                                                                                                                                       
  "description": "List all companies for authenticated user",                                                                                                                                                                       
  "base_url": "https://api.my-company.com"                                                                                                                                                                                          
}                                                                                                                                                                                                                                   
> Running step 853cc07c-b6f7-4d1b-9ae6-21006cc7b731. Step input: None                                                                                                                                                               
INFO:httpx:HTTP Request: POST https://api.groq.com/openai/v1/chat/completions "HTTP/1.1 200 OK"
Thought: I have the API endpoint to list companies. Now I need to make a POST request to this endpoint.
Action: post_request                                                                                                                                                                                                                
Action Input: {'url': 'https://api.my-company.com/v1/companies/list', 'body': '{}', 'headers': '{}'}                                                                                                                                
INFO:multi-tool-reproduction:🌐 HTTP POST TOOL CALLED with URL: 'https://api.my-company.com/v1/companies/list'                                                                                                                      
INFO:multi-tool-reproduction:ðŸ“Ą HTTP SUCCESS: Found mock response for https://api.my-company.com/v1/companies/list
Observation: {
  "status_code": 200,                                                                                                                                                                                                               
  "url": "https://api.my-company.com/v1/companies/list",                                                                                                                                                                            
  "request_body": {},                                                                                                                                                                                                               
  "request_headers": {},                                                                                                                                                                                                            
  "response": {                                                                                                                                                                                                                     
    "success": true,                                                                                                                                                                                                                
    "companies": [                                                                                                                                                                                                                  
      {                                                                                                                                                                                                                             
        "id": 1,                                                                                                                                                                                                                    
        "name": "Acme Corp",                                                                                                                                                                                                        
        "status": "active"                                                                                                                                                                                                          
      },                                                                                                                                                                                                                            
      {                                                                                                                                                                                                                             
        "id": 2,                                                                                                                                                                                                                    
        "name": "Tech Solutions Inc",                                                                                                                                                                                               
        "status": "active"                                                                                                                                                                                                          
      },                                                                                                                                                                                                                            
      {                                                                                                                                                                                                                             
        "id": 3,                                                                                                                                                                                                                    
        "name": "Global Enterprises",                                                                                                                                                                                               
        "status": "inactive"                                                                                                                                                                                                        
      }                                                                                                                                                                                                                             
    ]                                                                                                                                                                                                                               
  }                                                                                                                                                                                                                                 
}                                                                                                                                                                                                                                   
> Running step 35b8297b-e908-47f9-9356-08de6505cad7. Step input: None                                                                                                                                                               
INFO:httpx:HTTP Request: POST https://api.groq.com/openai/v1/chat/completions "HTTP/1.1 200 OK"
Thought: I have the list of companies. I can answer the user's question now.
Answer: Here is the list of your companies: Acme Corp, Tech Solutions Inc, Global Enterprises                                                                                                                                       
                                                                                                                                                                                                                                    
📋 Final response: Here is the list of your companies: Acme Corp, Tech Solutions Inc, Global Enterprises
Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ashish

79745459

Date: 2025-08-25 07:51:17
Score: 1
Natty:
Report link

You should first understand how ip address allocated?

Also you need to understand how dhcp and nat work?

When you start r&d on this protocol , you figure our concept called private network .

In this private network , device have dummy ip address ( whatever is ) but have unique in that private network.

Whenever you device send or receiver response it used router ip address because it unique in internet.

Router maintain table and record following things :-

  1. Sender ip address

  2. Sender port address

  3. receiver ip address

  4. receiver port address.

Now router modify only above two field of router by own data.

When data come from receiver side and it again check which device for this data come. It check table and match forward response that device and that service.

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

79745457

Date: 2025-08-25 07:48:16
Score: 2
Natty:
Report link

Not sure which version you are on, but the contentConnector is a Magnolia 5 configuration that is usable in Magnolia 6 but deprecated.

I do not see any “class” or “appClass” defined at the root of the app, which could be the reason for the NPE https://docs.magnolia-cms.com/product-docs/6.2/apps/app-configuration/app-descriptor/

I hope this helps.

Best regards,

Roman

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Whitelisted phrase (-1): hope this helps
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Roman Kovařík

79745454

Date: 2025-08-25 07:48:16
Score: 0.5
Natty:
Report link

The simpliest way, i believe is to do something like this:

from itertools import takewhile

def find_lcp(s: List[str]) -> str:
    t = len(list(takewhile(lambda x: len(x)==1, map(set,zip(*s)))))
    return s[0][:t]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: strawdog

79745451

Date: 2025-08-25 07:38:14
Score: 2.5
Natty:
Report link

The RTSP server developed by these guys supports local media files. You can directly use rtsp://ip:port/filename, such as rtsp://ip:port/test.mp4

https://www.happytimesoft.com/products/rtsp-server/index.html

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

79745442

Date: 2025-08-25 07:27:12
Score: 1
Natty:
Report link
  1. Model: Handles the data and business logic of the application. It manages CRUD operations, enforces business rules, and interacts with the database. For example, in a bookstore app, the Model would manage data like book titles, authors, and stock levels.

  2. View: Manages the user interface and presentation. It displays data to users and updates the UI when the Model changes. For instance, the View in a bookstore app would show the list of books and provide input fields for searching or filtering.

  3. Controller: Acts as the intermediary between the Model and View. It processes user input, updates the Model, and selects the appropriate View to display. For example, when a user searches for a book, the Controller handles the request, retrieves data from the Model, and updates the View.

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

79745434

Date: 2025-08-25 07:16:09
Score: 2
Natty:
Report link

Right now in your AppModule you are configuring the router twice.

This double registration leads to odd behaviour. Pick one style of router configuration, not both.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Shashank S V N

79745422

Date: 2025-08-25 06:51:03
Score: 1.5
Natty:
Report link

Make sure your database in phpMyAdmin is empty (no tables, views, routines, or triggers).

If it’s empty and you still get the error, then it’s a filesystem issue.

If you are using XAMPP:

  1. Stop the MySQL server from the XAMPP control panel.

  2. Go to: C:\xampp\mysql\data\

  3. Find the folder with your database name.

  4. Delete that folder manually.

  5. Start MySQL again.

    Your database will now be removed.

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

79745411

Date: 2025-08-25 06:39:00
Score: 0.5
Natty:
Report link

Since moving the section outside of the container is not an option. Then you can approach this in two ways if you still want to keep the section inside of the parent container.

  1. Override padding with negative margins. This will overlap the parent padding.

    .usp-section {
      background-color: #c2b280;
      padding: 1rem 0;
      margin-left: -6rem;
      margin-right: -6rem;
    }
    

    And here's the output, you'd need to adjust the padding or inner width of the section to align with others.

    negative margins approach

  2. Use width: 100vw

    .usp-section {
      background-color: #c2b280;
      padding: 1rem 0;
      width: 100vw;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
    }
    

    This will force it to span the viewport width regardless of container padding.

    100vw width approach

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

79745398

Date: 2025-08-25 06:24:57
Score: 3
Natty:
Report link

Have you turned Developer Tools on? If not, go to Settings > About Phone, and tap the build number seven times. That may fix your problem. EDIT: Also, try posting this question on the Android Enthusiasts Stack Exchange.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: robotsnh

79745396

Date: 2025-08-25 06:21:56
Score: 4.5
Natty:
Report link

i have same problem, just remove double quotes " to fix this. Like:

json = json.Replace(@"""", "");

Reasons:
  • Blacklisted phrase (1): i have same problem
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): i have same problem
  • Low reputation (0.5):
Posted by: abdol-hamid Hosseiny

79745394

Date: 2025-08-25 06:13:54
Score: 0.5
Natty:
Report link

Currently, you are applying styles to the class .my-wrench, which is the parent of mat-icon. To style the icon itself, you need to target the mat-icon element. Here is an example of how to apply styles to the icon.

.my-wrench mat-icon {
    color: blue;
  }

It should produce the desired style you want.

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

79745392

Date: 2025-08-25 06:01:52
Score: 2
Natty:
Report link

from reportlab.lib.pagesizes import A4

from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer

from reportlab.lib.styles import getSampleStyleSheet

# āļŠāļĢāđ‰āļēāļ‡āđ„āļŸāļĨāđŒ PDF

doc = SimpleDocTemplate("/mnt/data/psychology_summary.pdf", pagesize=A4)

styles = getSampleStyleSheet()

story = []

# āļŦāļąāļ§āđ€āļĢāļ·āđˆāļ­āļ‡

title = Paragraph("āļŠāļĢāļļāļ›āļ•āļģāļĢāļēāļˆāļīāļ•āļ§āļīāļ—āļĒāļē (Psychology)", styles['Title'])

story.append(title)

story.append(Spacer(1, 20))

# āđ€āļ™āļ·āđ‰āļ­āļŦāļē

content = """

1. āļ„āļ§āļēāļĄāļŦāļĄāļēāļĒāđāļĨāļ°āđ€āļ›āđ‰āļēāļŦāļĄāļēāļĒāļ‚āļ­āļ‡āļˆāļīāļ•āļ§āļīāļ—āļĒāļē

- āļĻāļķāļāļĐāļēāļžāļĪāļ•āļīāļāļĢāļĢāļĄ āļ„āļ§āļēāļĄāļ„āļīāļ” āđāļĨāļ°āļāļĢāļ°āļšāļ§āļ™āļāļēāļĢāļ—āļēāļ‡āļˆāļīāļ•āđƒāļˆāļ‚āļ­āļ‡āļĄāļ™āļļāļĐāļĒāđŒāđāļĨāļ°āļŠāļąāļ•āļ§āđŒ

- āđ€āļ›āđ‰āļēāļŦāļĄāļēāļĒāļŦāļĨāļąāļ: āļšāļĢāļĢāļĒāļēāļĒ, āļ­āļ˜āļīāļšāļēāļĒ, āļ—āļģāļ™āļēāļĒ, āļ„āļ§āļšāļ„āļļāļĄāļžāļĪāļ•āļīāļāļĢāļĢāļĄ

2. āļŠāļģāļ™āļąāļāļ„āļīāļ”āļ”āļąāđ‰āļ‡āđ€āļ”āļīāļĄ

- āđ‚āļ„āļĢāļ‡āļŠāļĢāđ‰āļēāļ‡āļ™āļīāļĒāļĄ (Structuralism – Wundt)

- āļŦāļ™āđ‰āļēāļ—āļĩāđˆāļ™āļīāļĒāļĄ (Functionalism – James)

- āļžāļĪāļ•āļīāļāļĢāļĢāļĄāļ™āļīāļĒāļĄ (Behaviorism – Watson, Skinner)

- āļˆāļīāļ•āļ§āļīāđ€āļ„āļĢāļēāļ°āļŦāđŒ (Psychoanalysis – Freud)

- āļĄāļ™āļļāļĐāļĒāļ™āļīāļĒāļĄ (Humanistic – Rogers, Maslow)

- āļžāļļāļ—āļ˜āļīāļ›āļąāļāļāļēāļ™āļīāļĒāļĄ (Cognitive)

3. āļŠāļēāļ‚āļēāļ‚āļ­āļ‡āļˆāļīāļ•āļ§āļīāļ—āļĒāļē

- āļˆāļīāļ•āļ§āļīāļ—āļĒāļēāļ„āļĨāļīāļ™āļīāļ: āļĢāļąāļāļĐāļēāđāļĨāļ°āļšāļģāļšāļąāļ”āļœāļđāđ‰āļĄāļĩāļ›āļąāļāļŦāļēāļŠāļļāļ‚āļ āļēāļžāļˆāļīāļ•

- āļˆāļīāļ•āļ§āļīāļ—āļĒāļēāļāļēāļĢāđƒāļŦāđ‰āļ„āļģāļ›āļĢāļķāļāļĐāļē: āļŠāđˆāļ§āļĒāļœāļđāđ‰āđ€āļœāļŠāļīāļāļ›āļąāļāļŦāļēāļŠāļĩāļ§āļīāļ•

- āļˆāļīāļ•āļ§āļīāļ—āļĒāļēāļžāļąāļ’āļ™āļēāļāļēāļĢ: āļĻāļķāļāļĐāļēāļāļēāļĢāđ€āļ›āļĨāļĩāđˆāļĒāļ™āđāļ›āļĨāļ‡āļ•āļĨāļ­āļ”āļŠāđˆāļ§āļ‡āļŠāļĩāļ§āļīāļ• (āļ—āļĪāļĐāļŽāļĩ Piaget, Erikson)

- āļˆāļīāļ•āļ§āļīāļ—āļĒāļēāļāļēāļĢāļĻāļķāļāļĐāļē: āļāļēāļĢāđ€āļĢāļĩāļĒāļ™āļĢāļđāđ‰ āđāļĢāļ‡āļˆāļđāļ‡āđƒāļˆ āļāļēāļĢāļŠāļ­āļ™

- āļˆāļīāļ•āļ§āļīāļ—āļĒāļēāļŠāļąāļ‡āļ„āļĄ: āļ­āļīāļ—āļ˜āļīāļžāļĨāļ‚āļ­āļ‡āļŠāļąāļ‡āļ„āļĄāļ•āđˆāļ­āļžāļĪāļ•āļīāļāļĢāļĢāļĄ

- āļˆāļīāļ•āļ§āļīāļ—āļĒāļēāļ­āļļāļ•āļŠāļēāļŦāļāļĢāļĢāļĄāđāļĨāļ°āļ­āļ‡āļ„āđŒāļāļĢ (I/O): āļžāļĪāļ•āļīāļāļĢāļĢāļĄāđƒāļ™āļ—āļĩāđˆāļ—āļģāļ‡āļēāļ™

- āļˆāļīāļ•āļ§āļīāļ—āļĒāļēāļāļēāļĢāļ—āļ”āļĨāļ­āļ‡: āļ„āļ§āļēāļĄāļˆāļģ āļāļēāļĢāđ€āļĢāļĩāļĒāļ™āļĢāļđāđ‰ āļāļēāļĢāļĢāļąāļšāļĢāļđāđ‰

- āļˆāļīāļ•āļ§āļīāļ—āļĒāļēāļ›āļĢāļ°āļŠāļēāļ—āđāļĨāļ°āļŠāļĩāļ§āļ āļēāļž: āļŠāļĄāļ­āļ‡ āļĢāļ°āļšāļšāļ›āļĢāļ°āļŠāļēāļ—āļāļąāļšāļžāļĪāļ•āļīāļāļĢāļĢāļĄ

- āļˆāļīāļ•āļ§āļīāļ—āļĒāļēāļšāļļāļ„āļĨāļīāļāļ āļēāļž: āļ„āļ§āļēāļĄāđāļ•āļāļ•āđˆāļēāļ‡āļĢāļ°āļŦāļ§āđˆāļēāļ‡āļšāļļāļ„āļ„āļĨ (Big Five, MBTI)

- āļˆāļīāļ•āļ§āļīāļ—āļĒāļēāļŠāļļāļ‚āļ āļēāļž: āļˆāļīāļ•āđƒāļˆāļāļąāļšāļŠāļļāļ‚āļ āļēāļžāļāļēāļĒ

- āļˆāļīāļ•āļ§āļīāļ—āļĒāļēāļ™āļīāļ•āļīāļ§āļīāļ—āļĒāļēāļĻāļēāļŠāļ•āļĢāđŒ: āļ›āļĢāļ°āļĒāļļāļāļ•āđŒāļāļąāļšāļāļŽāļŦāļĄāļēāļĒāđāļĨāļ°āļ­āļēāļŠāļāļēāļāļĢāļĢāļĄ

- āļˆāļīāļ•āļ§āļīāļ—āļĒāļēāļāļēāļĢāļāļĩāļŽāļē: āđāļĢāļ‡āļˆāļđāļ‡āđƒāļˆ āļŠāļĄāļēāļ˜āļīāļ‚āļ­āļ‡āļ™āļąāļāļāļĩāļŽāļē

4. āļ§āļīāļ˜āļĩāļ§āļīāļˆāļąāļĒāļ—āļēāļ‡āļˆāļīāļ•āļ§āļīāļ—āļĒāļē

- āļāļēāļĢāļŠāļąāļ‡āđ€āļāļ•, āļāļēāļĢāļŠāļģāļĢāļ§āļˆ, āļāļēāļĢāļĻāļķāļāļĐāļēāđ€āļŠāļīāļ‡āļāļĢāļ“āļĩ, āļāļēāļĢāļ—āļ”āļĨāļ­āļ‡, āļāļēāļĢāļ§āļīāļˆāļąāļĒāļŠāļąāļĄāļžāļąāļ™āļ˜āđŒ

5. āļāļēāļĢāļ™āļģāđ„āļ›āđƒāļŠāđ‰āļˆāļĢāļīāļ‡

- āļāļēāļĢāļĻāļķāļāļĐāļē, āļŠāļļāļ‚āļ āļēāļž, āļ­āļ‡āļ„āđŒāļāļĢ, āļāļŽāļŦāļĄāļēāļĒ, āļŠāļĩāļ§āļīāļ•āļ›āļĢāļ°āļˆāļģāļ§āļąāļ™

āļŠāļĢāļļāļ›: āļˆāļīāļ•āļ§āļīāļ—āļĒāļēāļ„āļ·āļ­āļĻāļēāļŠāļ•āļĢāđŒāļ—āļĩāđˆāļ­āļ˜āļīāļšāļēāļĒāļĄāļ™āļļāļĐāļĒāđŒāļ—āļąāđ‰āļ‡āļŠāļĄāļ­āļ‡ āļ„āļ§āļēāļĄāļ„āļīāļ” āļ­āļēāļĢāļĄāļ“āđŒ āđāļĨāļ°āļŠāļąāļ‡āļ„āļĄ āđ€āļžāļ·āđˆāļ­āđ€āļ‚āđ‰āļēāđƒāļˆāļ•āļ™āđ€āļ­āļ‡āđāļĨāļ°āļœāļđāđ‰āļ­āļ·āđˆāļ™ āđāļĨāļ°āļŠāļĢāđ‰āļēāļ‡āļāļēāļĢāđ€āļ›āļĨāļĩāđˆāļĒāļ™āđāļ›āļĨāļ‡āđ€āļŠāļīāļ‡āļšāļ§āļāđƒāļ™āļŠāļĩāļ§āļīāļ•

"""

paragraph = Paragraph(content.replace("\n", "<br/>"), styles['Normal'])

story.append(paragraph)

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: B B

79745391

Date: 2025-08-25 05:59:51
Score: 1.5
Natty:
Report link

Playwright doesn’t have a direct equivalent to Cypress plugins like cypress-vite, but you can achieve the same effect by configuring module path aliases in Node (or Vite) and then telling Playwright (via its config or tsconfig.json/jsconfig.json)

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

79745387

Date: 2025-08-25 05:54:50
Score: 5.5
Natty: 5
Report link

Is the issue here not the typo Bithday <> Birthday?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is the is
  • Low reputation (0.5):
Posted by: Kenzo De Ridder

79745385

Date: 2025-08-25 05:51:49
Score: 1.5
Natty:
Report link

Apa Itu Unikbet?

Unikbet adalah sebuah platform game online yang menawarkan berbagai jenis permainan, termasuk poker, slot, dan casino. Situs ini dikenal karena menyediakan layanan deposit melalui bank lokal seperti Bank DIY, Bank Jatim, dan JakOne, sehingga memudahkan para pemain di Indonesia untuk melakukan transaksi. Unikbet juga menawarkan berbagai bonus dan promosi yang menggiurkan, menjadikannya pilihan populer di kalangan penggemar game online.

Kunjungi Situs Resmi: Akses link resmi Unikbet melalui unik.bet atau pencarian Google.

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

79745373

Date: 2025-08-25 05:31:44
Score: 1
Natty:
Report link

While the answer by Hans Olsson is still technically correct, the Modelica Specification is about to change in that regard, and in fact all major tools seem to support the upcoming specification already, at least if the appropriate options have been set.

Here is the related ticket
https://github.com/modelica/ModelicaSpecification/issues/3489

And
here the upcoming specification
https://specification.modelica.org/master/MLS.pdf (Section 4.4.5 now reads:

"If the Boolean expression is false, the component (including its modifier) is removed from the flattened DAE, and connections to/from the component are removed. Such a component can only be modified, used in connections, and/or used in a modifier of another conditional component with a false condition. There are no restrictions on the component if the Boolean expression is true.")

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

79745368

Date: 2025-08-25 05:22:42
Score: 1
Natty:
Report link

Your .container has some padding. Now that padding will get applied to all the children of .container. Your usp section is a child of it, so it is not possible to make it take full width of screen, unless you remove the parent (.container) padding, or take the usp section out of the .container entirely. The previous answer does just that in fact.

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

79745365

Date: 2025-08-25 05:15:41
Score: 0.5
Natty:
Report link
const res = await fetch("https://example.com/file.mp3", {
  headers: {},
  method: "GET",
});

const arrayBuffer = await res.arrayBuffer();

fs.writeFileSync("filename.mp3", Buffer.from(arrayBuffer));

tested with node.js v24.6.0

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

79745353

Date: 2025-08-25 04:51:36
Score: 0.5
Natty:
Report link

As of 2025 gdb 16 and above is now available for apple silicon so you can use the command:

brew install gdb
Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: albert doh

79745346

Date: 2025-08-25 04:37:34
Score: 1.5
Natty:
Report link

In my case this happened because I use

app.py imports utils.py
utils.py import app.py 

this is stuck in loop so I used

from flask import current_app

so my problem solved.

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

79745327

Date: 2025-08-25 03:37:23
Score: 4.5
Natty:
Report link

In Cursor IDE, you can collapse code regions using the shortcut Command + R. This allows you to manage your code more efficiently without using Command + K. If anyone has further tips or additional shortcuts related to this functionality, please share!

Reasons:
  • RegEx Blacklisted phrase (2.5): please share
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ezzalarab Al-Homaidi

79745287

Date: 2025-08-25 02:05:04
Score: 0.5
Natty:
Report link

This is a Locale independent solution. Note: If today is Monday (or Sunday) will return the current day.

LocalDate today = LocalDate.now();
LocalDate lastMonday = today.minusDays(today.getDayOfWeek().getValue() - 1);
LocalDate lastSunday = today.minusDays(today.getDayOfWeek().getValue() % 7);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Herman Sidharta

79745277

Date: 2025-08-25 01:49:00
Score: 0.5
Natty:
Report link

When you do dict[1] = new Value(...) you’re replacing the object, so any variable that referenced the old object won’t see the update.

If you want both to always stay in sync even when you replace the value, you can wrap the object in a reference container:

class Ref<T>
{
    public T Value { get; set; }
}

class Value
{
    public int Hello { get; set; }
    public string Bye { get; set; }
}

class Program
{
    static void Main()
    {
        var dict = new Dictionary<int, Ref<Value>>();

        var v = new Ref<Value> { Value = new Value { Hello = 1, Bye = "QWERTY" } };
        dict.Add(1, v);

        Ref<Value> c = dict[1];
        Console.WriteLine(c.Value.Bye); // QWERTY

        // Replace the inner value, reference stays the same
        dict[1].Value = new Value { Hello = 2, Bye = "ASDF" };
        Console.WriteLine(c.Value.Bye); // ASDF
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Joker

79745276

Date: 2025-08-25 01:49:00
Score: 3
Natty:
Report link

I faced exactly same issue but then i moved the @ApiBearerAuth() annotation to function level in a controller instead of top level. It worked.

Reasons:
  • Whitelisted phrase (-1): It worked
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @ApiBearerAuth
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nikhil Ram

79745270

Date: 2025-08-25 01:37:57
Score: 1
Natty:
Report link

Change your export method

foo1 is the same as foo2


// foo1.ts
async function foo1() {
  return {};
}
export default { foo1 };

// bar.test.ts
import foos1 from './foo1.js';
await foos1.foo1();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ZZ oo

79745259

Date: 2025-08-25 01:15:53
Score: 3.5
Natty:
Report link

I've made my own module that also supports image loading (png and jpg)

https://github.com/JJJJJJack/go-template-docx

You can check usage examples and code in the readme

Reasons:
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jack

79745247

Date: 2025-08-25 00:26:44
Score: 3
Natty:
Report link

I made my own template library that supports iterating over tables with the golang template {{range}} syntax, as well as having many other features to ease many common templating cases.

https://github.com/JJJJJJack/go-template-docx

there is also a ready to use binary released.

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jack

79745238

Date: 2025-08-25 00:03:38
Score: 1
Natty:
Report link

This is the way i make it simple

function factorial(n) {
    res = 1
    for (var i = 1 ; i <= n ; i++) {
        res = res * i
    }
    return res
}

console.log(factorial(5)); // 120
console.log(factorial(0)); // 1
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ahmed Talbi

79745215

Date: 2025-08-24 22:51:22
Score: 0.5
Natty:
Report link

Your outline issue comes from Tailwind’s preflight CSS overriding Angular Material.

Fix it by disabling preflight in tailwind.config.js:

corePlugins: {
  preflight: false,
}

or reset borders in styles.css:

*, *::before, *::after {
  border-style: none;
}

That will fix the alignment.

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

79745212

Date: 2025-08-24 22:42:20
Score: 1.5
Natty:
Report link

Isn't this enough?

public static class ChannelReaderExtensions
{
    public static async IAsyncEnumerable<T[]> Batch<T>(this ChannelReader<T> reader, 
        int maxBatchSize, TimeSpan interval,
        [EnumeratorCancellation] CancellationToken cancellationToken = default)
    {
        var batch = new List<T>();
        var intervalTask = default(Task);

        while (!cancellationToken.IsCancellationRequested)
        {
            if (batch.Count == 0 && await reader.WaitToReadAsync(cancellationToken))
            {
                intervalTask = Task.Delay(interval, cancellationToken);
                if (reader.TryRead(out var item))
                    batch.Add(item);
            }

            var readTask = reader.WaitToReadAsync(cancellationToken).AsTask();
            var completedTask = await Task.WhenAny(readTask, intervalTask);

            if (completedTask == intervalTask)
            {
                if (batch.Count > 0)
                {
                    yield return [.. batch];
                    batch.Clear();
                }

                intervalTask = default;
                continue;
            }

            while (reader.TryRead(out var item))
            {
                batch.Add(item);

                if (batch.Count == maxBatchSize)
                {
                    yield return [.. batch];
                    batch.Clear();
                    intervalTask = default;
                    break;
                }
            }
        }

        if (batch.Count > 0)
            yield return [.. batch];

        cancellationToken.ThrowIfCancellationRequested();
    }
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Isn't this
  • Low reputation (0.5):
Posted by: kamilz

79745209

Date: 2025-08-24 22:39:19
Score: 2.5
Natty:
Report link

So this isnt the ideal solution but I changed the directory to an absolute path and it worked.

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

79745208

Date: 2025-08-24 22:39:19
Score: 10
Natty: 4.5
Report link

Did u figure it out? If so can u send it

Reasons:
  • RegEx Blacklisted phrase (2.5): can u send
  • RegEx Blacklisted phrase (3): Did u figure it out
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did
  • Low reputation (1):
Posted by: rafaelis rafaelis

79745178

Date: 2025-08-24 21:15:01
Score: 2
Natty:
Report link
public required bool IsActive { get; set; }
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Bahaa Samoudi

79745165

Date: 2025-08-24 20:39:54
Score: 1.5
Natty:
Report link

You can use deskew with easy ocr to make perfect but its take some time. I got perfect rotation every time

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jithu the menjoker

79745161

Date: 2025-08-24 20:26:51
Score: 1
Natty:
Report link

This fix worked for me in github. There is a folder being generated `mipmap-anydpi-v26`. Removing that file is sorting the issue. Loads of people are facing this issue with the flutter_launch_icons v14+. Hopefully they will solve the issue soon.

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

79745159

Date: 2025-08-24 20:24:49
Score: 6
Natty: 5
Report link

Well it could be that your model is too big I have the same problem but if you really want to fix it you should break the world in to smaller parts that way ursina does not have to render all the collider at once

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (0.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: GunarGames

79745157

Date: 2025-08-24 20:20:49
Score: 1.5
Natty:
Report link

Just use pip:

pip install pandas

and

pip install numpy

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

79745155

Date: 2025-08-24 20:20:49
Score: 2.5
Natty:
Report link

Hey,
I have created a package for sip integration in react native app, named react-native-sip-smooth. I built it using Linphone SDK.
It is so simple and easy, have written every single detail in the README.md file.
Just install and use it in your mobile app.
Thank you

https://www.npmjs.com/package/react-native-sip-smooth
https://github.com/Ammar-Abid92/react-native-sip-smooth

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

79745149

Date: 2025-08-24 20:09:47
Score: 2.5
Natty:
Report link

```

```python

import matplotlib.pyplot as plt

import numpy as np

# Datos de los intervalos y frecuencias

# Los intervalos son los límites de las clases: [30, 45), [45, 60), [60, 65), [65, 70)

limites_intervalos = [30, 45, 60, 65, 70]

frecuencias_absolutas = [1242, 15276, 24403, 21782]

# Calcular las longitudes de cada intervalo

longitudes_intervalos = [limites_intervalos[i+1] - limites_intervalos[i] for i in range(len(frecuencias_absolutas))]

# Calcular las densidades de frecuencia

# Densidad = Frecuencia Absoluta / Longitud del Intervalo

densidades_frecuencia = [frecuencias_absolutas[i] / longitudes_intervalos[i] for i in range(len(frecuencias_absolutas))]

# Crear la figura y los ejes para el grÃĄfico

plt.figure(figsize=(10, 6)) # TamaÃąo de la figura

# Dibujar las barras del histograma

# Para que las barras queden centradas en su "posiciÃģn" en el eje X,

# usamos el punto medio de cada intervalo para la posiciÃģn x.

posiciones_x = np.array(limites_intervalos[:-1]) + np.array(longitudes_intervalos) / 2

plt.bar(posiciones_x, densidades_frecuencia, width=longitudes_intervalos, color='skyblue', alpha=0.7, edgecolor='black')

# Configurar las etiquetas de los ejes y el título del grÃĄfico

plt.xlabel('Peso de los huevos (g)')

plt.ylabel('Densidad de Frecuencia')

plt.title('Histograma de la Densidad de Frecuencia del Peso de los Huevos')

# Establecer las marcas en el eje X para que coincidan con los límites de los intervalos

plt.xticks(limites_intervalos)

# AÃąadir una cuadrícula para facilitar la lectura

plt.grid(axis='y', linestyle='--', alpha=0.7)

# Asegurarse de que el diseÃąo sea ajustado

plt.tight_layout()

# Mostrar el grÃĄfico

plt.show()

```

Reasons:
  • Blacklisted phrase (2): Crear
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: VANESA RICO

79745146

Date: 2025-08-24 20:03:45
Score: 0.5
Natty:
Report link

I'll post my own answer of what works for me each time I need to change my mac
brew update
brew install nvm
mkdir ~/.nvm
echo "export NVM_DIR=~/.nvm\nsource \$(brew --prefix nvm)/nvm.sh" >> .zshrc
source ~/.zshrc

this way I don't need to re-run the source each time I close/open my IDE / terminal, a no brainer

solution from: link

Reasons:
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-1): works for me
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: user2923339

79745140

Date: 2025-08-24 19:48:41
Score: 7.5
Natty: 7
Report link

change uid address in 0xgf ???

Reasons:
  • Blacklisted phrase (1): ???
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: guest

79745136

Date: 2025-08-24 19:44:40
Score: 4
Natty:
Report link

I've gotten this fixed! My steam app ID and depot IDs were incorrect! Now it works.

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