79667616

Date: 2025-06-16 12:33:41
Score: 0.5
Natty:
Report link

I think you have to add DataSourceProperties bean error in Spring Boot 3.5.0

I add sample code below.

@EnableConfigurationProperties(DataSourceProperties.class)

this code will registers DataSourceProperties when you exclude DataSourceAutoConfiguration.

Hope your success.

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

79667609

Date: 2025-06-16 12:29:40
Score: 2.5
Natty:
Report link

For windows

Try using alt+shift+down arrow to copy lines (we have to use alt and shift present in the left side of the keyboard.)

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

79667587

Date: 2025-06-16 12:17:36
Score: 4.5
Natty: 4
Report link

Error: As a result of LOCAL INFILE command server wants to read C:\Users\Admin\Desktop\Web_pages\ocmp\rcs-backend\ocmp-backend\tmp\consent_1750075391722.csv file, but as of v2.0 you must provide streamFactory option returning ReadStream.

i am getting this error. how can i resolve this error

Reasons:
  • Blacklisted phrase (0.5): how can i
  • Blacklisted phrase (1): i am getting this error
  • RegEx Blacklisted phrase (1): i am getting this error
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Manikanta Annavarapu

79667585

Date: 2025-06-16 12:15:35
Score: 4
Natty:
Report link

Click this button to jump to the first commit:

enter image description here

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

79667582

Date: 2025-06-16 12:14:35
Score: 3.5
Natty:
Report link

If on iPhone you can use Shortcuts to add a custom icon to an app.

https://www.youtube.com/watch?v=jlsqrf8-QwQ

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ashford

79667576

Date: 2025-06-16 12:09:34
Score: 0.5
Natty:
Report link

Example as php:

//On top of oyur code
header('Content-Type: application/json');
//To output some array data into JSON
$response = array("Key1" => "Value1", "Key2" => "Value2");
echo json_encode($response);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Andy McRae

79667573

Date: 2025-06-16 12:08:33
Score: 0.5
Natty:
Report link

If you want to transfer files, folders or text in a "user friendly" way you can use applications such as Localsend, it allows you to transfer text and files with other devices in the same LAN (without Internet) without any configuration other then installation, it's multiplatfom and easy to use. If you need to transfer data in a more advanced way I suggest SCP, based on the SSH protocol; it requires a more experienced user and some configuration (well documented online), but it's far more powerfull.

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

79667555

Date: 2025-06-16 11:59:30
Score: 1
Natty:
Report link

Yeah, this is actually a common issue on Android when picking images, especially if they’re from Google Photos or cloud apps. Sometimes the file you get is just a placeholder, not the full thing 😅

Best way is to use ContentResolver.openInputStream(uri) instead of trying to get the actual file path. It works better for those types of files and lets the system handle fetching it.

You can’t really “force” Android or Chrome to download it fully, but if you try to read from the InputStream, it usually starts the download if needed. Just gotta be patient and maybe handle failures with a try-catch. If the stream fails or is empty, the file probably isn’t ready yet.

So yeah, not perfect, but that’s what most people do. Handle errors nicely and maybe tell the user to wait a bit 👍

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

79667552

Date: 2025-06-16 11:58:30
Score: 4.5
Natty: 5
Report link

im also trying to show twitter timeline on my website but its not working

Reasons:
  • Blacklisted phrase (1): its not working
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Krishi Yojana

79667549

Date: 2025-06-16 11:55:29
Score: 1
Natty:
Report link

I try to run an Azure pipeline to deploy a Java app with maven using self-hosted agent, but it says that agent doesn't see Java. How can I fix it?

You installed Java in user-specific folder: C:\Users\user\..., If the Azure DevOps agent is running as a Windows service, it won’t have access to C:\Users\user\.jdk\... So when your pipeline runs, it says: agent doesn't see Java, even it works fine in the command line under your user account.

To resolve use System-Wide JDK installation install java in shared ProgramFiles and set the path in System Environment Variables.

Or open C:\Users\user\.jdk in PowerShell, download and create your agent there, and run .\config.cmd. This runs the agent interactively as that user, which will have access to the .jdk Java installation.

In your azure-pipelines.yml file, you specified jdkVersionOption: '1.17', which uses Java version 17. However, you have installed Java version 23, which causes the error.

so, use below lines in your YAML file.

javaHomeOption: 'JDKVersion'
jdkVersionOption: '1.23'
or
javaHomeOption: 'Path'
jdkDirectory: '$(JAVA_HOME)'

enter image description here

Reasons:
  • Blacklisted phrase (0.5): How can I
  • RegEx Blacklisted phrase (1.5): How can I fix it?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
Posted by: Aslesha Kantamsetti

79667547

Date: 2025-06-16 11:54:28
Score: 4.5
Natty:
Report link

try gooning

with utmost serendipity,

stefan

Reasons:
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: stefan

79667546

Date: 2025-06-16 11:54:28
Score: 1
Natty:
Report link

you can run your tests directly using PHPUnit instead of the artisan test command. This bypasses the version constraints introduced by nunomaduro/collision.
Try running:
./vendor/bin/phpunit ./tests/

This solution resolved the issue for me when I encountered the same problem.

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

79667543

Date: 2025-06-16 11:52:27
Score: 1
Natty:
Report link

There's no way to increase the time to persist items in s1 and s2 if they depend on s3, it just doesn't make sense.

You should instead check how the operation which emits the value in s3 is evaluated and optimize from there.

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

79667531

Date: 2025-06-16 11:43:25
Score: 1
Natty:
Report link

When you run npm run build inside a Docker build targeting a different architecture than your host (e.g., building linux/amd64 on an arm64 Mac), the bundled tailwindcss binary may silently fail or hang during postcss execution. It does not always error out—but it does stall the build.

Rather than relying on the postcss approach, try to install Tailwind CSS CLI inside your Docker build environment and run it explicitly with npx.

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: DockSky

79667515

Date: 2025-06-16 11:35:23
Score: 2
Natty:
Report link

with open("million_tears.txt", "w", encoding="utf-8") as f:

f.write("😭" \* 1_000_000)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Аюша Чимитцыренов

79667513

Date: 2025-06-16 11:34:22
Score: 1
Natty:
Report link

If you want an image to be available use command

kubectl -n some_namespace create configmap --from-file ./image.png logo-cm

which will create the similar .yaml

---
apiVersion: v1
kind: ConfigMap
metadata:
  name: logo-cm
binaryData:
  image.png: >- iv... <your image in base64 format>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Igor

79667510

Date: 2025-06-16 11:33:22
Score: 1.5
Natty:
Report link

You can use below flow to use the pagination with blob.

enter image description here

Update the Set variable with Next page marker available from List blob v2 action

enter image description here

Update the until as variable('Pagination') is equal to null

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Cyber Ninja

79667508

Date: 2025-06-16 11:30:21
Score: 1
Natty:
Report link

Just not enough to add corsheadrs into settigns
You have to add your IP address,
so try to add this into your settings.py and then run.

CORS_ALLOWED_ORIGINS = [
    "http://192.168.2.103:8000",
]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Amisha Chauhan

79667496

Date: 2025-06-16 11:18:18
Score: 1.5
Natty:
Report link

I don't know if you still have this issue.
My solution was to not assign CUB_HOME, i.e. remove it in the environment variables or overwrite in cmd line.

As noted in the Install Instructions "For the CUB build time dependency, which you only need if you have CUDA older than 11.7, [...]", CUB is not needed, the setup script just still requests it.

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

79667494

Date: 2025-06-16 11:15:17
Score: 0.5
Natty:
Report link

The Listing has Cascadetype.REMOVE. This means only that if you delete your listing, all associated pictures get deleted too. For your use case you need CascadeType.PERSIST or .ALL.

    @OneToMany(mappedBy = "listing", cascade = CascadeType.ALL)
    private List<PictureEntity> pictures;

If you still have problems you should also check your DB if your foreign keys and references are defined correctly and with correct names.

Here is a simple but good introduction into the cascade types and how they interact with hibernate lifecycle:

https://medium.com/@himani.prasad016/jpa-hibernate-cascade-types-0490be19cc1f

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Retros_x

79667492

Date: 2025-06-16 11:12:15
Score: 6 🚩
Natty: 4
Report link

Dear sir I am political article writter please help to me IAM all age twitter X and 9 Facebook page writing IAM all age USA gov subscribers please help to me my life is very difficult one side move and IAM all age USA gov subscribers please help to me my life is very difficult one side move and another side of this is my life conditions IAM sejofania attackt please heominity help to me my personal information first name MDRAMIZUDDINMOLLA last name RAMIZ village chandina road 205 Debidwer MOLLA Bary postal code 205 po Debidwer upojela Debidwer DIST Comilla Bangladesh date of birth 31/07/1962 email address [email protected] mob 8801637517200 divice galaxy A05 Samsung

Reasons:
  • RegEx Blacklisted phrase (3): please help to
  • RegEx Blacklisted phrase (1): I am political article writter please help to me IAM all age twitter X and 9 Facebook page writing IAM all age USA gov subscribers please help to me my life is very difficult one side move and IAM all age USA gov subscribers please help to me my life is very difficult one side move and another side of this is my life conditions IAM sejofania attackt please
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MD RAMIZ UDDIN MOLLA

79667489

Date: 2025-06-16 11:10:15
Score: 2.5
Natty:
Report link

You can just used :

div[className=]
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Acare

79667464

Date: 2025-06-16 10:58:11
Score: 3.5
Natty:
Report link

I Have a question regarding this. I'm using python 3.5. I installed the python extension version 2020.8.xxx and the debugpy extension version 2023.1.xxx. These should work for python 3.5. However when I try to debug I get "Cannot read properties of undefined (reading 'resolveEnvironment')". It used to work before but I had auto update enabled and I don't remember how I solved this last year. Anyone has a clue?

Reasons:
  • Blacklisted phrase (1.5): I Have a question
  • Whitelisted phrase (-2): I solved
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: E. M.

79667461

Date: 2025-06-16 10:57:11
Score: 2
Natty:
Report link

Ülkemizin önde gelen spor mağazalarından Sportinn, kadın sneaker ayakkabı ve erkek sneaker ayakkabı dendiği zaman akla ilk gelen ikonik tasarımları özenle seçerek sizinle buluşturuyor. Nike Air Max gibi çıktığı günden bu yana her sporcunun hayali olan modelleri sizlere sunan Sportinn ile ihtiyacınız olan tüm spor ürünlerini en uygun fiyat avantajlarıyla bir arada görebilirsiniz.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aleyna Keleş

79667455

Date: 2025-06-16 10:54:10
Score: 3.5
Natty:
Report link

For me it was requesting ads from a disabled ads profile, used an old id in the path.

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

79667451

Date: 2025-06-16 10:51:09
Score: 3
Natty:
Report link

Organic traffic is free and builds over time through SEO; PPC (Pay-Per-Click) is paid and gives instant visibility but stops when you stop paying.

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

79667440

Date: 2025-06-16 10:43:07
Score: 2
Natty:
Report link

In My case, there was subreport that properties grow = True

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

79667429

Date: 2025-06-16 10:34:05
Score: 2
Natty:
Report link

An additionnal case, check that your url directory is named "urls" and not "url", checking that your app name is correct really matter, i tried all the solution above until i find out my directory lacked an "s"

Simple but Effective, it's one of the possible problem that happen

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

79667422

Date: 2025-06-16 10:27:03
Score: 1.5
Natty:
Report link

The issue likely comes from a mismatch between how your Electron app handles image imports like .png files, and how Playwright (running in a Node.js environment) handles them — which is usually not at all.

Here are a few things you might try:

You mentioned trying a separate config, that is a solid direction. Make sure that config handles assets like images the same way your main app does. You might also want to ensure your test environment is picking up the right Webpack aliases and rules.
If you're not relying on actual images during tests, just mock them out. For example, if you're using something like Jest for unit tests, you can set up moduleNameMapper to return a dummy string for image imports. For Playwright, you can stub global objects or intercept imports via a preprocessing step..

It is a common issue when your app uses Webpack, but your test environment doesn't process files the same way. hope this all will help you. thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: rao athar

79667420

Date: 2025-06-16 10:27:03
Score: 1.5
Natty:
Report link

I cannot find a way to add this additional connection property to the Oracle linked service?

In Oracle linked service version 1.0, custom connection properties like workaround=536870912 could be passed directly through the connection string but in version 2.0, it doesn't allow to pass through connection string. Try by adding the workaround parameter by manually editing the linked service JSON.

Try with the below steps to connect the connection property to the Oracle linked service:

Refer to this article for more information on Create a linked service to Oracle using UI.

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (1.5): I cannot find
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Balaji

79667414

Date: 2025-06-16 10:20:01
Score: 2
Natty:
Report link

Figured it out:

InAppWebView has a constructor param

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

79667406

Date: 2025-06-16 10:16:00
Score: 1.5
Natty:
Report link

Encoded in Binary Code is:

01010100 01101000 01100101 01101010 01100101 01100100 01101001 01100011 01101111 01110101 01101110 01110011 01100101 01101100 01110100 01101111 01110111 01101000 01101111 01101101 01110100 01101000 01101001 01110011 01101111 01100001 01110100 01101000 01101001 01110011 01101011 01100101 01110000 01110100 01110100 01101111 01101101 01111001 01110101 01110100 01101101 01101111 01110011 01110100 01100010 01100101 01101100 01101111 01101110 01100111 01110011 01110100 01101000 01100101 01101010 01110101 01110011 01110100 01101001 01100011 01100101 01101111 01100110 01110100 01101000 01100101 01101010 01100101 01100100 01101001 01110100 01101111 01110010 01100101 01110011 01110000 01100101 01100011 01110100 01110100 01101000 01100101 01110100 01110010 01100001 01101110 01100100 01101001 01110100 01101001 01101111 01101110 01110011 01101111 01100110 01110100 01101000 01100101 01101010 01100101 01100100 01101001 01110100 01101111 01110111 01101111 01110010 01101011 01110111 01101001 01110100 01101000 01101101 01111001 01101010 01100101 01100100 01101001 01110000 01100001 01110010 01110100 01101110 01100101 01110010 01110011 01100001 01110011 01110100 01101000 01100101 01100100 01100001 01110010 01101011 01110011 01101001 01100100 01100101 01101001 01110011 01110111 01101001 01110100 01101000 01101101 01100101

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

79667404

Date: 2025-06-16 10:15:00
Score: 1
Natty:
Report link

Exactly the same problem as you, except that when I run this project at home, even the first load is ultra fast. On the other hand, at work, the first load is catastrophic: 3 minutes waiting time for the vendor.scss file.

I'd advise you to drop the package.json tracks or reduce the number of vendors - that's not the problem.

For example, it takes 30 to localhost:8080 to render a 200kb jpg...

Once the first launch is completed, all subsequent launches run smoothly.

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

79667394

Date: 2025-06-16 10:01:56
Score: 4
Natty: 4
Report link

i think the config file setup handles video record as per the playwright documentation

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

79667380

Date: 2025-06-16 09:52:53
Score: 1.5
Natty:
Report link

Good question. You showed one approach. Here's another approach to show the same thing you wanted. The main difference is that there is more configurability using my barebones approach rather than using a simplifying framework like in your approach.

runtime screenshot

from datetime import datetime
import matplotlib.pyplot as plt
import numpy as np
import math
"""
https://stackoverflow.com/questions/79554216/year-comparison
"""

def is_prefix_of_any(substring, string_list):
    return any(item.startswith(substring) for item in string_list)

def nearest_neighbor(input_number, number_list):
    nearest = min(number_list, key=lambda x: abs(x - input_number))
    return nearest

def rgb2hex(r,g,b):
    hex = "#{:02x}{:02x}{:02x}".format(r,g,b)
    return hex

def compass_to_rgb(h, s=1, v=1):
    h = float(h)
    s = float(s)
    v = float(v)
    h60 = h / 60.0
    h60f = math.floor(h60)
    hi = int(h60f) % 6
    f = h60 - h60f
    p = v * (1 - s)
    q = v * (1 - f * s)
    t = v * (1 - (1 - f) * s)
    r, g, b = 0, 0, 0
    if hi == 0: r, g, b = v, t, p
    elif hi == 1: r, g, b = q, v, p
    elif hi == 2: r, g, b = p, v, t
    elif hi == 3: r, g, b = p, q, v
    elif hi == 4: r, g, b = t, p, v
    elif hi == 5: r, g, b = v, p, q
    r, g, b = int(r * 255), int(g * 255), int(b * 255)
    return rgb2hex(r, g, b)

file_path = 'tga-deposits-taxes.csv'

with open(file_path) as file_in:
    lines = []
    for line in file_in:
        lines.append(line.strip())

lines2 = []
lines2.append("year,month,date,amt")
for x in range(len(lines)):
    if x != 0:
        lines[x] = lines[x].split(",")
        lines[x] = lines[x][0].split("-")+lines[x][1:]
        lines2.append(','.join(lines[x]))

years = set()
months = set()
days = set()

date_objs = [datetime.strptime(date_str[:10], "%Y,%m,%d").date() for date_str in lines2[1:]]
for x in date_objs:
        years.add(x.year)
        months.add(x.month)
        days.add(x.day)
years = sorted(years)
months = sorted(months)
days = sorted(days)

lines3 = {}
for y in months:
     lines3[y] = {}

for x in years:
     for y in months:
          substring1 = str(x)+","+str(y).zfill(2)
          if is_prefix_of_any(substring1,lines2):
                lines3[y][x] = {}
                for z in days:
                        substring2 = str(x)+","+str(y).zfill(2)+","+str(z).zfill(2)
                        if is_prefix_of_any(substring2,lines2):
                            for i in lines2:
                                 if (str(x)==i.split(",")[0]) and (str(y).zfill(2)==i.split(",")[1]) and (str(z).zfill(2)==i.split(",")[2]):
                                    lines3[y][x][z] = int(i.split(",")[3])
                        else:
                            number_list = set()
                            for i in lines2:
                                 if (str(x)==i.split(",")[0]) and (str(y).zfill(2)==i.split(",")[1]):
                                      number_list.add(int(i.split(",")[2]))
                            number_list = sorted(number_list)
                            nearest_neighbor_result = nearest_neighbor(z,number_list)
                            for i in lines2:
                                 if (str(x)==i.split(",")[0]) and (str(y).zfill(2)==i.split(",")[1]) and (str(nearest_neighbor_result).zfill(2)==i.split(",")[2]):
                                      lines3[y][x][z] = int(i.split(",")[3])

month_list = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
color_list = {}
for x in range(len(years)):
     color_list[years[x]] = compass_to_rgb(360.0/float(len(years))*(x+1))

for y in range(len(months)):
    plt.subplot(1, len(months)+1, y+1)
    current_dict = lines3[months[y]]
    current_dict_keys = current_dict.keys()
    for x in current_dict.keys():
        list_of_keys = []
        list_of_values = []
        for key,val in current_dict[x].items():
            list_of_keys.append(key)
            list_of_values.append(val)
        plt.plot(list_of_keys,list_of_values, color=color_list[x])
    plt.xlabel("Date")
    plt.ylabel("Amt")
    plt.title(month_list[months[y]-1])
plt.subplot(1, len(months)+1, len(months)+1)
keys = list(color_list.keys())
for x in range(len(keys)):
    plt.text(0, x, keys[x], color=color_list[keys[x]], fontsize=10)
plt.plot([],[])
plt.xlabel("")
plt.ylabel("")
plt.ylim(0, len(keys) + 1)  # ensure all labels fit
plt.axis('off')
plt.title("Legend")
plt.show()
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: workhandle

79667377

Date: 2025-06-16 09:50:52
Score: 7.5 🚩
Natty: 4.5
Report link

I'm just going through this headache at the moment to reduce dynamodb costs. Have created a GSI with the partition key being similar to your createdAt time. Did you find a way to query the table without knowing what items you are actually going to get?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a way to
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jonathan Barrett PsV Eagle

79667373

Date: 2025-06-16 09:46:51
Score: 5
Natty: 5.5
Report link

https://github.com/DULAKSHANA404/heart-tumor.git here a ff-nn model with web app

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

79667366

Date: 2025-06-16 09:41:49
Score: 1
Natty:
Report link

enter image description here
I Have Updated Your Code With Just Few Lines Updated
Check It Out

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Row double 50% height with gap</title>


    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" />
    <style>
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html,
        body {
            height: 100%;
        }

        .container-fluid {
            width: 80% !important;
            margin: 200px auto;
            background-color: green;
            height: 500px;
        }

        .row-double {
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .row-double>.row {
            flex: 1;
            margin: 0;
        }

        .row-double img {
            aspect-ratio: 1 / 1;
        }

        figure {
            margin-bottom: 0 !important;
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            aspect-ratio: 16 / 9;
        }

        .gap-15 {
            gap: 15px;
            padding: 0 !important;
            margin: 0 !important;
        }

        .gap-15>* {
            padding: 0 !important;
            max-width: calc(50% - 15px *1/2);
        }
    </style>
</head>

<body>
    <section class="mosaic mosaic-02 container-fluid fade-slide fade-slide-down px-0">
        <div class="row h-100 gap-15">
            <div class="col-6">
                <figure id="main" class="h-100 m-0">
                    <img src="https://picsum.photos/1200/800" alt="Placeholder" />
                </figure>
            </div>
            <div class="row col-6 gap-15">
                <figure class="col-6">
                    <img src="https://picsum.photos/1500/800" alt="Placeholder" />
                </figure>
                <figure class="col-6">
                    <img src="https://picsum.photos/1200/850" alt="Placeholder" />
                </figure>
                <figure class="col-6">
                    <img src="https://picsum.photos/800/800" alt="Placeholder" />
                </figure>
                <figure class="col-6">
                    <img src="https://picsum.photos/1200/900" alt="Placeholder" />
                </figure>
            </div>
        </div>
    </section>
</body>

</html>
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (0.5): Check It Out
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Xeeshan Bug

79667361

Date: 2025-06-16 09:37:48
Score: 4
Natty:
Report link

Can you please provide what is full command and where you running this ?
Also, you can try this ,
Try to run this command in native terminal like (CMD/PowerShell, macOS teminal
Also try after enable virtual environment

python manage.py createsuperuser

python3 manage.py createsuperuser

py manage.py createsuperuser

Reasons:
  • Whitelisted phrase (-1): try this
  • RegEx Blacklisted phrase (2.5): Can you please provide what
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you please
  • Low reputation (1):
Posted by: Amisha Chauhan

79667356

Date: 2025-06-16 09:32:47
Score: 1.5
Natty:
Report link

I looked into the source code of mqtt.js and found that TLS related options are really just forwarded to "node:tls" module's tls.connect(opt) method, so the docs you wanna consult are here:

After reading, it just makes me wonder: where did you got the impression that these are valid options to pass into mqtt.connectAsync({ caPaths, certPath, keyPath })? 👈 Those 3 fields doesn't exist in docs of MQTT.js nor Node.js...

So I think @hardillb's answer is on the right track after all, not sure what's still missing that prevents it to work, but read the docs ™️ please.

Telling from the node.js docs, obviously you can simply pass in rejectUnauthorized: false to mute the error:

await mqtt.connectAsync(
  'mqtts://localhost:8883',
  {
    protocol: 'mqtts',
    rejectUnauthorized: false
  }
)

Although you said in your question updates "Option 1: No, I cannot do that", it's not clear whether you just don't accept this solution, or you simply mean you cannot set NODE_TLS_REJECT_UNAUTHORIZED="0" globally but are still open to set it in one instance, thus I'm post this solution anyways, it's up to you.

As of "Option 2: I cannot do that as I use MQTT." Nay, in fact you can, because no matter you're using mqtt.js or postman, those options are passed into "node:tls" under the hood.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (3): did you got the
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @hardillb's
  • High reputation (-2):
Posted by: hackape

79667348

Date: 2025-06-16 09:27:45
Score: 11.5
Natty: 7.5
Report link

a have the same problem with graphical card GeForce 315M NVidia, I can`t play with Homeworld 3 at now in notebook. can you help me? actually my driver is 342.01 (2016 edition). maybe i should instal not fo notebook version for my Samsung RC710 ?

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can you help me
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ascen-149

79667347

Date: 2025-06-16 09:27:45
Score: 3.5
Natty:
Report link

Thanks to @TilmanHausherr for his suggestions, i had to use this function while embedding the font to the pdf

PDType0Font.load(doc, new FileInputStream(fontPath), false);
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @TilmanHausherr
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: rec7y33

79667330

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

The server can’t guarantee detection if the HTTP response is lost after reaching a proxy or load balancer. Once a proxy ACKs the response, the server assumes it's delivered — even if the client never gets it.

So, always design your REST service with idempotent endpoints and retry logic, just like Brewed to Greed handles duplicate chai orders — calmly and correctly.

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

79667317

Date: 2025-06-16 09:05:39
Score: 2.5
Natty:
Report link

Use SEO (organic) for long-term growth and brand authority.

Use PPC for quick results, testing, or new product launches.

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

79667315

Date: 2025-06-16 09:03:39
Score: 1.5
Natty:
Report link

To store the heapdump files in a custom directory, use --diagnostic-dir= flag while running the node process.

Refererence - https://github.com/nodejs/node/pull/47854

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

79667307

Date: 2025-06-16 08:59:38
Score: 2
Natty:
Report link

I got it finally. Interesting that LLM (Claude) was not helpful.

I would say that the design is a bit confusing, so I post this additionally to the accepted answer.

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Yuriy N.

79667306

Date: 2025-06-16 08:58:37
Score: 1.5
Natty:
Report link

A disk space of around 20GB is assigned to each job. with all the linked files, I am guessing you will hit the limit since Revit doe create temporary files to work with.

You can join https://aps.autodesk.com/adn and ask your question for the Revit team to be contacted.

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

79667300

Date: 2025-06-16 08:57:37
Score: 0.5
Natty:
Report link

I faced the same issue and solved it.
You can try this line:

dataSet.mode = LineDataSet.Mode.HORIZONTAL_BEZIER
Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tadashi

79667296

Date: 2025-06-16 08:52:35
Score: 2
Natty:
Report link

I'm not using Flask (FastAPI), found simple and independent from framework solution here: https://stackoverflow.com/a/10611713/7213505

{% for line in post.content.splitlines() %}
    {{ line }}<br>
{% endfor %}
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: C0oo1D

79667290

Date: 2025-06-16 08:45:33
Score: 1.5
Natty:
Report link

It has been resolved. when you uses sha256sum to calculate a url string, should be like this:

echo -n "url" |. sha256sum
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: mac.ma

79667256

Date: 2025-06-16 08:18:25
Score: 3.5
Natty:
Report link

I had this problem, i solve with define custom Elements in app.component's constructor.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Carlos Alberto Ribeiro Bicudo

79667246

Date: 2025-06-16 08:12:23
Score: 0.5
Natty:
Report link

Thank you @Thom A, @GSerg, and @Dai for the helpful clarifications and suggestions especially for identifying that the root cause lies in the SQL query generated by the third-party client and for suggesting the TDS proxy workaround.

The error Table hint NOLOCK is not allowed occurs when a third-party application tries to query an Azure Fabric SQL Database using the WITH (NOLOCK) table hint.

Azure Fabric SQL (SQL endpoint of Microsoft Fabric) does not support NOLOCK or other unsafe table hints (READUNCOMMITTED) to maintain data consistency and isolation guarantees in its distributed architecture.

This issue cannot be fixed from the Azure SQL side. Instead, it must be addressed on the 3rd party application side, where the SQL query is constructed or passed to the engine.

If you have control over the 3rd party application's source code or configuration, then firstly Locate and update any queries like:

SELECT * FROM dbo.MyTable WITH (NOLOCK)

Then Replace them with:

SELECT * FROM dbo.MyTable

If applicable, remove any setting that globally injects READUNCOMMITTED or similar behavior.

And, If You Do Not Control the Application Code then as @Dai pointed out, you can insert a TDS proxy between the application and the database. This proxy can rewrite SQL queries in-flight

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Thom
  • User mentioned (0): @GSerg
  • User mentioned (0): @Dai
  • User mentioned (0): @Dai
  • Low reputation (0.5):
Posted by: Mihir Saxena

79667245

Date: 2025-06-16 08:12:23
Score: 3.5
Natty:
Report link

Working solution is to delegate build operations to Maven if you are using IntelliJ Ideaenter image description here

Reasons:
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: pbuxaroff

79667233

Date: 2025-06-16 07:58:19
Score: 6 🚩
Natty: 4
Report link

But Still the question remains: "How to find if a coulmn is part of a Functional Index?" The following query errors with "ORA-00932: inconsistent datatypes: expected - got LONG"...

SELECT i.index_name,
       i.table_name,
       e.column_expression
FROM   user_indexes i
JOIN   user_ind_expressions e
ON     i.index_name = e.index_name
WHERE  to_lob(e.column_expression) LIKE '%<COLUMN_NAME%';

Any help in this matter is appreciated
Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (3): Any help in this matter is appreciated
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Vijay

79667232

Date: 2025-06-16 07:58:19
Score: 1.5
Natty:
Report link

Using python and <filename> as your file you want to update:

import numpy as np
import netCDF4 as nc


with nc.Dataset(<filename>, mode="r+") as ds:
    np.int32(ds.variables['time'][:])
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Kerry

79667228

Date: 2025-06-16 07:53:18
Score: 2.5
Natty:
Report link

VPN tools is the most convenient choice to fake location. I also found there are many different kind of tools recently, like Magfone Location Changer, which seems different from traditional VPN tools, it runs on computer, and you can fake the iPhone location or android location freely.

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

79667224

Date: 2025-06-16 07:52:17
Score: 2.5
Natty:
Report link

in ios/Runner/Info.plist change Light to Automatic in this key value

<key>UIUserInterfaceStyle</key>
<string>Automatic</string>

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

79667210

Date: 2025-06-16 07:46:15
Score: 3.5
Natty:
Report link

use float modbus the example are pretty easy wishing you luck

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

79667204

Date: 2025-06-16 07:42:14
Score: 0.5
Natty:
Report link

@jeko's answer is good, here are a few additional ways to get the response body:

let-values

(use-modules
  (srfi srfi-11)
  (web client))

(let-values
  (((response response-body) (http-request "http://www.gnu.org")))
  (display response-body))

define-values

(use-modules
  (srfi srfi-244)
  (web client))

(define-values (response response-body) (http-request "http://www.gnu.org"))
(display response-body)
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @jeko's
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: Daniel

79667200

Date: 2025-06-16 07:37:13
Score: 1
Natty:
Report link

a bit late to the party but it may help people landing on this page with the same issue.

I had a similar problem trying integrate conan 2 into my CMake workflow so wrote a CMake module to invoke (and even install, if needed) conan, possibly depending on CMake options or variables. It is available from https://github.com/tkhyn/cmake-conanfile. It requires a conanfile.py and doesn't work with conanfile.txt but the conversion is easy enough.

Reasons:
  • Contains signature (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: tkhyn

79667198

Date: 2025-06-16 07:33:12
Score: 1.5
Natty:
Report link

The below code works. But using $filter directly as a parameter doesn't work.

Scenario: Get one user details
    * def filter = "(user eq 'ABC')"
    * def encodedFilter = encodeURIComponent(filter)
    Given url baseURL + 'Users?language=en&$filter=' + encodedFilter
    When method Get
    Then status 200
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Chinmayee

79667194

Date: 2025-06-16 07:30:11
Score: 6 🚩
Natty: 6
Report link

Thank you!! Also was wondering if there is a working v.5 of this script.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (2): was wondering
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alex Zuyev

79667188

Date: 2025-06-16 07:24:08
Score: 7.5 🚩
Natty: 5.5
Report link

أواجه نفس المشكلة ما هو الحل؟؟

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: Hamid Feham

79667183

Date: 2025-06-16 07:20:07
Score: 0.5
Natty:
Report link
  "[python]": {
    "editor.codeActionsOnSave": {
      "source.fixAll": "explicit"
    },
    "editor.defaultFormatter": "charliermarsh.ruff",
    "editor.formatOnSave": true
  }

I use Ruff and those are the settings for python files. For me the editor.codeActionsOnSave did the trick.

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

79667179

Date: 2025-06-16 07:19:06
Score: 0.5
Natty:
Report link

In my case, I had pod running which was using the PVC. I deleted the pod and the PV / PVC which were in terminating state were automatically deleted. Ofcourse the earlier solution bt Dragomir Ivanov does work. But before that, try deleting the pod :)

Conclusion - If a user deletes a PVC in active use by a Pod, the PVC is not removed immediately. PVC removal is postponed until the PVC is no longer actively used by any Pods. Also, if an admin deletes a PV that is bound to a PVC, the PV is not removed immediately. PV removal is postponed until the PV is no longer bound to a PVC.

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

79667168

Date: 2025-06-16 07:10:04
Score: 0.5
Natty:
Report link

In my case, helped to delete yarn.lock and then running yarn install

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

79667164

Date: 2025-06-16 07:04:02
Score: 9 🚩
Natty: 5
Report link

did you get the solution for this , it would be helpful since I am facing exactly same problem. I tried different methods to install it didn't work

Reasons:
  • RegEx Blacklisted phrase (3): did you get the solution
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing exactly same problem
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Shashank B

79667163

Date: 2025-06-16 07:04:02
Score: 4
Natty: 6
Report link

Nee oru aalu punda unakku oru answer punda venumaa poda dei

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chitti Version2.o

79667153

Date: 2025-06-16 06:55:58
Score: 2
Natty:
Report link

I set up a similar environment for my storage account by creating it using the CLI.

az storage account create --name mystoragecdnbab --resource-group anji-rg --location centralindia --sku Standard_LRS --kind StorageV2  

Then i enable static website to my storage account

az storage blob service-properties update --account-name mystoragecdnanji --static-website --index-document index.html                                

Then I created DNS profile

az cdn profile create --name mycdnprofile --resource-group anji-rg --location centralindia --sku Standard_Microsoft

Then I created DNS endpoint

az cdn endpoint create --name mycdnendpoint --profile-name mycdnprofile --resource-group anji-rg --origin mystoragecdnbab.z29.web.core.windows.net --origin-host-header mystoragecdnbab.z29.web.core.windows.net

I added dummy index.html file to my setup got access in web using DNS endpoint https://mycdnendpointbab.azureedge.net/

enter image description here

In your case, since you have another domain name, you need to add that domain name to access your service on the web. To do this, you should map Azure CDN to your custom domain like cdn.domain.com, ensure that you have a valid domain since you already purchased from Namecheap. In your DNS provider, add a CNAME record for 'cdn' pointing to your Azure CDN endpoint like mycdnendpointbab.azureedge.net. Once DNS propagates, validate this custom domain in Azure CDN Profile under 'Custom domains' section. This will allow traffic to cdn.domain.com to be served via Azure CDN.

Similar issue: Azure FrontDoor CDN Classic add custom domain Please let me know how it goes. -Thank you @Nicke Manarin

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): In your case
  • RegEx Blacklisted phrase (2.5): Please let me know how
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Nicke
  • Low reputation (0.5):
Posted by: Bheemani Anji Babu

79667145

Date: 2025-06-16 06:46:57
Score: 2
Natty:
Report link

Open the browser network tab and look at user suggestions when you're adding a mention comment on a Bitbucket PR.

Posting a mention comment

Request - https://bitbucket.org/gateway/api/v1/recommendations

{
    "recommendedUsers": [
        {
            "entityType": "USER",
            "id": "xxxxxxxxxxxxxx",
            "name": "John Doe",
            ......
        }
    ],
}
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Manuka Prabath

79667144

Date: 2025-06-16 06:45:56
Score: 2.5
Natty:
Report link

It has got to do with your imports, your IDE could have imported clearTimeout from timers.

Please check Nick Parsons shared link.

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

79667139

Date: 2025-06-16 06:38:53
Score: 7.5 🚩
Natty: 4.5
Report link

do you have idea about the issue? I have the same error.

Reasons:
  • RegEx Blacklisted phrase (1): I have the same error
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same error
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jiqi Li

79667116

Date: 2025-06-16 06:09:47
Score: 2.5
Natty:
Report link

You can check the package’s dependencies using deps.dev. For example, for langchain-core version 0.3.65, here's the direct link:

🔗 https://deps.dev/pypi/langchain-core/0.3.65/dependencies

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

79667110

Date: 2025-06-16 05:54:44
Score: 3.5
Natty:
Report link

In addition to the answer from @kokoko, I found out that running the app directly from Xcode also solves this problem. If still things don't work, just restart Xcode.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @kokoko
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: sm-sayedi

79667101

Date: 2025-06-16 05:40:40
Score: 6.5 🚩
Natty: 5.5
Report link

15 years later I have the same problem with my Entity-Model when migrating from Hibernate 5 to 6. Everthing works fine with WildFly 26 and Hibernate 5. Changing to WildFly 35 with Jakarta EE 10 and Hiberenate 6 results in this error.

So the question is: what's the reason for this error in Hibernate 6 and where to find relevant documentation?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: raho

79667099

Date: 2025-06-16 05:39:39
Score: 2.5
Natty:
Report link

Rat SMS stands out as a premier bulk SMS service provider in Delhi, offering a range of services including promotional, transactional, and OTP SMS. Our platform ensures instant delivery, high open rates, and compliance with TRAI regulations. With features like Unicode support and SMPP integration, we cater to businesses of all sizes, ensuring effective communication with your target audience

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

79667097

Date: 2025-06-16 05:37:38
Score: 1
Natty:
Report link

In my case the problem solved after i removed this from style.css :


.cdk-overlay-backdrop {
  pointer-events: none !important;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ashrik Ahamed

79667096

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

I know this is very late for you, but for anyone else wondering. You can use LLM models like ChatGPT to help create more of training data.

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: Anirudh Sharma

79667088

Date: 2025-06-16 05:26:35
Score: 2
Natty:
Report link

Please update the row threshold value in pinot table config while creating it. this value shall be changed

"realtime.segment.flush.threshold.rows": "0" to "realtime.segment.flush.threshold.rows": "2"

refrence:https://docs.pinot.apache.org/basics/concepts/components/table

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

79667083

Date: 2025-06-16 05:21:34
Score: 1.5
Natty:
Report link

config/queue.php
'default' => env('QUEUE_CONNECTION', 'sync') to

'default' => env('QUEUE_CONNECTION', 'database')

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

79667079

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

Yes, it shouldn't be a problem, as the directories are the same. To be on the safe side, make a backup of the following directories:

%APPDATA%\DBeaverData\
C:\Users\<YourUsername>\AppData\Roaming\DBeaverData\workspace6\

More information: https://dbeaver.com/docs/dbeaver/Workspace-Location/

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

79667036

Date: 2025-06-16 04:07:16
Score: 4
Natty: 4.5
Report link

Here is the article on how to use SSE to build MCP in context of springboot

https://www.linkedin.com/pulse/building-server-sent-event-sse-mcp-spring-boot-ranjeet-jha-vyfac/?trackingId=h4B43RDKQa%2BdnMA2JqujSg%3D%3D

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

79667022

Date: 2025-06-16 03:41:11
Score: 1
Natty:
Report link

As a temporary solution, I’ve switched to using the default provider on iOS (Apple Maps) while continuing to use Google Maps on Android.

provider={Platform.OS === 'android' ? PROVIDER_GOOGLE : null}

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

79667010

Date: 2025-06-16 03:03:03
Score: 3.5
Natty:
Report link

Someone downvoted the question. It's legitimate and frustrating to be forced to use the Microsoft store. Don't downvote just because the question tone expresses deep frustration at a Microsoft decision that forces an unwieldy deployment approach, especially for corporates where the store is effectively banned.

However, there is a solution for Blazor apps that doesn't require the store and is cross platform for MacOS , Linux and Windows:

Alternatively, if someone can tell me how I can build an EXE or MSI from my existing Maui app I'll happily (very happily) accept that as an answer.

Reasons:
  • RegEx Blacklisted phrase (2): downvote
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: random_user_8234

79667003

Date: 2025-06-16 02:49:00
Score: 0.5
Natty:
Report link

i have update vite config and use outDir: 'public/build' but the error is still same.

my vite.config.js

import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';

export default defineConfig({
    plugins: [
        laravel({
            input: [
                'resources/css/app.css',
                'resources/js/app.js',
                'resources/js/project-modals.js'
            ],
            refresh: true,
        }),
    ],
    build: {
        outDir: 'public/build',
    },
});
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Teknik Informatika

79667000

Date: 2025-06-16 02:26:56
Score: 6.5 🚩
Natty: 5
Report link

Have you solved this issue, I have the same problem.

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: José Polanco

79666998

Date: 2025-06-16 02:26:55
Score: 0.5
Natty:
Report link

Update your vite.config.js to specify the correct output directory. Modify the build.outDir option:

export default {
  build: {
    outDir: 'public/build',
  },
};

Run npm run build again.

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

79666996

Date: 2025-06-16 02:19:54
Score: 2
Natty:
Report link

First of all, you need to use database like posgresql, mysql, nosql, etc. Second, as you are not familiar with backend, use backend frameworks like php-laravel, js-nodejs, python-django, java-springboot, etc. Do not try to implement those mentioned features by yourself.

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

79666990

Date: 2025-06-16 02:10:52
Score: 2
Natty:
Report link

The English sentence was wrong, so I will rewrite it again.

---------------------------------------------------------------------

Our Windows driver is a UMDF2.15 driver that outputs event logs.

Previously, HKLM was used to register the event log message files in the registry.

[CoInstallers_AddReg]
HKLM,%EventLogKey%\MyDriverName,EventMessageFile,0x00020000,"%%SystemRoot%%\system32\drivers\UMDF\MyDriver.dll"
[Strings]
EventLogKey="SYSTEM\CurrentControlSet\Services\EventLog\Application"

We need to do the HLK tests and get the WHQL signature, but if you look at the documentation on InfVerif.exe for the/h option (WHQL requirement) that was introduced in Windows11 24H2, it says that HKLM: SYSTEM\CurrentControlSet is currently an exception but should not be used because it will not be available in a future release. It also says to modify the registry using the HKR and AddReg directives.

https://learn.microsoft.com/en-us/windows-hardware/drivers/devtest/infverif_h

In the DDInstallServices section, it seems to be possible to register an Eventlog message file using HKR with the AddService directive, but my driver is a UMDF2.5 driver and I have to include the reflector inf. There is no AddService directive, how do I define it?

[DDInstall.Services]
AddService=ServiceName,flags,service-install-section,event-log-install-section,Application,EventName

[event-log-install-section]
AddReg=drivername_EventLog_AddReg

[drivername_EventLog_AddReg]
HKR,,EventMessageFile,0x00020000,"%%SystemRoot%%\system32\drivers\Mydriver.dll"
HKR,,TypeSupported,0x00010001,7

------------------------------------

[DDInstall.Services]
Include=WUDFRD.inf
Needs=WUDFRD.NT.Services

<<INF AddReg directive>>

https://learn.microsoft.com/en-us/windows-hardware/drivers/install/inf-addreg-directive

<<INF AddService directive>>

https://learn.microsoft.com/en-us/windows-hardware/drivers/install/inf-addservice-directive

<<Specifying the Reflector in an INF File>>

https://learn.microsoft.com/en-us/windows-hardware/drivers/wdf/adding-the-reflector

Reasons:
  • Blacklisted phrase (1): how do I
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Filler text (0.5): ---------------------------------------------------------------------
  • Filler text (0): ------------------------------------
  • Low reputation (1):
Posted by: YASU

79666964

Date: 2025-06-16 01:10:40
Score: 1
Natty:
Report link

I got the same issue, it looks like unsloth is changing something under the hood. I fix the issue by making sure unsloth is imported BEFORE trl.


from unsloth import FastLanguageModel
from trl import SFTTrainer, SFTConfig

my package version:

trl==0.18.2

unsloth==2025.6.2

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

79666963

Date: 2025-06-16 01:07:39
Score: 2.5
Natty:
Report link

No, there is no way to forward declare anything outside of a header file. If you want to collocate your source and external declarations you can include your implementation (source) in the header file, usually indicated using .hpp.

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

79666957

Date: 2025-06-16 00:46:35
Score: 0.5
Natty:
Report link

update your flutter, it is probably out of date:

$ flutter upgrade

OBS: remember to recreate your project, when you update, everything will break, so migrate your current code to a new project with the updated Flutter.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vinícius Bruno

79666952

Date: 2025-06-16 00:32:32
Score: 0.5
Natty:
Report link

I guess the reason is buffering. JavaFX uses a scene graph to manage the UI, which is not thread-safe. Any updates to the UI must be done on the JavaFX Application Thread. Background tasks (like media playback) may spawn additional threads to handle buffering and decoding media.

Use Platform.runLater() to update the UI from background threads safely.

Reasons:
  • RegEx Blacklisted phrase (0.5): Any updates
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: buzz8year

79666943

Date: 2025-06-16 00:02:26
Score: 1
Natty:
Report link

If you need to get this information after the jobs have finished executing you will need to find the 'RunInstances' events in the CloudTrail logs.

Go to the CloudTrail console -> Event History, then search Event name 'RunInstances', then click on 'Filter by date and time', in the filter dropdown click on 'Absolute range' then adjust to start and end date times to the time your job started.

Your should find the entries in there and the instance type will be specified in the JSON.

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

79666932

Date: 2025-06-15 23:36:20
Score: 1
Natty:
Report link

Since R 3.6.0 library() has had arguments for exclude and include.only. This makes the solution to your problem very simple with:
library(dplyr, exclude = "select") or library(MASS, exclude = "select")

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

79666923

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

Did you get this resolved?

I spun it up on a test site to see if I could spot the error as your code looked fine, it runs fine on my site:

enter image description here

The only difference I made was:

Neither of those should make any difference though.

Maybe the line reference is misreporting and the error comes from somewhere else in the adapter js code? Try chopping it back to the vanilla version you posted and, if that works, build out again from there to see what trips it up.

Reasons:
  • RegEx Blacklisted phrase (3): Did you get this resolved
  • RegEx Blacklisted phrase (1.5): resolved?
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
Posted by: Rich - enzedonline

79666922

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

I want that domain name is transferred as additional parameter site in my URL but this has to be hidden from users

You can't HIDE the Hostname in the URL. OTOH you can serve the same content content up under multiple hostnames.

http://www.maindomain.com/index.php?site=domain

Why? While this is trivial to achieve with URL re-writing (NOT redirecting) it is an unecessary complication - your PHP can code can read the hostname from URL - it appears in MULTIPLE parameters passed to the script (have a look at the output of phpinfo()).

Reasons:
  • Blacklisted phrase (0.5): Why?
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: symcbean

79666914

Date: 2025-06-15 22:50:10
Score: 1
Natty:
Report link

you need this line:

xmlsec.tree.add_ids(template, ["ID"])

place it before signature_node = xmlsec.tree.find_node(template, xmlsec.constants.NodeSignature)
and it will work.

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

79666906

Date: 2025-06-15 22:26:04
Score: 1.5
Natty:
Report link

I just tried to do that, you probably want to do the same as I and use a dict

Mode = 'fast'
choice = {"slow": "v2 k5", "balanced": "v3 k5","fast": "v3 k7"}
puts = choice[Mode]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nom XD

79666904

Date: 2025-06-15 22:23:03
Score: 2
Natty:
Report link

Outlook webmail, and now the New Outlook which is based on that, does this when they come across a malformed link.

In this case, perhaps the dashes within the href attribute are causing an issue. Are they normal dashes in your code? Or, try spaces.

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