79739983

Date: 2025-08-19 13:42:21
Score: 3
Natty:
Report link

Yes, there's some support for AMD & Xilinx :

meta-amd & meta-amd-bsp & meta-amd-distro

For athor Xilink layers are availble here

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

79739980

Date: 2025-08-19 13:38:20
Score: 3
Natty:
Report link

Start "psql tool" from the pg admin and run your query there

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

79739978

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

Your packages are already large, so I don't think there's much you can do.

Using venv not as an isolator but as a package wrapper is a good strategy.

Many AI libraries, especially PyTorch, offer different versions. If you're not going to use a GPU for inference in your container, never install the default version of PyTorch.

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

79739970

Date: 2025-08-19 13:32:18
Score: 2
Natty:
Report link

Someone gave me a tip (outside Stack Overflow), that pointed me into the right direction.

Key is this documentation: Diff Tool Order

I added an environment variable DiffEngine_ToolOrder with the value VisualStudio. That solved the problem.

Reasons:
  • Blacklisted phrase (1): this document
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: George

79739964

Date: 2025-08-19 13:29:18
Score: 3
Natty:
Report link

GROUP_CONCAT worked perfectly. Thanks @MatBailie. I'm still a little unclear on the differences between LISTAGG, STRING_AGG, and GROUP_CONCAT but I very much appreciate the help!

Updated code:

SELECT ToolGroup, GROUP_CONCAT(', ', ToolID) AS ActiveTools
FROM DB
GROUP BY ToolGroup
ORDER BY ToolGroup
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @MatBailie
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: wawiti

79739962

Date: 2025-08-19 13:28:17
Score: 3
Natty:
Report link

Rnutime Error Affempt to invoke virtual method void androidx recyclervie w widget recycler view s Adapter notifyDa tasetchanged on a null opject reference FunTap

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

79739951

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

This is how I have done in Jenkins :

node {
    stage('Build') {
        def productType = params.productType

        currentBuild.displayName = "#${env.BUILD_NUMBER} - ${productType}"
        currentBuild.description = "Type: ${productType}"
    }
}

Hopefully this will help someone.

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

79739942

Date: 2025-08-19 13:16:13
Score: 4.5
Natty:
Report link

@Charlie Harding "Instead of @RolesAllowed, I implemented a custom @PermissionsAllowed annotation. I created a PermissionChecker that uses a map to link specific actions (permissions) like menu.Doctors to a list of allowed roles. The system then checks if the logged-in user's roles match any of the allowed roles for that permission. This gives me a more granular, permission-based control rather than just role-based."

Reasons:
  • No code block (0.5):
  • User mentioned (1): @Charlie
  • User mentioned (0): @RolesAllowed
  • User mentioned (0): @PermissionsAllowed
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Dejan

79739921

Date: 2025-08-19 13:00:09
Score: 0.5
Natty:
Report link

I was struggling a bit with the Rectangle brushed line between the header and the rows (with Communitytoolkit DataGrid), and it seems like overriding this brush got rid of it:

<SolidColorBrush x:Key="GridLinesBrush" Color="Transparent"/>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: JohnMalkowich

79739918

Date: 2025-08-19 12:59:09
Score: 2.5
Natty:
Report link

It works fine after some time or Restart the Jenkins.

Downloading plugins in background

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Samir 007

79739913

Date: 2025-08-19 12:52:07
Score: 1.5
Natty:
Report link

I found the issue, It is happening because version mismatch, I am using zod^4.0.17 and @hookform/resolvers^3.9.1. When i update the @hookform/resolvers^5.2.1 (latest) Its working fine.

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

79739908

Date: 2025-08-19 12:48:07
Score: 1.5
Natty:
Report link
SELECT name, COUNT(*) AS tencount
FROM persons
where score = 10
GROUP BY name;
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bending Rodriguez

79739907

Date: 2025-08-19 12:48:06
Score: 5.5
Natty: 5
Report link

https://marketplace.visualstudio.com/items?itemName=BuldiDev.hide-vscode-icon

I created an extension just for this reason, enjoy it

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

79739904

Date: 2025-08-19 12:44:05
Score: 2.5
Natty:
Report link

In ASP.NET Core, the equivalent of HttpContext.IsCustomErrorEnabled is handled via IWebHostEnvironment and UseExceptionHandler or DeveloperExceptionPage, allowing environment-specific error handling and custom error pages.

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

79739902

Date: 2025-08-19 12:43:05
Score: 1
Natty:
Report link

This is neither supportet in SQL Server, nor Oracle. Also what is the advantage of doing this?

you can simply write:

select c_name, count(1) as number from table_one group by c_name

Much more readable, and if your select ever gets changed your Group By still works like a charm.

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

79739897

Date: 2025-08-19 12:38:03
Score: 11.5
Natty: 5.5
Report link

did anyone found a solution for this ?

Thx

Reasons:
  • Blacklisted phrase (1): Thx
  • Blacklisted phrase (2): anyone found
  • RegEx Blacklisted phrase (3): did anyone found a solution
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): did anyone
  • Low reputation (1):
Posted by: ruy

79739894

Date: 2025-08-19 12:34:02
Score: 3
Natty:
Report link

Hello sir ek gaud chla hai jis me mera 15000 lag lag logo ka pass chla gya hai please ap help kera

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

79739887

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

Title: You can’t use input() inside a Flask route (EOFError). Use HTTP request data instead.

The error EOFError('EOF when reading a line') happens because Flask routes run inside a WSGI worker without an interactive terminal (stdin). input() tries to read from stdin, but there’s no TTY in an HTTP request context, so it immediately hits EOF. Even in debug, blocking on input() would stall the worker and break concurrency.

Don’t read from the server console in a route. Get user input from the HTTP request.

Use one of these patterns:

HTML form (POST)

from flask import Flask, request, render_template_string

app = Flask(name)

form_html = """

<form method="post"> <input name="username" placeholder="Username"> <button type="submit">Send</button> </form> """

@app.route("/ask", methods=["GET", "POST"])

def ask():

if request.method == "POST":

username = request.form.get("username")

return f"Hello, {username}!"

return render_template_string(form_html)

JSON API (AJAX/fetch)

from flask import Flask, request, jsonify

app = Flask(name)

@app.route("/api/answer", methods=["POST"])

def api_answer():

data = request.get_json(silent=True) or {}

answer = data.get("answer")

if not answer:

return jsonify(error="missing 'answer'"), 400

return jsonify(ok=True, echoed=answer)

Client:

fetch("/api/answer", {

method: "POST",

headers: {"Content-Type": "application/json"},

body: JSON.stringify({answer: "hello"})

})

Query parameters (GET)

from flask import Flask, request

app = Flask(name)

@app.route("/greet")

def greet():

name = request.args.get("name", "world")

return f"Hello, {name}!"

Call: /greet?name=Alice

Path parameters

from flask import Flask

app = Flask(name)

@app.route("/user/<username>")

def user(username):

return f"Hello, {username}!"

If you truly need interactive, real-time input, use WebSockets (e.g., Flask-SocketIO) to exchange messages with the browser. If you want terminal prompts, build a separate CLI script and don’t call input() inside Flask routes.

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

79739884

Date: 2025-08-19 12:25:00
Score: 0.5
Natty:
Report link

In the Pydantic documentation, the example for customizing the schema completely with the __get_pydantic_core_schema function override uses core_schema.no_info_plain_validator_function.

    def __get_pydantic_core_schema__(
        self, source: type[Any], handler: GetCoreSchemaHandler
    ) -> core_schema.CoreSchema:
        ...
        return core_schema.no_info_plain_validator_function(validate)

In your code:

    @classmethod
    def __get_pydantic_core_schema__(cls, source_type: Any, handler):

        cls._schema = _CustomModel._make_schema()

        fn = core_schema.no_info_plain_validator_function(
            function=cls._validate,
            schema=cls._schema,
        )

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

79739882

Date: 2025-08-19 12:22:00
Score: 0.5
Natty:
Report link

For me the error was: Creating default icons Android ✕ Could not generate launcher icons PathNotFoundException: Cannot open file, path = 'assets/icon/icon.png' (OS Error: The system cannot find the path specified. , errno = 3) Failed to update packages.

I paste the image at the same path that shows in the error "path = 'assets/icon/icon.png'" and paste that path in pubsec.yml file. It works for me

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

79739877

Date: 2025-08-19 12:13:58
Score: 4
Natty: 6.5
Report link

Can I also make each row's output a clickable hyperlink? Right now, it's displaying as plain text URLs that aren't clickable

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can I also
  • Low reputation (1):
Posted by: LsL

79739860

Date: 2025-08-19 11:54:54
Score: 1
Natty:
Report link

For anyone looking for the compose way to do this as of August 2025:

The code has been adapted from @Pisoj your awesome man

also from https://dev.to/boryanz/webviews-download-listener-on-android-how-it-works-5a01

val context = LocalContext.current

val webView = remember(context) {
    WebView(context).apply {
      settings.javaScriptEnabled = true
      this.webViewClient = object : WebViewClient() {
            // you do you
      }
      this.setDownloadListener { url, userAgent, contentDisposition, mimeType, contentLength ->
                val request = DownloadManager.Request(url.toUri())

                // Extract filename from contentDisposition or URL
                val filename = getFileName(contentDisposition, url)
                val cookies = CookieManager.getInstance().getCookie(url.toString());
                request.apply {
                    setTitle(filename)
                    setDescription("Downloading file...")
                    addRequestHeader("cookie", cookies)
                    setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED)
                    setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, filename)
                    setMimeType(mimeType)
                }

                val downloadManager = context.getSystemService(Context.DOWNLOAD_SERVICE ) as DownloadManager
                downloadManager.enqueue(request)

                Toast.makeText(context, "Download started", Toast.LENGTH_SHORT).show()
            }
    }
}


CompositionLocalProvider(LocalContext provides context) {
    Box(
        modifier = Modifier
            .fillMaxSize()
            .verticalScroll(rememberScrollState())
    {
        AndroidView(
            modifier = Modifier,
             factory = { webView }, update = {
                it.loadUrl("https://yourwebsite.com")
             }
       )
    }
}

Notes:

For you to download files via webview in compose you need the DownloadListener interface.

If your files require cookie authentication please ensure you add cookies in download manager otherwise your file will appear to download but on opening will issue corrupted files.

Cheers

Reasons:
  • Blacklisted phrase (1): Cheers
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Pisoj
  • Low reputation (0.5):
Posted by: mello

79739855

Date: 2025-08-19 11:49:52
Score: 4.5
Natty: 4.5
Report link

Is there any way to attemt a removal of big files one by one?
I added old binary files, not removed, that are still in the commit history, but are completely useless.
I would like to delete only those files, and leave old source fode files untouched.

Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): Is there any
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (1):
Posted by: Luca Lista

79739852

Date: 2025-08-19 11:48:51
Score: 4.5
Natty:
Report link

Thanks to @robertklep (in comments):

The answer is: parts = str.split("\n\n");

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @robertklep
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: TJS101

79739851

Date: 2025-08-19 11:47:51
Score: 1
Natty:
Report link

In .NET 6 and later you don’t need to add Microsoft.AspNetCore.Razor manually, because Razor support is included by default through the Razor SDK. You can safely remove the old reference and everything will still work. If you are working with custom Tag Helpers, use Microsoft.AspNetCore.Razor.TagHelpers instead. For more details, check this related thread: Razor SDK in .NET 6.

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

79739845

Date: 2025-08-19 11:41:49
Score: 1.5
Natty:
Report link

Many MacBook M1 users running macOS Monterey have experienced USB audio dropouts due to Core Audio glitches. This usually happens with external audio interfaces, especially when running heavy sessions or multiple USB devices. Updating macOS, resetting the SMC/NVRAM, and trying a different USB hub or cable can often reduce the issue. If the problem continues, it may require professional diagnosis to check whether it’s a system conflict or hardware-related. For expert help with MacBook Repair in Dubai, you can visit Prabhath Mac Care

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sai Tech Digital Marketing

79739844

Date: 2025-08-19 11:40:49
Score: 1
Natty:
Report link

The new version of gitk included with Git 2.51.0 allows hiding these.

Go to Edit -> Preferences, and in the "Refs to hide" box enter prefetch/*.

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

79739833

Date: 2025-08-19 11:23:46
Score: 1
Natty:
Report link

Since (as per the question) "It is not mandatory for this->name to be NUL-terminated." GCC __attribute__ ((nonstring)) in this->name declaration appears to be an appropriate solution.

See also 6.32.1 Common Variable Attributes in the Using the GNU Compiler Collection (GCC).

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

79739831

Date: 2025-08-19 11:22:45
Score: 2.5
Natty:
Report link

Cluster are built for high availability, official docs here

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

79739823

Date: 2025-08-19 11:17:44
Score: 1.5
Natty:
Report link

FWIW SQLite added support for a RETURNING clause in SQLite 3.35.0 (March 2021): https://www.sqlite.org/lang_returning.html

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

79739818

Date: 2025-08-19 11:15:43
Score: 1
Natty:
Report link

If you are using Tailwind v4, this will work for you.

bg-stone-900/75 here 75 is the opacity that will add opacity to this color as 0.75
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nawab Ali

79739817

Date: 2025-08-19 11:14:43
Score: 0.5
Natty:
Report link

At the moment, the high-level gemini_model.generate_content method in the Vertex AI Python SDK doesn’t provide a built-in way to set fps metadata when using Part.from_uri(). However, the underlying Vertex API does support videoMetadata.fps if you construct the request manually or via the REST API. Until then, you'll need to choose between switching to a lower-level approach or waiting for a future SDK update. You can also submit a feature request to Google Cloud.

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

79739815

Date: 2025-08-19 11:12:42
Score: 1.5
Natty:
Report link

Just found the problem. Posting it here since the behavior is kind of interesting and other people might have the same problem.

The problem was the following:
OrderService is an interface - the mocking here was correct. But the implementation OrderServiceImpl was also mocked:

@Mock private OrderService orderService;
@Mock private OrderServiceImpl orderServiceImpl;

The names of the variables in my case were not as obvious as above so I overlooked it. After removing the Mock of the implementation, it works exactly as it should.

Interesting to me that there is no warning by Mockito when you mock an interface and the implementation for it. Also interesting that it sometimes worked and sometimes didn't - that made it really difficult to analyze.

Thanks for the comments which helped me finding the solution.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): have the same problem
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Mathias Bader

79739814

Date: 2025-08-19 11:11:42
Score: 1.5
Natty:
Report link

you just have to go to php.ini file and find this comment

;extension=gd

and than uncomment this line and after you can upload webp images in wordpress.

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

79739810

Date: 2025-08-19 11:08:41
Score: 1.5
Natty:
Report link

Thank you everyone for your responses. After further investigation, I discovered that there was a proxy in front of the application that was altering the query parameters. Once I identified the presence of the proxy, I tested the service both way, with and without proxy.

  1. Without the proxy, everything worked as expected.

  2. But with the proxy, the request failed.

Upon failure above logs appeared in the application logs. We have since adjusted the proxy configuration to ensure it no longer modifies the requests.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Muhammad Haseeb

79739802

Date: 2025-08-19 11:00:40
Score: 0.5
Natty:
Report link

I contacted Samsung about this and they confirmed that IBI data is still collected when the screen is off, but the delivery method changes to save battery. Instead of streaming in real time, the data is gathered with 1 Hz frequency in the background and delivered in batches every few minutes.

If you need to access the data sooner than the system delivers it, the flush() method can force an earlier update, though it may impact battery life.

In my own testing, I found that the IBI data collected when the screen was not on, was inaccurate and for my use case, not usable. This might vary depending on the device but it’s something to consider if you’re relying on high-quality data.

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

79739792

Date: 2025-08-19 10:47:36
Score: 0.5
Natty:
Report link

Convert the AggregateResult to a List<String>:

public class PickListHandler {
    @AuraEnabled
    public static List<String> getLevel1(){
        List<AggregateResult> groupedLevel1 = [SELECT Level_1__c, COUNT(id) FROM Case_Type_Data__c GROUP BY Level_1__c];
        List<String> level1Values = new List<String>(); // New list to store strings
        for(AggregateResult ar : groupedLevel1){
            // Explicitly cast to String
            level1Values.add(String.valueOf(ar.get('Level_1__c'))); 
            System.debug('Level Value Is' + ar.get('Level_1__c')); 
        }
        return level1Values; // Return the list of strings
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Tarun Teja

79739791

Date: 2025-08-19 10:47:36
Score: 1.5
Natty:
Report link

You can refer to this library

npm install react-native-wifi-p2p --save

Even this supports only Android at the moment.

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

79739783

Date: 2025-08-19 10:44:35
Score: 2.5
Natty:
Report link

I had the same issue, and adding payment solved it.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nathos8

79739782

Date: 2025-08-19 10:43:35
Score: 0.5
Natty:
Report link

If necessary, you can specify param: :uuid As stated in the official documentation

resources :threads, param: :uuid
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Viktor Ivliiev

79739780

Date: 2025-08-19 10:37:34
Score: 1.5
Natty:
Report link

Fixed with adding

lib.linkLibC();

to build.zig
and linking sys libraries in cgo

#cgo LDFLAGS: -L./zig1/zig-out/lib -lmyziglib -lsetupapi -ladvapi32 -lole32 -loleaut32 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: vuzzie

79739779

Date: 2025-08-19 10:37:34
Score: 2
Natty:
Report link

I had the same error and this short video helped me resolve the problem.
https://youtu.be/KULpBrncpBM

You need add path in your angular.json, if you have created folders manually and not using public folder for files

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sajjad Haider

79739772

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

library(gtsummary)

library(flextable)

tbl <-

trial |>

tbl_summary(include = c(age, grade, response))

aa <- tbl%>%

as_flex_table()

aa<-aa %>%

width(j = 1:2, width = c(4, 1))

aa<-align(aa, align = "left", part = "all")

save_as_rtf(aa, path = 'aa.rtf')

library(gtsummary)

a<-trial %>%

select(age, grade) %>%

tbl_summary() %>%

as_hux_table()

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

79739770

Date: 2025-08-19 10:24:30
Score: 5
Natty: 4
Report link

olá.. sou um completo iniciante em programação. mas com devido esforço e sagacidade, consegui escrever um bot de vendas automaticas com. entretanto ta faltando a sincronização api mercado pago, e bot telegram, no momento em que o cliente finaliza o pedido. o pix e gerado, copia e cola e imagem qr, o problema é que PUBLIC_BASE_URL precisa ser HTTPS público (Ex.: Render, Railway, Fly.io, VPS com domínio). Vá no painel do Mercado Pago e cadastre a URL do webhook: e eu não sei resolver isso. alguem pode me ajudar? abraços. sou leigo na programação, então ja sabem né

Reasons:
  • Blacklisted phrase (1): então
  • Blacklisted phrase (1): não
  • Blacklisted phrase (2): olá
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Diego Teodoro

79739766

Date: 2025-08-19 10:21:29
Score: 1.5
Natty:
Report link

Thank you very much. Exactly, i tried Maven 3 instead of Maven 4 and it works perfectly !

Apache Maven 3.9.11 (3e54c93a704957b63ee3494413a2b544fd3d825b)
Maven home: C:\Users\HP-EliteBook\apache-maven-3.9.11
Java version: 21.0.7, vendor: Oracle Corporation, runtime: C:\Program Files\Java\jdk-21
Default locale: fr_FR, platform encoding: UTF-8
OS name: "windows 11", version: "10.0", arch: "amd64", family: "windows"
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Amina Jarraya

79739762

Date: 2025-08-19 10:19:28
Score: 6
Natty: 5.5
Report link

Isn't this only valid for SLAVE devices? For the MASTER, isn't it safer to capture MISO at the same edge used to latch MOSI?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Isn't this on
  • Low reputation (1):
Posted by: DoYouHumansExist

79739761

Date: 2025-08-19 10:19:28
Score: 2
Natty:
Report link

With VSCode version 1.103.1 on Windows 11 version : 10.0.26100 N/A build 26100
I try several element, one element help me: start terminal with "Command prompt" then enter the "powershell.exe" command.
That show me, I just need an update of the powershell throught Microsoft Store because I use the "Windows Terminal".
Update everything, reboot and it is OK.

Reasons:
  • Blacklisted phrase (1): help me
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Pierre Jean

79739758

Date: 2025-08-19 10:12:27
Score: 0.5
Natty:
Report link

For anyone having issues with DaisyUI styles not being applied in a Next.js app, starting from Tailwind v4, the tailwind.config.js file is no longer required. You don’t need to register DaisyUI as a plugin there. Instead, you can simply import DaisyUI in your global CSS file.

Add the following line to your globals.css

@import "tailwindcss";

@plugin "daisyui";

Reasons:
  • No code block (0.5):
  • User mentioned (1): @import
  • User mentioned (0): @plugin
  • High reputation (-1):
Posted by: Charlie

79739740

Date: 2025-08-19 09:59:24
Score: 0.5
Natty:
Report link

Gemini has a "thinking budget" parameter.
See here: https://ai.google.dev/gemini-api/docs/thinking

Naturally, if you put the lowest value there, it can make it answer faster.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Asher Stern

79739739

Date: 2025-08-19 09:58:24
Score: 1
Natty:
Report link

📊 Lesson 1: What is Biostatistics?

Understanding the Foundation of Healthcare Data Analysis

← Back to Module Next Lesson →

🎯 What is Biostatistics?

Biostatistics is the application of statistical methods to biological and health-related problems. It involves collecting, analyzing, and interpreting data to solve problems in public health, medicine, and biology. In the Philippines, biostatistics plays a crucial role in understanding disease patterns, evaluating treatment effectiveness, and informing health policy decisions.

Biostatistics helps healthcare professionals and researchers make evidence-based decisions by turning raw health data into meaningful insights that can save lives and improve community health outcomes.

🏥 Examples

Example 1: Dengue Fever Surveillance

The Provincial Health Office of Surigao Del Norte collected data on dengue cases in 2024. They recorded 245 confirmed cases across 9 municipalities, with peak incidence during the rainy season (June-September). The data included patient age, gender, location, date of onset, and hospitalization status.

Show Analysis →

Biostatistical Application: This demonstrates descriptive biostatistics by summarizing disease patterns (when, where, who). The health office used this data to identify high-risk areas, allocate resources for vector control, and predict future outbreaks. Statistical analysis revealed that coastal municipalities had 40% higher incidence rates, leading to targeted interventions.

Example 2: Maternal Mortality Study

A research team at Caraga Regional Hospital studied maternal mortality rates in Surigao Del Norte over 5 years (2019-2023). They compared outcomes between rural and urban deliveries, analyzing factors like prenatal care access, delivery complications, and healthcare facility capacity.

Show Analysis →

Biostatistical Application: This exemplifies inferential biostatistics, using sample data to make conclusions about the broader population. Researchers used hypothesis testing to determine if rural location significantly increased mortality risk, calculated confidence intervals for mortality rates, and identified key risk factors that inform policy recommendations for improving maternal healthcare access.

Example 3: COVID-19 Vaccination Effectiveness

During the COVID-19 pandemic, Surigao Del Norte health authorities tracked vaccination rates and breakthrough infections across different age groups and vaccine brands. They monitored 85,000 fully vaccinated residents and compared infection rates with unvaccinated populations.

Show Analysis →

Biostatistical Application: This represents epidemiological biostatistics, measuring vaccine effectiveness through cohort analysis. Statistical methods calculated relative risk reduction, vaccine efficacy percentages, and adjusted for confounding variables like age and comorbidities. Results showed 89% effectiveness against severe disease, guiding booster shot recommendations and public health messaging.

🎯 When and Why to Use Biostatistics

Use biostatistics when you need to:

Why it's effective: Biostatistics transforms raw health data into actionable insights, reduces uncertainty in medical decision-making, and provides objective evidence for healthcare interventions. It helps distinguish between random variation and meaningful patterns, ensuring that health policies and treatments are based on solid scientific evidence rather than assumptions.

📝 Lesson 1 Assessment

1. What is the primary purpose of biostatistics?

A) To apply statistical methods to biological and health-related problems B) To study only infectious diseases C) To replace clinical judgment in healthcare

2. In the dengue fever example from Surigao Del Norte, what type of biostatistical analysis was primarily used?

A) Inferential statistics B) Descriptive statistics C) Experimental statistics

3. Which of the following is NOT a typical application of biostatistics?

A) Evaluating treatment effectiveness B) Designing clinical trials C) Performing surgical procedures

4. The maternal mortality study in Surigao Del Norte is an example of:

A) Descriptive analysis only B) Inferential biostatistics C) Laboratory research

5. What makes biostatistics effective in healthcare decision-making?

A) It eliminates all uncertainty B) It provides objective evidence and reduces uncertainty C) It replaces the need for clinical expertise

6. In the COVID-19 vaccination study, what was the primary statistical outcome measured?

A) Vaccine side effects B) Vaccine effectiveness against severe disease C) Vaccine production costs

7. Biostatistics in public health surveillance primarily helps to:

A) Treat individual patients B) Monitor disease patterns and trends C) Manufacture medications

8. The dengue study found that coastal municipalities had 40% higher incidence rates. This finding is an example of:

A) Random variation B) A meaningful pattern requiring intervention C) Measurement error

9. Which characteristic is essential for effective biostatistical analysis?

A) Using only small sample sizes B) Basing conclusions on objective data analysis C) Ignoring confounding variables

10. The ultimate goal of biostatistics in Philippine healthcare is to:

A) Generate research publications B) Improve community health outcomes through evidence-based decisions C) Replace traditional medicine practices

Submit Assessment

← Back to Module Next Lesson →

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

79739736

Date: 2025-08-19 09:57:23
Score: 1
Natty:
Report link

Can't say this code 100% standard complaint, but it definitely exposes some bugs from every of these three compilers. Here's links to bug reports with minimized examples created from initial example, if interested:

  1. MSVC
  2. Clang
  3. GCC

With regard to "fixes", MSVC already works pretty much. And @Jarod42 able to make Clang happy (Godbolt).

Here's working code for GCC (Godbolt):

#include <cstddef>
#include <concepts>
#include <utility>
#include <array>
#include <algorithm>

using Index = std::size_t;
using Alignment = std::size_t;
struct Key {
  Index old;
  Alignment a;
};

template<::Key k, typename T> struct Elem {};
template<typename ...Elems> struct Map : Elems... {};

template<typename ...Ts> struct Tuple {};
struct alignas(2) s_1 {};
struct alignas(2) s_2 {};
struct alignas(2) s_3 {};
struct alignas(2) s_4 {};
using T1 = Tuple<char, short, s_1, s_2, s_3, s_4, int, double>;




template<::Key...> struct Key_seq {};
template<auto array, auto len>
using Make_key_seq = decltype([]<auto ...Is>(std::index_sequence<Is...>&&){
  return ::Key_seq<array[Is]...>{};
}(std::make_index_sequence<len>{}));




template<typename ...Ts_>
consteval auto sort_tuple(::Tuple<Ts_...>&& tuple)
{

  constexpr auto size = []<typename ...Ts>(::Tuple<Ts...>&){
    return sizeof...(Ts);
  }(tuple);


  constexpr auto unsorted = []<
    typename ...Ts,
    auto ...Is
  >(::Tuple<Ts...>&, std::index_sequence<Is...>&&){
    return std::array<::Key, size>{::Key{Is, alignof(Ts)}...};
  }(tuple, std::make_index_sequence<size>{});


  constexpr auto sorted = [](auto unsorted){
    std::sort(
      unsorted.begin(), unsorted.end(),
      [](const auto& lhs, const auto& rhs){
        return lhs.a > rhs.a;
      }
    );
    return unsorted;
  }(unsorted);

  // changed this part, that now uses 'Make_key_seq'
  using Sorted = decltype([]<auto ...Keys, auto ...Is>(
    ::Key_seq<Keys...>&&,
    std::index_sequence<Is...>&&
  ){

    // needed to move it inside here, otherwise error
    using Unsorted = decltype([]<typename ...Ts>(::Tuple<Ts...>&){
      return ::Map<
        ::Elem<::Key{Is, alignof(Ts)}, Ts>...
      >{};
    }(tuple));

    return ::Tuple<
      decltype([]<::Key k, typename T>(
        [[maybe_unused]] ::Elem<k, T>&& deduced_by_comp
      ){
        return T{};
      }.template operator()<Keys>(Unsorted{}))...
    >{};

  }(::Make_key_seq<sorted, size>{}, std::make_index_sequence<size>{}));


  return Sorted{};
};
using Sorted = decltype(sort_tuple(T1{}));

using Correct = Tuple<double, int, short, s_1, s_2, s_3, s_4, char>;
static_assert(std::same_as<Correct, Sorted>);

auto main() -> int;
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Jarod42
  • Self-answer (0.5):
  • Starts with a question (0.5): Can't
  • Low reputation (0.5):
Posted by: Sneed Deens

79739730

Date: 2025-08-19 09:50:21
Score: 2.5
Natty:
Report link

Android Camera – A Quick Look

Android smartphones feature some of the most advanced and flexible camera systems available today. With high-resolution sensors, AI-enhanced photography, night mode, ultra-wide and periscope zoom lenses, Android offers a complete mobile photography experience. Whether you're capturing landscapes or portraits, Android cameras deliver stunning results.

Want to explore more about Android cameras and mobile tech? Visit my website: techwithankur.in — your go-to source for the latest updates, reviews, and tips. Learn more at techwithankur.in

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

79739719

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

According to @Julian from this answer:

It seems that Drawables cannot be used with BindableProperty, at least it doesn't have any effect, the value of the property doesn't get updated.

The workaround suggested by @Julian is to put the BindableProperty into a class derived from GraphicsView instead of the one implementing IDrawable.

I have adapted my code to the answer he gave there, and I'm posting it in its entirety in case someone is looking for a stripped down example of how to do this.

First, here is the the code for GraphView, incorporating the BindableProperty:

namespace TestNET8.Drawables;

public partial class GraphView : GraphicsView
{
    public float[] Data
    {
        get => (float[])GetValue(DataProperty);
        set => SetValue(DataProperty, value);
    }

    public static readonly BindableProperty DataProperty = BindableProperty.Create(nameof(Data), typeof(float[]), typeof(GraphView), propertyChanged: DataPropertyChanged);

    private static void DataPropertyChanged(BindableObject bindable, object oldValue, object newValue)
    {
        if (bindable is not GraphView { Drawable: GraphDrawable drawable } view)
        {
            return;
        }

        drawable.Data = (float[])newValue;
        view.Invalidate();
    }
}

Then the Drawable just has a public property for the data and the Draw function:

namespace TestNET8.Drawables; 

public partial class GraphDrawable : IDrawable
{
    public float[] Data { get; set; } = new float[100];

    public void Draw(ICanvas canvas, RectF dirtyRect)
    {
        // Creates a time series plot from the data values. Replace with whatever makes sense
        if (Data != null && Data.Length > 0)
        {
            for (int i = 0; i < Data.Length - 1; i++)
            {
                canvas.DrawLine(5 * i, 100 * Data[i], 5 * (i + 1), 100 * Data[i + 1]);
            }
        }
    }
}

GraphView calls Invalidate(), so there's no need to call it from the code-behind:

using TestNET8.ViewModels;

namespace TestNET8
{
    public partial class MainPage : ContentPage
    {
        public MainPage(MainViewModel vm)
        {
            InitializeComponent();
            BindingContext = vm;
        }
    }
}

In the view model, when DataHolder is updated following a button click, the [ObservableProperty] (from the CommunityToolkit.Mvvm) automatically triggers the OnPropertyChanged event:

using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Input;

namespace TestNET8.ViewModels;

public partial class MainViewModel : ObservableObject
{
    [ObservableProperty]
    float[] dataHolder = new float[100];

    [RelayCommand]
    public void Refresh()
    {
        // Generates an array of random values when the button is clicked
        var rand = new Random();
        float[] temp = new float[100];
        for (int i = 0; i < 100; i++)
        {
            temp[i] = rand.NextSingle();
        }
        DataHolder = temp;
    }
}

Finally, GraphView.Data is bound to ViewModel.DataHolder (and the button click is bound to the Refresh command) in the xaml:

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:viewmodel="clr-namespace:TestNET8.ViewModels"
             xmlns:drawables="clr-namespace:TestNET8.Drawables"
             x:DataType="viewmodel:MainViewModel"
             x:Class="TestNET8.MainPage">

    <VerticalStackLayout>
        <drawables:GraphView
            x:Name="GraphView"
            HeightRequest="200"
            WidthRequest="500"
            Data="{Binding DataHolder}">
            <drawables:GraphView.Drawable>
                <drawables:GraphDrawable/>
            </drawables:GraphView.Drawable>
        </drawables:GraphView>
        <Button 
            HeightRequest="40"
            WidthRequest="150"
            Text="Refresh"
            Command="{Binding RefreshCommand}"/>
    </VerticalStackLayout>
    
</ContentPage>
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Julian
  • User mentioned (0): @Julian
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: aardvark2012

79739714

Date: 2025-08-19 09:41:19
Score: 0.5
Natty:
Report link

so jsonschema needs in python also types-jsonschema to make IDE's and mypy checkers happy.

unfortunatetly that is not part of what uv tree shows.

so the solution is have major versions for both packages in sync

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: user3732793

79739713

Date: 2025-08-19 09:40:19
Score: 4.5
Natty: 5
Report link

Các bạn có thể tham khảo bài viết String REPLACE() trong UPDATE MySQL của bên mình https://webmoi.vn/string-replace-trong-update-mysql/

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bùi Tấn Lực

79739710

Date: 2025-08-19 09:39:18
Score: 0.5
Natty:
Report link

Yes it will be rolled back. Unless you set it up to not to.

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

79739707

Date: 2025-08-19 09:37:18
Score: 1
Natty:
Report link
provider "kubernetes" {
  host                   = "https://<MASTER_NODE_IP>:6443"
  client_certificate     = file("~/.kube/client-cert.pem")
  client_key             = file("~/.kube/client-key.pem")
  cluster_ca_certificate = file("~/.kube/cluster-ca-cert.pem")
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ranjesh Mishra

79739705

Date: 2025-08-19 09:35:14
Score: 6.5
Natty:
Report link

when I try to run my C# program in VS Code I get the following message. Please help me.

Cannot activate the 'C#' extension because it depends on an unknown 'ms-dotnettools.vscode-dotnet-runtime' extension.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): when I
  • Low reputation (1):
Posted by: kourosh akbari

79739702

Date: 2025-08-19 09:32:13
Score: 4
Natty:
Report link

<div class="card-body flex-grow-1"></div>

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: M Reza Muktasib

79739686

Date: 2025-08-19 09:19:10
Score: 1.5
Natty:
Report link

Thanks to *all* of you for your selfless help ... the reason I thought this community existed. I love how one of you took a cheap shot, without taking time to use their atrophied brain, and then almost everyone else piled on. Ah, humanity at its finest. Reminds me of the 1940s.

Thankfully I got intelligent help elsewhere, so I'll crawl back into the hole I've occupied since the last editor was run out of town, and stay there. Keeping with what seems to be the new ethos around here I'll keep the solution to myself.

Clearly this place and all of you are a waste of time, space and oxygen. I'll miss all my badges, flair and other bling.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: CraigH mourns Monica

79739678

Date: 2025-08-19 09:09:08
Score: 1.5
Natty:
Report link

You can remove the <startup> / <supportedRuntime> section from app.config, but it's strongly discouraged, as it causes unpredictable runtime behavior and doesn’t actually conceal your target framework from attackers.

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

79739670

Date: 2025-08-19 09:01:06
Score: 0.5
Natty:
Report link

You can either disable it by setting the style of a single button like this:

style={{textTransform: 'none'}}

Or you can disable to all buttons in your theme like this:

const theme = createTheme({
  typography: {
    allVariants: { textTransform: "none" },
  },
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kristóf Göncző

79739662

Date: 2025-08-19 08:54:03
Score: 2
Natty:
Report link

The problem was the scenario definition indentation. Original steps has tabulation spaces at examples.
I changed the scenario in this way and works successfully (feature file generation and import cucumber results):
(I am using language:es localisation)

enter image description here

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

79739658

Date: 2025-08-19 08:51:03
Score: 3
Natty:
Report link

The documentation (including example and pitfalls) for this topic is here:

https://docs.timefold.ai/timefold-solver/latest/using-timefold-solver/modeling-planning-problems#valueRangeProviderOnPlanningEntity

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

79739646

Date: 2025-08-19 08:34:59
Score: 0.5
Natty:
Report link

:Create a cinematic digital poster for a tiktok user.In the background, clearly display the uploaded profile screenshot without binding or blurring any part 414

The image should remain sharp and readable, showing every detail that naturally appears in the profile (such as stats, icone, texture, badges, number, tags, buttons) and must be fully visible and understand to the viewer. in the foreground, place the upload character image standing in a proud, victoriespose--white both arms stretched outward (T-pose) The character's head should be titled slightly upward, facing the sky white a heroic and thankful experience. include a glowing blue sword by his side and his pet standing nearby. Add dramatic rain, flying money cinematic glow and soft shadows to enhance the character and profile are clearly

visible and not overlappingconfusinghly.In the centres of and not overaly bold, glowing, 3D gaming style text:YOUR NAME"--using a bleeding black- read blood effect, where blood drops from the text downward in a floating gradient style

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

79739645

Date: 2025-08-19 08:33:58
Score: 4.5
Natty:
Report link

Im getting the same issue
getReactModuleInfoProvider' overrides nothing FAILURE: Build failed with an exception. * What went wrong:

Fix : Change to this version “react-native-screens": "^2.18.1"

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): getting the same issue
  • Low reputation (1):
Posted by: Gowtham C

79739644

Date: 2025-08-19 08:33:58
Score: 1
Natty:
Report link

int* const Foo(); is the same as int* Foo();.

The const here would apply to the pointer itself, but since the function returns it by value (a prvalue), there’s no object for that const to bind to. The temporary pointer can’t actually be made const, so the qualifier is ignored.

If you want the pointed-to value to be const, you’d write:

const int* Foo();

but int* const Foo(); doesn’t add anything over just int* Foo();.

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

79739643

Date: 2025-08-19 08:33:58
Score: 1.5
Natty:
Report link

If you are using Laravel 11 or higher, providers are no longer registered in config/app.php under the providers section. Instead, you must register them in bootstrap/providers.php.

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

79739642

Date: 2025-08-19 08:32:58
Score: 1.5
Natty:
Report link

push is future method please add then method ....

 SystemChrome.setPreferredOrientations([
      DeviceOrientation.portraitUp,
    ]);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ao sun

79739639

Date: 2025-08-19 08:31:57
Score: 2
Natty:
Report link

sudo systemsetup -settimezone Europe/Kyiv
in terminal helped for me(MacBook Pro 2,6 GHz 6-Core Intel Core i7 16 GB 2667 MHz DDR4).

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

79739638

Date: 2025-08-19 08:31:57
Score: 2.5
Natty:
Report link

in the Xcode 26 Beta 4 it changes again, now is in the bottom bar, next to the "Hide view tree" button
Snapshot

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

79739636

Date: 2025-08-19 08:30:57
Score: 0.5
Natty:
Report link

In the current version of certbot (v4.2.0) you can also set the path to the nginx binary in your domain config file:

[renewalparams]
account = <your account id>
authenticator = nginx
installer = nginx

... other configuration

nginx_ctl = <your full path to the nginx binary, eg. /usr/sbin/nginx >
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Joost

79739626

Date: 2025-08-19 08:18:54
Score: 2.5
Natty:
Report link
  1. For quick diagrams: ProcessOn (no coding).You can directly create a tree diagram.

  2. For integration into your C# application: use WPF/WinForms diagramming libraries.

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

79739625

Date: 2025-08-19 08:17:53
Score: 2.5
Natty:
Report link

For interactive reporting workflows, consider Inforiver’s commenting solution. It supports full data-level comments—including editing, deleting, threading—and respects slicer context, making collaboration much more practical inside Power BI.

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

79739616

Date: 2025-08-19 08:08:52
Score: 1
Natty:
Report link

A slightly easier to read/condensed version of earlier replies:

To set a default language in Visual Studio Code:

  1. Open settings with CTRL + ,

  2. Search for "default language"

  3. Type "html" or "powershell" or whatever language you want.

Visual Studio Code will then add the line ""files.defaultLanguage": "YourSelectedLanguage"" to your settings.json file.

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

79739613

Date: 2025-08-19 08:04:50
Score: 4.5
Natty:
Report link

@Riesmeier, can you be more specific? I am encountering some issues while using the same DCMTK module. I have a multiframe image that I want to display. Before rendering each frame I pass to DicomImage::setWindow() the values corresponding to DCM_WindowCenter and DCM_WindowWidth (the "tag path" to them is PerFunctionalGroupsSequence -> Item X -> FrameVOILUTSequence -> Item X -> WindowCenter/WindowWidth, where X is the frame number).

This way, my program displays the image darker (lower contrast and lower luminosity) than it is displayed by other softwares (DICOMscope, Weasis), so I believe something is wrong with my implementation.

I tried another approach: I used the window center and window width corresponding to the first frame for all frames in the image. This way, I see no difference in luminosity and contrast to how the image is displayed in the above mentioned viewers. However, I think this is technically wrong.

What would you do to display a multiframe image where each frame has its own DCM_WindowCenter and DCM_WindowWidth ?

Does DicomImage::setWindow() expect raw values corresponding to DICOM tags or do I have to preprocess DCM_WindowCenter and DCM_WindowWidth before feeding them to DicomImage::setWindow()? If yes, what kind of preprocessing?

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Riesmeier
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Laurentiu

79739607

Date: 2025-08-19 07:55:48
Score: 1.5
Natty:
Report link

POST_SUBMIT is a little too late. Use PRE_SUBMIT instead. At post, the array has already been built, this is why you won't see the expected data at $data['client'].

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

79739593

Date: 2025-08-19 07:40:45
Score: 1
Natty:
Report link

To run constantly

first check what value is set:

run in your browser

yourUrlJenkins/manage/script

put and run



org.jenkinsci.plugins.durabletask.BourneShellScript.HEARTBEAT_CHECK_INTERVAL

after

Create a init.groovy.d folder in Jenkins home and place a groovy file in it for example HEARTBEAT_CHECK_INTERVAL.groovy

add in your file

System.setProperty("org.jenkinsci.plugins.durabletask.BourneShellScript.HEARTBEAT_CHECK_INTERVAL", "300")

restart Jenkins:


yourUrlJenkins/safeRestart

push "yes"

after, you should check what value is set again and voila:

enter image description here

enter image description here

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

79739581

Date: 2025-08-19 07:28:42
Score: 3
Natty:
Report link

First answer only is the best and only option.
and to do it faster you can quicky go to all the changed files.

enter image description here

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

79739579

Date: 2025-08-19 07:24:41
Score: 5
Natty: 5
Report link

This is possible with GKE now: https://cloud.google.com/kubernetes-engine/docs/how-to/node-system-config#sysctl-options

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

79739578

Date: 2025-08-19 07:24:41
Score: 2
Natty:
Report link

A Queue Management System (QMS) is a tool that helps organize and control waiting lines. Instead of standing in long physical queues, customers get a digital ticket or join a virtual line through kiosks, apps, or online booking. Staff can then manage the flow, call the next person in order, and track waiting times. It’s widely used in banks, hospitals, and retail to reduce crowding and improve service efficiency.

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

79739575

Date: 2025-08-19 07:20:39
Score: 1
Natty:
Report link

Answer:

The problem is exactly what you identified: when you hit /login directly, the server looks for a file named /dist/login and returns 404 before React Router ever runs.

The fix is to make Express always serve index.html for any non-API route. That way, React Router in the browser takes over routing.

Here’s the typical setup:

import express from 'express'
import path from 'path'

const app = express()

// Serve static files from Vite build output
app.use(express.static(path.join(__dirname, 'dist')))

// API routes go here, *before* the catch-all
app.use('/api', require('./api'))

// Catch-all: send index.html for any other route
app.get('*', (req, res) => {
  res.sendFile(path.join(__dirname, 'dist', 'index.html'))
})

app.listen(3000, () => {
  console.log('Server running on http://localhost:3000')
})

Important things to check:

  1. Correct dist path If you’re using Vite, the build output defaults to dist/. In Express (running from build or dist folder), you might need:

    path.join(__dirname, '../dist')
    

    instead of just __dirname/dist. Use console.log(path.join(...)) to verify.

  2. Order matters

    • app.use(express.static(...)) → serves real files (CSS, JS, images).
    • app.get('*', ...) must come after your API routes, otherwise it will catch those too.
  3. Windows/IIS hosting If you’re behind IIS, make sure your reverse proxy points all unknown paths to Express and doesn’t intercept /login. Otherwise IIS itself might be returning the 404.


TL;DR

With that setup, https://site:port/login will load index.html, React Router will boot, and the login page will render just like locally.


✅ This is the same pattern used by CRA, Vite, Next.js custom servers, etc.


Do you want me to also show you how to configure the Vite build output (vite.config.ts) to make sure Express finds the files correctly in your dist folder?

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

79739542

Date: 2025-08-19 07:04:34
Score: 3
Natty:
Report link

My recommendation is ProcessOn, a professional mind mapping tool. One of its functions is to demonstrate and broadcast the completed mind map. I use it when reporting to my superiors.

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

79739530

Date: 2025-08-19 06:47:30
Score: 2.5
Natty:
Report link

For macOS users: https://dylancastillo.co/til/fixing-python-not-found-error-in-macos.html

Just add the following line to your .zshrc file:

export PATH="$(brew --prefix python)/libexec/bin:$PATH"
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Daniel Fernandes

79739528

Date: 2025-08-19 06:42:30
Score: 1
Natty:
Report link

I had the same issue, but the culprit was not auth0, or useNavigate, but it was useEffect, my useEffect was running, before the auth0 can catch the code and state and was redirecting, to the same page which was removing the query params from the URL and the auth0 was unable to authenticate the user.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Krish

79739526

Date: 2025-08-19 06:41:29
Score: 1
Natty:
Report link

I faced your issue in WSO2AM 4.5.0 and I don't know the root cause to be honest, but it seems it is related to OpenAPI (swagger) versions. one workaround is to get the "swagger.json" file and change the version to "3.1.0" (for some reasons it doesn't work with versions like "3.0.4" ) and upload it manually.

Another issue that I encountered is when the swagger file is big, the engine loads it but during revision it fails. As I deployed the same file in my production (which has more resource and is connected to an oracle DB) it was fine.

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

79739523

Date: 2025-08-19 06:40:28
Score: 3.5
Natty:
Report link

I also face the same issue check if you add this dependency or not first and after adding you are good to go.

implementation("io.coil-kt.coil3:coil-compose:3.3.0")
implementation("io.coil-kt.coil3:coil-network-okhttp:3.3.0")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I also face the same issue
  • Low reputation (1):
Posted by: sworup kc

79739511

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

For me it also works to delete the precompiled header files. In your case 'Release\pluginsa.pch'.

Reasons:
  • Whitelisted phrase (-1): In your case
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Fabian

79739507

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

You can't print the values from 1 to 31 is that they are non printable characters, for example NUL, SOH, BS.
Here is a ASCII chart for your reference ASCII Chart for C
Use this for loop

for( int i = 32; i<127; i++){
        printf("%c ", i);

This prints all the printable ASCII character separated by space.

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

79739497

Date: 2025-08-19 06:00:20
Score: 2.5
Natty:
Report link

And here we are in 2025 and OpenSSH for Windows still has no way to programmatically provide a password. We all get that keys are more secure, but what happens if you need to connect to 25,000 servers with a script to setup those keys? You have to type the password 25,000 times with OpenSSH's ssh.exe. Still a terrible programming choice.

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

79739482

Date: 2025-08-19 05:34:15
Score: 1.5
Natty:
Report link
tracker = cv2.TrackerCSRT().create(params) is not setting the updated parameters into the tracker
tracker.Params() returns the default values, not the updated ones
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: puneeth bc

79739479

Date: 2025-08-19 05:30:14
Score: 1.5
Natty:
Report link

This issue got fixed using @kafkajs/zstd instead of zstd-codec

const compressionParams = { level: 1 };
const decompressionParams = {}
CompressionCodecs[CompressionTypes.ZSTD] = ZstdCodec(compressionParams, decompressionParams)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: prashanthh

79739476

Date: 2025-08-19 05:24:13
Score: 3
Natty:
Report link

Considering that OpenAI resources are all out of the box ready with a rest API you can create a simple logic app that take the common alert schema, break out the information from a query you believe important for troubleshooting.

You can then send that extracted data from the Common Alert Schema JSON (In my testing I used the entire common alert schema JSON) and send it to the OpenAI model that you have prepared for the analysis of Alerts to help you devise a plan for resolving the issue.

In my case I created a lab with an alert that triggers on a CPU metric going above 0.1 percent.
This alert triggers an action group that send the common alert schema to a logic app.

I parse the Alert Schema and send it to the OpenAI Model that I have created for this purpose:
Image of my HTTP Body to prompt my OpenAI Alert Processing model

Once I get the response back, I parse the JSON and extract just the response message body.choices.message.content then I email that to myself for testing purposes.

At this point its just a blob of text because I have not done any formatting for the test.

However, I like that it was able to determine with ease that my alert is simply too sensitive:

Bullet Point Recommendation from my AI Model for how to resolve my alert that triggers at 0.1% CPU Utilization.

Please let me know if you have question regarding my method, I am happy to dive further into it.

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

79739474

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

I might be wrong, but i believe Safari doesn't support programmatic haptic feedback through JavaScript. The Web Vibration API (which could theoretically trigger haptics) isn't supported in Safari on iOS. Although, they are some other options like Native iOS app with proper haptic APIs/ PWA installed to home screen (still limited) and Audio feedback as an alternative. I hope this serves you well. Good luck.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rosa AI-SYMD

79739470

Date: 2025-08-19 05:13:10
Score: 0.5
Natty:
Report link

Not exactly a fix, but I ended up uninstalling the Microsoft C/C++ extension and installing the clangd extension. Now, not only is the formatting instant, but also the code completion suggestions and the go-to-definitions are way better and faster.

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

79739467

Date: 2025-08-19 05:10:09
Score: 1
Natty:
Report link
<script lang="ts" setup>
import { useRouter } from 'vue-router'
const router = useRouter()
const currentRouteName = router.currentRoute.value.fullPath
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: kkasp

79739461

Date: 2025-08-19 05:01:07
Score: 0.5
Natty:
Report link

Seems like you have a default CSP applied, one very strict with just "default-src 'none'". You need to locate this one and turn it off. All content needs to pass all policies, and this one blocks everything.

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

79739460

Date: 2025-08-19 05:01:07
Score: 3
Natty:
Report link

I'd want to offer my heartfelt appreciation for your kindness and smart advise. I am deeply grateful for the great influence you have made on my life. Skribbl io is a free multiplayer drawing

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

79739456

Date: 2025-08-19 04:52:05
Score: 3
Natty:
Report link

In my case, the problem was using '<a href="#" '. If I use this, scrolling doesn't work.

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

79739455

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

श्रीजी बस यात्रा प्रस्तुत करती है — पिंडदान एवं तीर्थ दर्शन यात्रा।

सात से आठ दिवसीय पुण्य यात्रा, एयर सस्पेंशन स्लीपर बस द्वारा।

यात्रा प्रारंभ — 11 सितम्बर से। शुल्क मात्र आठ हज़ार पाँच सौ रुपये।

इस यात्रा की विशेषताएँ:

शुद्ध शाकाहारी भोजन एवं चाय-नाश्ता, वातानुकूलित बस, अनुभवी यात्रा संचालन टीम,

समस्त धार्मिक पूजन व तर्पण की व्यवस्था, और सम्पूर्ण यात्रा के दौरान पूर्ण सहयोग एवं मार्गदर्शन।

प्रमुख दर्शन और पूजन स्थल:

प्रयागराज, अयोध्या, काशी, गया जी, बोधगया, विंध्यवासिनी देवी, चित्रकूट और मैहर माता।

बुकिंग एवं जानकारी के लिए संपर्क करें — 9300102652।

सीटें सीमित हैं, अतः शीघ्र पंजीकरण करें।

"""

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • No latin characters (2.5):
  • Low reputation (1):
Posted by: Gajendra Malviya