79741134

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

Relative distance from -180 to +180 (a and b can be millions of degrees apart, i.e. have winding):

(b - a) % 360

Absolute distance from 0 to +180 (a and b can be millions of degrees apart, i.e. have winding):

Math.abs((b - a) % 360)

Don't overcomplicate what doesn't need to be complicated.

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

79741130

Date: 2025-08-20 13:41:45
Score: 1
Natty:
Report link
import axios from "axios";

const token = localStorage.getItem("token");

await axios.delete(`http://localhost:8000/api/comments/${id}`, {
  headers: {
    Authorization: `Bearer ${token}`,
  },
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abdul Khaliq

79741112

Date: 2025-08-20 13:22:40
Score: 3
Natty:
Report link

finaly i found another postgres module that works when converted to .exe : pg8000
for the moment everything works in .exe as in .py.

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

79741105

Date: 2025-08-20 13:15:38
Score: 1
Natty:
Report link

In C++20 you may simply use

template<auto f> auto wrapper(auto ... x)
{
    return f(x...);  
};
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Helmut Zeisel

79741095

Date: 2025-08-20 13:09:36
Score: 4
Natty:
Report link

I did have the same issue with my app and used the approach mentionned in the following blog.
https://blog.debertol.com/posts/riverpod-refresh/

It works until now. Hope it will help someone :)

Reasons:
  • Whitelisted phrase (-1): Hope it will help
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): have the same issue
  • Low reputation (1):
Posted by: Henintsoa Paul Manitraja

79741091

Date: 2025-08-20 13:04:35
Score: 1.5
Natty:
Report link

Google news api is deprecated and there is no such publicly published quota regarding its rate limit. So developers need to switch to the best alternatives of google news API one of them is Newsdata.io which offers global coverage, real-time updates, advanced filtering, and free development access—ideal for news analytics and apps.

And in terms of its rate limit :
Free Plan: 30 credits every 15 minutes.
Paid plans: 1800 credits every 15 minutes.

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

79741089

Date: 2025-08-20 13:01:35
Score: 1.5
Natty:
Report link
# Write your MySQL query statement below
SELECT MAX(num) as num FROM (
    SELECT num 
    FROM MyNumbers
    GROUP BY num HAVING COUNT(*) = 1
) AS singls;

this is the correct way to find the answer..

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

79741072

Date: 2025-08-20 12:37:29
Score: 0.5
Natty:
Report link

You can sort the results of your query and achieve the same result as an "ORDER BY" SQL statement. Use the ´Column options´ and select the relevant columns in the ´Sorting´ tab.

enter image description here

Alternatively, could you could create an Analytic view and then work on the grouping / aggregating your results in Power BI with much more flexibility than directly in Azure DevOps.

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

79741070

Date: 2025-08-20 12:34:29
Score: 2
Natty:
Report link

There are news api's that limit results to a specific publisher. But some news APIs enable you to include more than one source in a single query. Like Newsdata.io supports this by its domain parameter, where you can add upto 5 domains separated by commas in a single query and Other providers, like NewsAPI.org, also offer a similar feature with their sources parameter.

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

79741068

Date: 2025-08-20 12:32:28
Score: 1.5
Natty:
Report link

Given that you already have an algorithm working, tested, and fast enough in python, I would use this to convert the data to a matlab .mat file. Then load this into matlab and continue to work in matlab from that point onwards.

python script:

from scipy.io import savemat
dat = unpack_s12p_to_f32(data)
savemat("matlab_matrix.mat", {"data": dat, "label": "data imported and converted to matlab using python"})

then in matlab:

load('matlab_matrix.mat')
plot(data)

enter image description here

Later to streamline the workflow, this could be done by a simple python script called from the command line when you get new data.

Is there a reason you want to import this directly to matlab with no interpretation step?

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

79741066

Date: 2025-08-20 12:29:27
Score: 3
Natty:
Report link

Use Softaken WIndows Data Recovery Software, this tool help you to restore damaged and corrupted files of your drive.

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

79741065

Date: 2025-08-20 12:27:27
Score: 2
Natty:
Report link

Sorry this is kinda incomplete answer and for python, nor R, but still. Scatter overlay with grouped barplot should be possible, see second example on this showcase page: https://plotly.com/python/graphing-multiple-chart-types/

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Václav Bočan

79741062

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

Duplicates can't be removed fully, but there are news api's that provide fields that make deduplication easier on the client side. Like Newsdata.io,

it provides each article with a unique article_id, article link, source_id, source_url, source_icon, enabling developers to filter repeat on their end. It also provides a "removeduplicate" parameter which allows users to filter out duplicate articles.

Additionally, It allows filtering by category, language, country, Region etc, which can help narrow results and minimize duplicate headlines at the API level before you process them.

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

79741046

Date: 2025-08-20 12:11:22
Score: 1
Natty:
Report link

I was also unable to access external libraries on VS Code. What I did was first to install pylint extension.

Although it still doesn't show the way PyCharm does but now, when I start typing out the name of a module it brings out a pop-up list of all the modules starting with that letter and if i import a specifiied module, highlight it and click Go to, F12, it takes me to the source code in the python library (e.g import Random) then I highlight Random click F12 I'm taken to the source code for the Random module in the Lib package.

module drop down menu

Random module source code in ext libraries

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

79741043

Date: 2025-08-20 12:09:22
Score: 3
Natty:
Report link

I think even if your text color changes to white in dark mode, its good for you as it increases readability and will increases the apps accessibility

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

79741039

Date: 2025-08-20 12:07:21
Score: 3.5
Natty:
Report link

Q: Can We use SOAP (back-channel) binding instead of POST/Redirect in Spring SAML?

A: No. Spring Security SAML, both legacy and current SAML2, only supports HTTP-Redirect and HTTP-POST bindings. SOAP binding is not supported (yet).

Archived docs by Vladimír Schäfer: SOAP not available.

WayBack Mashine Saml Manual

Current logout docs by Vladimír Schäfer: SOAP not available.

docs.spring.io/spring-security-saml

"I read in the documentation about back-channel SOAP calls, and that sounds like exactly what I want, but I can't find anything on it."

You're right in thinking that there should be documentation on it, there're many, example. Just none for spring saml. Have a nice one.

Cheers to the Mods 🍺

Reasons:
  • Blacklisted phrase (1): Cheers
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user71264998

79741038

Date: 2025-08-20 12:07:21
Score: 3
Natty:
Report link

if you are still looking for an answer, in my company we work with https://github.com/seznam/halson, https://www.npmjs.com/package/halson
it is well documented and works perfectly fine with nest

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

79741034

Date: 2025-08-20 12:02:20
Score: 1
Natty:
Report link

Easy with defaultScrollAnchor() modifier.

ScrollView {
    // ...
}
.defaultScrollAnchor(.bottom)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: eledgaar

79741032

Date: 2025-08-20 12:01:19
Score: 0.5
Natty:
Report link

you can Go to

Dashboard → Settings → Permalinks like this : /%category%/%postname%/ and select a custom structure (whatever you want).but it is only use in category and post slug. and you can use custom code also. in function.php

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aasif Khan

79741026

Date: 2025-08-20 11:56:17
Score: 1.5
Natty:
Report link

Following the initial tutorial, I saw that the command py is accepted in the environment on windows. Example:

py -m pip install -r .\requirements.txt

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

79741020

Date: 2025-08-20 11:53:16
Score: 2.5
Natty:
Report link

Since v3.1.73 this can also happen if you compile without -sFETCH_SUPPORT_INDEXEDDB=0

see the explanation here
https://github.com/emscripten-core/emscripten/issues/23124

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

79741019

Date: 2025-08-20 11:53:16
Score: 2.5
Natty:
Report link

This is a late reply but for anyone else that stumbles across this you also have to apply the .Sql scripts in the "Migrations" folders for the various Orleans components (Reminders, Clustering etc) as well as the "Main" sql scripts. This fixed the issue for me.

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

79741001

Date: 2025-08-20 11:31:11
Score: 1
Natty:
Report link

I did something similar to @Rono using table variable, where I inserted and sorted my data by date.
I am supposed to ensure date continuity (no gaps, gap exactly 1 day)
maybe it will inspire someone

declare @sorted table (num int identity, id int, dfrom date, dto date)

insert into @sorted(id, dfrom, dto)
values
(1230, '2024-01-01','2024-01-15'),
(4567, '2024-01-16','2024-10-30'),
(9000, '2024-10-31','2024-12-31'),
(9001, '2025-01-01','2025-01-15'),
(9015, '2025-01-16','2025-06-30'),
(9592, '2025-07-01','3000-01-01')

select  s.id
from    @sorted s
left join 
(
    select id, dfrom, dto, num from @sorted
) sub
    on sub.num = s.num + 1
where 
    datediff(day, s.dto, sub.dfrom) <> 1
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Rono
  • Low reputation (1):
Posted by: XzajoX

79740993

Date: 2025-08-20 11:22:09
Score: 1
Natty:
Report link

As @0stone0 pointed out in the comments, it looks like the action is refreshing the page before calling the function.

Also, it might be necessary to add event.preventDefault() to your calculate() method so it executes and not refreshes the page.

Something like:

function calculate(event){
    event.preventDefault();
    ...
}
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @0stone0
  • Low reputation (0.5):
Posted by: Carlos Martel Lamas

79740991

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

I know its old, but i just want to say that this still works.

The answer was posted earlier here -> https://stackoverflow.com/a/3092273/7069338

Your line:

<requestedExecutionLevel level="asInvoker" uiAccess="true" />

Should be:

<requestedExecutionLevel level="requireAdministrator" uiAccess="true" />

I've testet it and it works for me.

-

In my opinion you shouldn't run VS as admin, unless absolutely necessary.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1): works for me
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Neci

79740983

Date: 2025-08-20 11:12:06
Score: 1
Natty:
Report link

"Really enjoyed this post! TypeRacer is such a fun way to improve typing speed while competing with others."

"We conduct Abacus competition and Vedic maths competition to enhance speed, accuracy, and mental calculation skills in students. With regular Abacus competition practice test and online abacus test options, participants can prepare effectively and gain confidence before the main event."

  <a href=" https://www.abacustrainer.com/competionconductor">visit abacustrainer</a>
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: abacustrainer

79740982

Date: 2025-08-20 11:12:06
Score: 2
Natty:
Report link

Are you still having this issue?

I am running VSCode 1.103.1 and Jupyter extension v2025.7.0 and have no problem viewing both Input, Metadata, and Output changes:

VSCode notebook diff

Note: VSCode by default collapses sections that have no changes.

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Nermin

79740975

Date: 2025-08-20 10:58:03
Score: 0.5
Natty:
Report link

*"In .NET, a Web Service is a software component that allows applications to communicate over the internet using standard protocols like HTTP and XML/JSON. The key benefit is that it provides platform-independent communication, so applications built in different languages (C#, Java, PHP, Python, etc.) can easily share data through web services.

On the other hand, Triple DES (3DES) is a symmetric encryption algorithm used to protect sensitive data. It works by applying the DES (Data Encryption Standard) three times, making it much stronger than simple DES. In .NET applications, developers often use Triple DES to encrypt information such as passwords, financial details, or authentication tokens before sending them through a web service.

👉 For example:

  1. The client encrypts the data using Triple DES before sending it.

  2. The web service receives the encrypted data and decrypts it using the same secret key.

  3. This ensures that even if someone intercepts the communication, the data cannot be understood without the key.

This combination of Web Services + Triple DES is still used in many secure systems, especially in financial or enterprise-level applications.

I’ve also shared helpful guides and resources about website development & security here: https://softzen.info"*

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

79740971

Date: 2025-08-20 10:53:02
Score: 1.5
Natty:
Report link
from PIL import Image, ImageDraw, ImageFont

# Palabras y pistas personalizadas
words = [
    ("Enero", "El mes en que nuestras vidas se cruzaron ❄️"),
    ("Higueruela", "Nuestro primer hogar compartido 🏡"),
    ("Merida", "Nuestro primer viaje inolvidable ✈️"),
    ("Bestialburger", "Donde comenzó nuestra historia con papas 🍔"),
    ("Instagram", "La red social que nos conectó por primera vez 📲"),
    ("Cucharita", "Nuestra forma favorita de dormir abrazados 🛌"),
    ("Mirada", "Lo que aún me pone nerviosa de ti 👀"),
    ("Destino", "Lo que nos juntó, aunque no lo planeamos ✨"),
    ("Fotos", "Tenemos muchas, pero siempre queremos más 📸"),
    ("Desayuno", "Lo que me haces con amor cada mañana 🥞"),
    ("2304", "El día que todo comenzó 💫"),
    ("Amor", "Lo que crece cada día entre nosotros ❤️")
]

# Crear cuadrícula base
grid_size = 20
grid = [['' for _ in range(grid_size)] for _ in range(grid_size)]
positions = list(range(1, len(words)*2, 2))  # Filas espaciadas

# Insertar palabras horizontalmente
for i, (word, _) in enumerate(words):
    row = positions[i]
    col = 1
    for j, letter in enumerate(word.upper()):
        grid[row][col + j] = letter

# Configurar imagen
cell_size = 40
img_size = grid_size * cell_size
img = Image.new("RGB", (img_size, img_size + 300), "white")
draw = ImageDraw.Draw(img)

# Fuente
try:
    font = ImageFont.truetype("arial.ttf", 20)
except IOError:
    font = ImageFont.load_default()

# Dibujar celdas y letras
for i in range(grid_size):
    for j in range(grid_size):
        x = j * cell_size
        y = i * cell_size
        draw.rectangle([x, y, x + cell_size, y + cell_size], outline="black", width=1)
        if grid[i][j] != '':
            letter = grid[i][j]
            # Calcular tamaño del texto
            bbox = draw.textbbox((0, 0), letter, font=font)
            w = bbox[2] - bbox[0]
            h = bbox[3] - bbox[1]
            draw.text(
                (x + (cell_size - w) / 2, y + (cell_size - h) / 2),
                letter,
                fill="black",
                font=font
            )

# Escribir las pistas debajo de la cuadrícula
y_offset = img_size + 20
for i, (word, clue) in enumerate(words, start=1):
    draw.text((10, y_offset), f"{i}. {clue}", fill="black", font=font)
    y_offset += 25

# Guardar imagen final
img.save("sopa_de_letras.png")
img.show()

Reasons:
  • Blacklisted phrase (2): Crear
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jennifer Sempere

79740967

Date: 2025-08-20 10:51:01
Score: 1
Natty:
Report link

One way to do what you are looking for is to use the Workbook.ApplyTheme method.

https://learn.microsoft.com/en-us/office/vba/api/excel.workbook.applytheme

This method uses a theme file located in

C:\Program Files\Microsoft Office\root\Document Themes 16

My version of Excel is

Microsoft® Excel® 2021 MSO (Version 2507 Build 16.0.19029.20136) 64-bit

You can generate your own theme file if needs be but the file OfficeTheme.thmx would be a good starting point. You can then ose the colours in this theme to colour your UserForm.

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

79740959

Date: 2025-08-20 10:41:59
Score: 3
Natty:
Report link

On Grafana version 11.5.2, it is on the section Value options -> Calculation : enter image description here

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

79740958

Date: 2025-08-20 10:39:58
Score: 3
Natty:
Report link

Updating react and react-native to latest version fixed the issue

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

79740954

Date: 2025-08-20 10:34:57
Score: 1
Natty:
Report link

When you want to exit the application, simulate the user clicking the close button.

GLFWwindow *window=...;
PostMessageW(glfwGetWin32Window(window), WM_CLOSE, NULL, NULL);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
Posted by: 許恩嘉

79740946

Date: 2025-08-20 10:27:55
Score: 2.5
Natty:
Report link

it's because proxy server blocking it, you have two ways to solve it

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

79740940

Date: 2025-08-20 10:23:53
Score: 3.5
Natty:
Report link

The solution is to pass a polars DataFrame from python, instead of a PyDataFrame, and avoid polars version 1.32.3 (there seems to be a bug)

Thank you @Carcigenicate for the help

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Carcigenicate
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Felipe Vieira

79740938

Date: 2025-08-20 10:19:52
Score: 3
Natty:
Report link
display: block

Very helpful! Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (2):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yuri Boblak

79740934

Date: 2025-08-20 10:14:51
Score: 1.5
Natty:
Report link
1. SELECT pg_get_serial_sequence('table_name', 'p_id');
2. SELECT setval(
  '1stqueryoutput',
  (SELECT COALESCE(MAX(moderator_id), 1) FROM moderator_data)
);

fixed
check nxt what value is 
3. SELECT nextval('1stqueryoutput');
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Shyam Sundar Patri

79740932

Date: 2025-08-20 10:13:51
Score: 2
Natty:
Report link

It seems to be related to this known issue: IJPL-54496 National keyboard layouts support.

Unfortunately, there is no convenient solution to this problem.

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

79740929

Date: 2025-08-20 10:11:50
Score: 1.5
Natty:
Report link

Instead of

$('#modal-location').on('shown.bs.modal', () => {
  initMap();
});

I used this.

$(document).on('shown.bs.modal', '#modal-location', () => {
    initMap();
});

and it works fine.
because it ensures initMap()) executes after the modal is actually visible in the DOM.

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

79740928

Date: 2025-08-20 10:10:50
Score: 2
Natty:
Report link

Chek your Permission-Policy header.

Chrome header screen shot

If it is set to camera=() then it will blocks access to the camera. Either you remove this header value from the response (alternatively pass empty string) or add this header with a value of camera(self) from the backend e.g. from php backend set the below header to the response.

$headers = [];
$headers['Permissions-Policy'] = 'camera=(self), microphone=(self)';

After that, verify it from the header respnonse,

Chrome header after setting Permission-Policy

Hope this will work.

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Md Shahbaz Ahmad

79740924

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

The suggested new approach above might have a typo 'demoji', which should be correctly written as 'emoji' and also should be .replace_emoji(). See the correct version below: def remove_emojis(text): return emoji.replace_emoji(text, '')

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

79740918

Date: 2025-08-20 10:01:47
Score: 1
Natty:
Report link
UPDATE your_table_name
SET drug_exposure_end_date = DATEADD(DAY, 29, drug_exposure_start_datetime)
WHERE drug_exposure_end_date IS NULL
  AND drug_exposure_end_datetime IS NULL
  AND days_supply IS NULL;

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

79740912

Date: 2025-08-20 09:53:45
Score: 1.5
Natty:
Report link

The problem is with Vitest + graphql. It is a known bug and a workaround was posted here:

https://github.com/vitest-dev/vitest/issues/4605

The workaround is to add this line to your vite config:

resolve: { alias: { graphql: "graphql/index.js" } },
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jonas Holfeld

79740911

Date: 2025-08-20 09:53:45
Score: 1.5
Natty:
Report link

Just in case, solution exist, more dirty hack, but still
@claude sonnet, are you sure that no way?)

TextField(viewModel.placeholder, text: $viewModel.text)
    .onReceive(NotificationCenter.default.publisher(
        for: UITextField.textDidChangeNotification)
     ) { notification in
            guard let textField = notification.object as? UITextField,
                  !textField.enablesReturnKeyAutomatically else {
                  return
            }

            textField.enablesReturnKeyAutomatically = true
            textField.reloadInputViews()
     }
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @claude
  • Low reputation (1):
Posted by: Алексей Александрович

79740907

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

I came across to this problem today.

    //varchar(max)
    @Column(name = "FORMULA", length = -1)
    private String formula;

length = -1 solved it for me.

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Berk

79740902

Date: 2025-08-20 09:46:42
Score: 3.5
Natty:
Report link

right click on it and then click on hide "..." inlay hints

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

79740892

Date: 2025-08-20 09:35:39
Score: 4
Natty:
Report link

is the problem with the browser or what , maybe the security of the browser or the local server ins't allowing it

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is the
  • Low reputation (1):
Posted by: aman

79740885

Date: 2025-08-20 09:31:38
Score: 1.5
Natty:
Report link

Well this is a rather old Questiomn now but it does seem to work now

It should now actually work exactly the way you did it which is simply

//Todo start text

// start continuation with space

enter image description here

I am using VS-2022 and ReSharper

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

79740884

Date: 2025-08-20 09:28:37
Score: 1
Natty:
Report link

I'm using the solution with the manifest. When starting Visual Studio as Admin (ADM user), my NuGet packages and other dependencies don't work.

The solution for that is:

  1. Build your project

  2. Start VS as admin and open your project

  3. Start the built EXE from step 1 as admin

  4. Attach Visual Studio to the started EXE

    1. Debug → Attach to Process (CTRL + ALT + P)
Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Saiko

79740882

Date: 2025-08-20 09:27:36
Score: 1.5
Natty:
Report link

I am using .net 9 with 'Blazor web app' template.
I changed namespace for project and then I got the same error message.
It was needed to change 'href' attribute for stylesheet from '@Assets["{project name}.styles.css"]' to '@Assets["{project name with full namespace}.styles.css"]' in App.razor.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Tomas Krchnak

79740880

Date: 2025-08-20 09:26:36
Score: 1.5
Natty:
Report link

I am using .net 9 with 'Blazor web app' template.
I changed namespace for project and then I got the same error message.
It was needed to change 'href' attribute for stylesheet from '@Assets["{project name}.styles.css"]' to '@Assets["{project name with full namespace}.styles.css"]' in App.razor.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Tomas Krchnak

79740878

Date: 2025-08-20 09:26:36
Score: 3
Natty:
Report link
  1. dll file might be missing.

  2. reinstall crruntime might help.

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

79740872

Date: 2025-08-20 09:21:34
Score: 4.5
Natty: 5.5
Report link

can i change color to red using c# assembly

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can i
  • Low reputation (1):
Posted by: user31312862

79740857

Date: 2025-08-20 09:06:30
Score: 2.5
Natty:
Report link

Mai b.a ka bahu vikalp ka papar diya tha

Syter vois honi ke karan mai chhod diya tha

Tablet to nahi mila tha

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

79740840

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

Looks like the current version of SBT does not support it. I've submitted a PR that hopefully fixes it: https://github.com/sbt/sbt/pull/8219

(works on my machine :P , but the sbt scripted tests fail even without the change; Macbook ARM)

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

79740839

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

Another way to stay closer to your original code is using TNetEncoding.Base64String:

...
uses
System.NetEncoding;

...

var
s: String;
begin
s := TNetEncoding.Base64String.Encode('asjjdhgfaoösjkdhföaksjdfhöasjdfhasdkjasdhfköajsjhdfajssssd');
end;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: fisi-pjm

79740814

Date: 2025-08-20 08:30:20
Score: 3.5
Natty:
Report link

i had a similar issue , it is flooding our sentry . Can't reproduce it yet .

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

79740810

Date: 2025-08-20 08:29:19
Score: 0.5
Natty:
Report link

to me it worked to remove the inheritance so
( i dont know if theres any Implications)

class _ArtifactoryAccessor(pathlib._Accessor):

is changed to:

class _ArtifactoryAccessor:
Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Eylon I

79740799

Date: 2025-08-20 08:18:16
Score: 1.5
Natty:
Report link

In Power Apps, you can’t directly grab the logged-in user’s token through a custom connector. The standard approach is to configure the connector with OAuth 2.0 so the token is issued and passed securely to the third-party API. If that’s not possible, routing the call through Power Automate gives more flexibility in handling tokens. It’s similar to how every step needs proper alignment for things to work smoothly—just like reciting سورة الواقعة مكتوبة كاملة brings spiritual alignment and clarity in life.

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

79740792

Date: 2025-08-20 08:10:15
Score: 0.5
Natty:
Report link

Just stumbled upon this old question, in case anyone is still searching I figured i'd update.

Flutter implemented contentInsertConfiguration parameter for TextField and TextFormField in Feburary 2023.

See more here: https://api.flutter.dev/flutter/material/TextField/contentInsertionConfiguration.html

TextField(
  contentInsertionConfiguration: ContentInsertionConfiguration(
    allowedMimeTypes: const <String>['image/png', 'image/gif'],
    onContentInserted: (KeyboardInsertedContent content) {
      final Uint8List? data = content.data;
      if (data != null) {
        // Display in your UI using Image.memory
      }
    },
  ),
);
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Benjamin Corben

79740791

Date: 2025-08-20 08:09:14
Score: 1
Natty:
Report link

This error occurs when you deploy your Express application to Vercel without a build folder, say you don't have a frontend, and you still wanna deploy your project, then just follow the Steps it will work fine.

1. Go to Vercel -> project -> Setting -> Build and Output Settings then set Output Directory to . ( a dot meaning project root )

2. If you are using Multer and Cloudinary for Images, then might you need to change your public/temp into just '/tmp' in your Multer configuration.

These two Steps helped, I hope if someone encounters the same error, it will help.

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

79740789

Date: 2025-08-20 08:07:14
Score: 1.5
Natty:
Report link

`demo.zenoh.io` is not a public server which is always running. It's online only from time to time when ZettaScale is running demos.

You should try running you own Zenoh router on some host in your LAN, or in a cloud VM instance with a public IP.

See the instructions to install and run a Zenoh router here:
https://zenoh.io/docs/getting-started/installation/#installing-the-zenoh-router

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

79740787

Date: 2025-08-20 08:06:13
Score: 1
Natty:
Report link

Your Django container isn’t accessible via localhost from Selenium.
Inside Docker, use the service name (django:8006) instead of localhost, and point your WebDriver to http://selenium-hub:4444/wd/hub. Also make sure your test port matches the Django runserver port.

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

79740785

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

I followed these steps: https://facebook.github.io/watchman/docs/troubleshooting.html#poison-opendir and it worked for me. Note that you have to expand the memory using the instruction at the end of this page: https://facebook.github.io/watchman/docs/install#system-specific-preparation.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: PietroPutelli

79740782

Date: 2025-08-20 08:04:13
Score: 1
Natty:
Report link

install the follow plugin:

npm install karma-ui5

add configuration for karma:

require('karma-ui5/helper').configureIframeCoverage(config);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: York Chen

79740776

Date: 2025-08-20 07:56:10
Score: 6
Natty: 4
Report link

Nobody in this wolrd cant give this topic a fucking answer, wow wow sucks ass

Reasons:
  • Blacklisted phrase (2): fuck
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: lolzipzip

79740774

Date: 2025-08-20 07:53:08
Score: 4.5
Natty:
Report link

Have you tried looking at android.view.GestureDetector?

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

79740770

Date: 2025-08-20 07:51:07
Score: 12.5
Natty: 6.5
Report link

Hey did you get the answer for this one?
i am facing a similar issue regarding this.
can you tell me what did you do?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you tell me what
  • RegEx Blacklisted phrase (3): did you get the answer
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i am facing a similar issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Black Flame

79740766

Date: 2025-08-20 07:46:06
Score: 5
Natty:
Report link

Since Bundle.appStoreReceiptURL is deprecated as of iOS 18 I was wondering if anybody has successfully used AppDistributor so far?

Reasons:
  • Blacklisted phrase (2): was wondering
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
Posted by: benrudhart

79740765

Date: 2025-08-20 07:45:06
Score: 1.5
Natty:
Report link

I am finding it really difficult to contact Heroku. Unfortunately I have been getting monthly bills for some years without noticing. I created an account years ago as a student testing a web development project. Being completely new to cloud services I assumed it was a free trial but my account is being drained and I can't login because I no longer have 2FA and am not getting responses from the support account. Ideally I'd get a refund for all these payments since it is clear it was a mistake. I wonder if there is any advice on how to get a response or support with the refund

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

79740763

Date: 2025-08-20 07:45:05
Score: 4
Natty: 4.5
Report link

This feature is currently not supported. Please follow this request: IJPL-148496 Add possibility to change selected file highlight color in Project view

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

79740761

Date: 2025-08-20 07:44:05
Score: 2
Natty:
Report link

A graphical version of PyInstaller has been published on Microsoft Store. It runs the standard PyInstaller under the hood but provides a full GUI (one-file/dir, hidden imports, data files, UPX, etc.). This way you don’t have to memorize or type commands anymore:

https://apps.microsoft.com/detail/9MZCLVF2DFC4?hl=en-us&gl=US&ocid=pdpshare

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

79740759

Date: 2025-08-20 07:38:04
Score: 1
Natty:
Report link

Solved.

Basically, after editing my solver.xlam, I commented out every line Excel complains about (4 lines in total, each time it uses dlgSolverParameters.refObj or .refVariables). After a couple of runs, it worked, so I closed and reopened Excel (the xlam restored itself), and magically everything worked.

Thank you all.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: MauroT

79740755

Date: 2025-08-20 07:36:03
Score: 1.5
Natty:
Report link

Had the same issue, stumped me for days.

Resolved this by downloading the latest version of the tc-b_new_sdk.dll and more importantly tc-b_new_sdk.lib files. Placed both of these in the service folder and bingo it all works.

I now have a VB.NET service that downloads clock times from 5 Anviz clock machines, then imports the results into our Dynamics NAV ERP and PeopleHR systems.

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

79740749

Date: 2025-08-20 07:32:02
Score: 5
Natty:
Report link

Free & working (5 Millions installs) : https://www.devsense.com/en

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

79740746

Date: 2025-08-20 07:28:01
Score: 1.5
Natty:
Report link

I found the answer its the cron issue or we can say path issue , problem was when i was running script manually than i was in my script directory than the encrypted file was build in the directory as i run the script.sh but in corn the working directory is by default /home/ubuntu/ and in my script the rsync have the path of my script directory so rsync cant find the file there and that make it fail so i updated script from just having file name like this

file="$data_${date}.enc"

to

loc="/home/ubuntu/scripts/automated_datasender"

file="${loc}/data_${date}.enc"

now the rsync can find the file.

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

79740725

Date: 2025-08-20 07:07:55
Score: 2.5
Natty:
Report link

I really appreciate the help! With the advice from jasonharper, I updated to the latest EEGLAB and exported the data again with the “Use comma separator (csv) instead of tab” option checked — the output looks perfect now! like this!

enter image description here

Many thanks also to UncleBigBay for providing valuable suggestions on how to improve my post. Because the Staging Ground post was temporarily locked, I wasn’t able to respond directly, but your support was very helpful.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: xsxs

79740720

Date: 2025-08-20 07:03:54
Score: 3.5
Natty:
Report link

The error seems to go away when I configured the project to target the same platform (targeted all to x64 and published as x64).

Step 6 in this article.

Reasons:
  • Blacklisted phrase (1): this article
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: gmz007

79740709

Date: 2025-08-20 06:40:48
Score: 4.5
Natty:
Report link

How big are we talking? The new Plotly Cloud by default accepts Dash projects up to 80MB (and you could convert your excel to parquet for a more compact (and efficient footprint)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: Dave Gibbon

79740703

Date: 2025-08-20 06:35:47
Score: 1
Natty:
Report link

The Premise Let HA​ and HB​ be two distinct, secure cryptographic hash functions.

HA​:{0,1}∗→{0,1}n HB​:{0,1}∗→{0,1}m (Where n and m are the output bit lengths) We operate on two fundamental assumptions for any secure cryptographic hash function:

One-Wayness (Preimage Resistance): Given an output y, it is computationally infeasible to find any input x such that H(x)=y. Pseudo-randomness: The output of the hash function is computationally indistinguishable from a truly random function. Colllary: Pseudo-randomness implies that for two independent hash functions HA​ and HB​, their outputs are uncorrelated. Knowing HA​(x) provides no useful information about the value of HB​(x).

Suppose there exists an efficient, general-purpose conversion algorithm, F, such that for any input message x:

F(HA​(x))=HB​(x)

Proof by Contradiction We will assume that such an efficient algorithm F exists and demonstrate that this assumption violates the core property of pseudo-randomness.

  1. The Distinguisher Game

To prove a function is not pseudo-random, we construct a “distinguisher” — an algorithm that can successfully tell the function’s output apart from a truly random output.

Consider an adversary whose goal is to determine if it’s interacting with our real hash functions (HA​,HB​) or with two truly independent random functions (RA​,RB​).

World 1 (Real): The adversary can query an oracle that provides the pair (HA​(x),HB​(x)) for any chosen x. World 2 (Random): The adversary can query an oracle that provides the pair (RA​(x),RB​(x)) for any chosen x, where RA​ and RB​ are independent, truly random functions. 2. The Adversary’s Strategy

The adversary uses our hypothetical conversion function F to win this game with near-certainty.

The adversary chooses any single input message, x0​. It submits x0​ to a hashing oracle The oracle returns a pair of outputs, (yA​,yB​). The adversary then computes F(yA​) and performs a simple test: Is F(yA​)=yB​ ? 3. Analyzing the Outcome

In World 1 (Real): The returned pair is (HA​(x0​),HB​(x0​)). By the definition of our assumed function F, F(HA​(x0​)) is guaranteed to equal HB​(x0​). The test passes with probability 1.

In World 2 (Random): The returned pair is (RA​(x0​),RB​(x0​)). Since RB​ is a truly random function independent of RA​, its output RB​(x0​) is a random m-bit string. The value F(RA​(x0​)) is some fixed output. The probability that this specific output happens to match the random output from RB​ is negligible: 1/2m. 4. The Contradiction

The existence of the function F allows an adversary to distinguish between the real world and the random world with probability 1.

This directly violates the pseudo-randomness assumption, which underpins the security of all cryptographic hash functions.

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

79740694

Date: 2025-08-20 06:19:44
Score: 3.5
Natty:
Report link

You can use the free online delphi pascal code formatter: https://pscodec.cipindanci.com/pasfmt/

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: root

79740693

Date: 2025-08-20 06:19:44
Score: 13.5
Natty: 7.5
Report link

I have the same issue. Did you manage to fix it?

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): Did you manage to fix it
  • RegEx Blacklisted phrase (1.5): fix it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Simon Bowen

79740685

Date: 2025-08-20 06:13:41
Score: 5
Natty:
Report link

Pyenv is not made for windows. see https://github.com/pyenv/pyenv?tab=readme-ov-file

Have you tried pyenv-win (https://github.com/pyenv-win/pyenv-win)?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Christoph Noll

79740675

Date: 2025-08-20 06:05:40
Score: 2
Natty:
Report link

You need to open the document like this:

window.open('https://view.officeapps.live.com/op/view.aspx?src=' + publicUrl);

This will open files in a new window.

If you want to display the document in an iframe, use:

https://view.officeapps.live.com/op/embed.aspx?src= + publicUrl

Also make sure that your Nginx configuration allows external requests by enabling the appropriate CORS settings. Otherwise, Office Online will not be able to download the file from your server.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: 404 error

79740672

Date: 2025-08-20 06:03:39
Score: 2.5
Natty:
Report link

I downloaded the latest version of anaconda and installed it, when I needed to select a folder to install I renamed the old anaconda3 folder to something else. Then the base python and conda were up to date. I then copied over the old envs to the new folder.

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

79740664

Date: 2025-08-20 05:55:37
Score: 1
Natty:
Report link

This was the result in my case:

result.get_text(separator=" ", strip=True)

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: Pepe Alvarez

79740655

Date: 2025-08-20 05:45:35
Score: 2
Natty:
Report link

I already figured out the issue. Had to replace all of the np.empty inside the Heun function with np.full. The initial conditions were also way too big for the model I'm studying, so had to change that as well. I now get a proper, realistic looking orbit, like this: enter image description here Anyways, thank you all who tried to help me.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): help me
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Don Al

79740641

Date: 2025-08-20 05:23:30
Score: 2
Natty:
Report link

The issue you're experiencing, where the internet stops working after connecting to the Azure VPN Client, is likely due to the VPN configuration routing all traffic through the VPN tunnel by default, which can disrupt access to the public internet. Your configuration already includes excluderoutes to keep public internet traffic off the VPN tunnel, but it seems the settings might not be fully effective, or additional configuration is needed to ensure split tunneling works correctly.Here’s a step-by-step analysis and solution to rectify the issue:1. Understand the Current ConfigurationYour configuration includes:

Despite these settings, the internet is being blocked, which suggests that either:

2. Steps to Rectify the Issuea. Verify Split Tunneling in Azure VPN GatewayThe Azure VPN Gateway may be configured to route all traffic (including internet traffic) through the VPN tunnel, overriding the client-side excluderoutes. To ensure split tunneling is enabled on the Azure side:

  1. Check the Point-to-Site Configuration in Azure:

    • Go to the Azure Portal > Navigate to your Virtual Network Gateway > Point-to-site configuration.

    • Ensure that the Address Pool only includes the VNet address range (e.g., 10.0.0.0/16) and does not include 0.0.0.0/0 (which would route all traffic through the VPN).

    • If 0.0.0.0/0 is present in the address pool, remove it to enable split tunneling.

  2. Download a Fresh VPN Profile:

    • After confirming or updating the Point-to-Site configuration, download a new VPN profile from the Azure Portal and compare it with your current configuration.

    • Update your XML file with any new settings from the downloaded profile, ensuring the fqdn, servervalidation, and certificate details match.

b. Adjust the Client ConfigurationYour current excluderoutes configuration (0.0.0.0/1 and 128.0.0.0/1) is correct for split tunneling, as it covers the entire public internet address space while allowing 10.0.0.0/16 to go through the VPN. However, you can make the configuration more explicit or troubleshoot further:

c. Check DNS SettingsIf the internet is inaccessible, it could be due to DNS resolution issues rather than routing. When connected to the VPN, the client might be using the Azure VNet’s DNS servers, which may not resolve public internet domains correctly.

d. Test with TCP Instead of UDPYour configuration uses UDP (<transportprotocol>udp</transportprotocol>), which is generally faster but can be less reliable in some network environments due to NAT or firewall issues. If the internet issue persists, try switching to TCP:

xml

<transportprotocol>tcp</transportprotocol>

After making this change, reconnect and test internet access.e. Verify Azure VPN Client VersionEnsure you’re using the latest version of the Azure VPN Client, as older versions may have bugs or compatibility issues with split tunneling:

f. Check Local Firewall or Network SettingsYour local machine’s firewall or network settings might block internet access when the VPN is active:

g. Test ConnectivityAfter making changes:

  1. Re-import the modified VPN profile into the Azure VPN Client.

  2. Connect to the VPN.

  3. Test internet access by visiting a public website (e.g., google.com).

  4. Verify VNet access by pinging or connecting to a resource in the 10.0.0.0/16 range.

  5. If the issue persists, check the Azure VPN Client logs (available in the client’s diagnostic section) for errors related to routing or DNS.

3. Sample Adjusted ConfigurationHere’s a modified version of your configuration with a single excluderoutes entry and DNS settings (if supported by the client):

xml

<?xml version="1.0" encoding="utf-8"?>
<AzVpnProfile>
  <clientconfig>
    <!-- Keep public internet OFF the VPN tunnel -->
    <excluderoutes>
      <route>
        <destination>0.0.0.0</destination><mask>0</mask>
      </route>
    </excluderoutes>
    <!-- Send only your VNet over the tunnel -->
    <includeroutes>
      <route>
        <destination>10.0.0.0</destination><mask>16</mask>
      </route>
    </includeroutes>
    <!-- Optional: Specify public DNS servers -->
    <dnsservers>
      <dns>8.8.8.8</dns>
      <dns>8.8.4.4</dns>
    </dnsservers>
  </clientconfig>

  <name>Geovert-VM-vnet</name>
  <protocolconfig>
    <sslprotocolConfig>
      <transportprotocol>tcp</transportprotocol> <!-- Switched to TCP for testing -->
    </sslprotocolConfig>
  </protocolconfig>

  <serverlist>
    <ServerEntry>
      <displayname i:nil="true" />
      <fqdn>azuregateway-0ad30063-afcb-4d23-9960-b3fc2f4b4b06-ae638e987919.vpn.azure.com</fqdn>
    </ServerEntry>
  </serverlist>

  <servervalidation>
    <Cert>
      <hash>DF3C24F9BFD666761B268073FE06D1CC8D4F82A4</hash>
      <issuer i:nil="true" />
    </Cert>
    <serversecret></serversecret>
    <type>cert</type>
  </servervalidation>

  <version>1</version>
</AzVpnProfile>

Note: The <dnsservers> section may not be supported in all Azure VPN Client versions. If it causes an error, remove it and configure DNS manually in the client or Azure Gateway settings.4. If the Issue PersistsIf none of the above resolves the issue:

5. Additional Notes

If you need further assistance with specific steps (e.g., checking the Azure Portal, interpreting logs, or testing routes), please let me know, and I can provide more detailed instructions or analyze any additional details you share (e.g., logs or Azure Gateway settings).

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

79740621

Date: 2025-08-20 04:42:21
Score: 0.5
Natty:
Report link

You can try : AckMode.BATCH with enable-auto-commit: false

This gives you one commit per batch, not per record, and not time-based.

If you want absolute control (e.g., handle errors yourself before retry), you can go with :

AckMode.Manual

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

79740619

Date: 2025-08-20 04:38:21
Score: 0.5
Natty:
Report link

Your real problem is that you are trying to reuse a model for only part of its functionality.

The best (only?) way to do that is to load the original model fully. Then delete/ignore the parts that you don't want from that model.
This can be achieved in multiple ways:

model = models.resnet18(pretrained=False)
new_fc = nn.Linear(512, 10)  # must be the same number of input channels as the original layer
new_fc.weights = model.fc.weights[512, :10]  # if you only want to keep the first 10 output features, if the layer has other parameters (bias, buffer), copy them too
model.fc = new_fc
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: ZeSeb

79740614

Date: 2025-08-20 04:20:17
Score: 1
Natty:
Report link

Python exceptions go to the vhost ErrorLog, but the logging module writes to stderr, which under mod_wsgi is sent to Apache’s main error log (/var/log/httpd/error_log). If you want your logging output in /homedir/error.log, set up a FileHandler in your logging config and point it to that file instead of relying on stderr.

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

79740609

Date: 2025-08-20 04:08:14
Score: 0.5
Natty:
Report link

I assume you use a script or some automated process for these steps. Can you add some waiting time between these calls and try again (e.g., add a delay after the update call)? There are multiple registry transactions happening in the background that could have resulted in a missing definition in the registry, which is the reason you were unable to retrieve the OAS definition.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Chamila Adhikarinayake

79740606

Date: 2025-08-20 03:59:12
Score: 2.5
Natty:
Report link

Had a similar issue. VS Code was simply stuck on creating a new app using Flutter: New Project-Application- then small box in right bottom corner showing it's doing something (but in reality nothing). Task Manager was showing VS Code consuming CPU but no disk or network. I tried the flutter clean, but there wasn't anything to clean since no files were actually created. After trying a lot of other things, simply running VS Code as Administrator solved the issue.

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

79740605

Date: 2025-08-20 03:57:12
Score: 6
Natty: 5.5
Report link

How to detect landscape-left or rigtht in react native?

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): How to
  • Low reputation (1):
Posted by: Prajwal VK

79740603

Date: 2025-08-20 03:54:11
Score: 2.5
Natty:
Report link

In python, we would use the scikit-learn library for such kind of computation: https://scikit-learn.org/stable/modules/generated/sklearn.cluster.k_means.html
Or the scipy library: https://docs.scipy.org/doc/scipy/reference/generated/scipy.cluster.vq.kmeans.html#scipy.cluster.vq.kmeans

However, they only use the euclidean distance metric. The code for scipy seems easier to edit https://github.com/scipy/scipy/blob/e368cd42cee81df86c55d23d78380b83ca320306/scipy/cluster/vq.py#L279 so you could consider updating it and making a pull request to provide that feature to the library.

Otherwise, someone already asked this question on stack overflow a while back: Create clusters using correlation matrix in Python
It is not about the k-means clustering but it is about clustering based on correlation. Maybe you will find it helpful.

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

79740587

Date: 2025-08-20 03:24:06
Score: 4.5
Natty:
Report link

Open Gmail node, go to Settings and set Execute Once to true

enter image description here

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

79740584

Date: 2025-08-20 03:23:06
Score: 2.5
Natty:
Report link

1.Use HttpClient to call the authentication endpoint.

2.Parse the response (usually JSON) to extract the token.

3.Optionally store the token for setting in subsequent requests

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nxra Insights pvt Ltd

79740583

Date: 2025-08-20 03:20:05
Score: 1.5
Natty:
Report link

Good Quality Counterfeit Money

Fake Money Hub  is excellent for buying counterfeit money online. It is very important for you to buy good quality counterfeit money so that it is not detected by detection

machines. Our platform is good for purchasing undetectable counterfeit money. You will

find counterfeit money which completely replicates the original one in terms of Sight,

Touch, Holograms and Watermarks. We provide multiple offers and discounts from time to time and we have no risks involved because anonymity.

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

79740582

Date: 2025-08-20 03:18:03
Score: 3
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: SURAJ AHIRWAR

79740573

Date: 2025-08-20 02:47:56
Score: 1.5
Natty:
Report link

Seeing the same issue as user1967479, We are able to repeat this behaviour on dbatools v2.1.30 with sql server 2022. Separating to bak and trn restore has resolved the issue.

We used the below code to restore the bak and trn files leaving the db in norecovery ready for adding to an availability group. Hope this helps someone else.

# Full backup first
Restore-DbaDatabase -SqlInstance "$TargetServerInstance" `
    -Path (Get-ChildItem "$TargetCopyFolder\$($RefreshDatabase.name)\*.bak" | Sort-Object LastWriteTime).FullName -DatabaseName "$($RefreshDatabase.name)" -WithReplace -NoRecovery -ErrorAction Stop
# Apply transaction logs
Restore-DbaDatabase -SqlInstance "$TargetServerInstance" -Path (Get-ChildItem "$TargetCopyFolder\$($RefreshDatabase.name)\*.trn" | Sort-Object LastWriteTime).FullName -DatabaseName "$($RefreshDatabase.name)" -Recovery -ErrorAction Stop
Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): Seeing the same issue
  • Low reputation (1):
Posted by: Rod West