79793417

Date: 2025-10-17 20:38:12
Score: 2
Natty:
Report link

Yes, it does. When you define an entity some fields can be null or empty. Suppose you design an model contact name field which can be null. The Django Template System (DTS) will render it as None. Therefore, you could provide a more adequate display value: a default_if_none:"--", for example.

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

79793413

Date: 2025-10-17 20:29:10
Score: 1
Natty:
Report link

No clue why CopyFromRecordset wouldn't dump the data for these 2 systems but with the help from @frankball, copying the data into a variant, then looping through each value in the variant and writing it to a cell got it to work. Since I'm writing the field names in the first row, need to skip down to second row when writing the array. Final code:

Public Sub SendRecordsettoExcel(Rs As DAO.Recordset)
Dim intMaxCol As Integer
Dim intMaxRow As Integer

Dim objXL As Object
Dim objWkb As Object
Dim objSht As Object
Dim vaTmp() As String
Dim x, y As Long
Dim records As Variant
Dim FineColumnLetter As String
Dim BirthYearColumnLetter As String

On Error GoTo ErrorHandler

    If Not Rs.EOF Or Not Rs.BOF Then

        intMaxCol = Rs.Fields.Count
        If Rs.recordCount > 0 Then
          Rs.MoveLast
          Rs.MoveFirst
          intMaxRow = Rs.recordCount + 1
          Set objXL = CreateObject("Excel.Application")
          With objXL
            '.Visible = True
            Set objWkb = .Workbooks.Add
            Set objSht = objWkb.Worksheets(1)

            ' get the column headers
            ReDim vaTmp(Rs.Fields.Count)
            For x = 0 To Rs.Fields.Count - 1
                vaTmp(x) = Rs.Fields(x).Name
                If (Rs.Fields(x).Name = "Fine") Then
                    FineColumnLetter = Chr(x + 65)
                End If
                If (Rs.Fields(x).Name = "BirthYear") Then
                    BirthYearColumnLetter = Chr(x + 65)
                End If
            Next
            objSht.cells(1, 1).Resize(1, Rs.Fields.Count) = vaTmp

            Rs.MoveFirst
            records = Rs.GetRows(intMaxRow)
            For x = 0 To Rs.recordCount - 1
                For y = 0 To Rs.Fields.Count - 1
                    objSht.cells(x + 2, y + 1).Value = records(y, x)
                Next
            Next
          End With
        End If
    End If

ErrorHandler:

    Set objWkb = Nothing
    Set objSht = Nothing
    Set objXL = Nothing
End Sub
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @frankball
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: sleepybadger

79793401

Date: 2025-10-17 19:51:02
Score: 3.5
Natty:
Report link

Oh. Propably didn't check one more important think - whether my notebook is connected to the compute :) After switching from "Connect" to my Cluster it ran. I used unity catalog connection
enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user31706609

79793389

Date: 2025-10-17 19:37:58
Score: 4
Natty: 5
Report link

Top Thanks for the code it finally works fine :)

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Marc

79793388

Date: 2025-10-17 19:33:57
Score: 1
Natty:
Report link

I had same error in headless mode:

selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable
         (Session info: chrome=141.0.7390.108);

✅ I had solve it by just adding argument: --start-maximized to chrome_options.

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

79793384

Date: 2025-10-17 19:21:54
Score: 3
Natty:
Report link

That is because you wrapped in a try/catch. So the before_insert didn't understand that it should abort. raise some Exception and lets see.

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

79793376

Date: 2025-10-17 19:05:50
Score: 3
Natty:
Report link

Why I Switched Back to jQuery in 2025 (And Why You’re Wrong for Not Doing It)

https://medium.com/@hhartleyjs/why-i-switched-back-to-jquery-in-2024-and-why-youre-wrong-for-not-doing-it-f247b9830fcb

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Starts with a question (0.5): Why I
  • High reputation (-1):
Posted by: Shawn

79793360

Date: 2025-10-17 18:47:46
Score: 1.5
Natty:
Report link

I've wrote a Android in App in which I want to Integrate a Chat via XMPP. I've logged in Facebook with permission for XMPPLogin. But when I want to login in Facebook from XMPP I receive this XML Response:

RCV  (1095775528): <failure xmlns='urn:ietf:params:xml:ns:xmpp-sasl'><not-authorized/></failure></stream:stream>

causing this Error:

SASL authentication failed using mechanism X-FACEBOOK-PLATFORM: 
at org.jivesoftware.smack.SASLAuthentication.authenticate(SASLAuthentication.java:341)
at org.jivesoftware.smack.XMPPConnection.login(XMPPConnection.java:242)
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Theresa Nuam

79793354

Date: 2025-10-17 18:38:43
Score: 4.5
Natty:
Report link

Look at the migration guide info: https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/client-configuration.html#client-configuration-http

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

79793346

Date: 2025-10-17 18:30:41
Score: 8.5 🚩
Natty: 5
Report link

I hope you’re doing well. I’m currently encountering the same issue with Angular 17 and AngularFire when running unit tests using Jasmine + Karma. The error message says: “AngularFireModule is not provided in AppModule”, even though I’m properly configuring the Firebase providers inside the test setup.

I was wondering if you eventually found a reliable solution or workaround for this? Any insights or updated configuration examples for Angular 17 would be greatly appreciated. Thanks in advance for your help!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (2): was wondering
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Laura

79793345

Date: 2025-10-17 18:30:41
Score: 3
Natty:
Report link

Follow-up on Firebase Realtime Database Leaderboard Solution :

Hi @Frank, thanks for the answer! 🙏

I was able to solve it by updating the query:


var task = reference.Child("users")  
    .OrderByChild("levelContainer/highestScore")  
    .StartAt(currentUserScore, userId)  
    .GetValueAsync();

What I have achieved :

Follow-up Questions :

  1. Would Firestore be a better choice for this type of use case where I need to query/search over a large list of users?
  2. I’ve set the rule as you mentioned — but does setting .indexOn also sort the data in the Firebase console UI? (Because it didn’t appear sorted there.)
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (0.5): 🙏
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Frank
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Oozeer

79793343

Date: 2025-10-17 18:22:39
Score: 4.5
Natty:
Report link

My tag is Gael_et_co sry about that ^^

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

79793340

Date: 2025-10-17 18:20:38
Score: 0.5
Natty:
Report link

I know this was from a while ago but this fixed the issue I was having of the wrong schema being used when bringing an existing report from one environment to another, which there doesn't seem to be a clear answer for anywhere but here. This was an ideal solution because it removed the schema from the query, which allows us to easily move the report around environments.

For your question, I'm sure you've already solved it but you can duplicate your error by copying your SQL query into a standard SQL Developer interface which will tell you where the problem is more specifically. I'm guessing you may be missing a synonym or something.

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

79793338

Date: 2025-10-17 18:19:38
Score: 0.5
Natty:
Report link

I hope that you have resolved your issue by now.

Please note that rbibutils doesn't depend on any R packages outside base R. In fact, it is pure C within base R. The fact that in the log provided by you, stuff is loaded from RcppEigen and StanHeaders (with which rbibutils has nothing to do) suggests that on your system some compiler related paths are corrupted to look into places where they should not.

You certainly don't need to change any R settings despite what some answers here suggest. Of course, if you can install on your system a pre-prepared binary of rbibutils that will do (there are such binaries for the major Linux distributions).

As the author of rbibutils, I am always ready to consider bug reports, though this doesn't seem to be the case.

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

79793328

Date: 2025-10-17 18:04:34
Score: 2
Natty:
Report link

The problem of huge tree created by looping is solved in my product Tabbydb from KwikQuery.

Please refer to KwikQuery llc

There is a sample note book button where you can compare the perf difference in realtime.

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

79793314

Date: 2025-10-17 17:48:31
Score: 0.5
Natty:
Report link

You are hitting undefined behaviour by dereferencing a pointer which is not valid. Anything can happen. And no, the other pointer is not reset to nullptr when the first one is, these are independent variables.

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

79793304

Date: 2025-10-17 17:31:27
Score: 1.5
Natty:
Report link

You can download prebuilt mesa3d dll's these days. One example. Cheers!

Reasons:
  • Blacklisted phrase (1): Cheers
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: rogerdpack

79793290

Date: 2025-10-17 17:13:23
Score: 1
Natty:
Report link

I have also seen this issue and don't understand it.
Despite "ms-python.debugpy" being declared in the .devcontainer.json customizations.vscode.extensions it is not installed. I have to manually installenter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Matt Mazzola

79793283

Date: 2025-10-17 17:02:21
Score: 0.5
Natty:
Report link

You could also inline the compare directly if you prefer, see below:

enum State {
  A = "A",
  B = "B",
  C = "C"
}

const prio: [State, number][] = [
  [State.A, 23],
  [State.B, 2],
  [State.C, 5]
];

prio.sort((a, b) => b[1] - a[1]);
console.log(prio);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: colonel

79793281

Date: 2025-10-17 17:01:21
Score: 0.5
Natty:
Report link

That error usually appears when Facebook’s Business Manager endpoint hits an internal validation issue — often related to permissions or the parent account’s ownership status. Try these steps:

  1. Double-check that the parent Business Manager has admin access and valid payment setup.

  2. Use the latest API version (v19 or higher). Older versions sometimes throw generic Code 1 errors.

  3. Verify your access token scopes: business_management, pages_manage_metadata, and ads_management.

  4. If you’re calling the endpoint in quick succession, add a short delay (Facebook occasionally rate-limits /owned_businesses).

  5. Finally, clear any pending Business creation requests in the parent manager before retrying.

If everything checks out and it still returns Subcode 1690192, it’s likely a temporary backend fault — retry after a few hours or open a Business Support ticket with your request ID.

By the way, interesting how meta-platform integrations now mirror decentralized systems — data ownership and verification layers almost resemble transparent ledgers used in blockchain or projects like Lucky Block, a casino platform that also focuses on verifiable fairness. Different field, same logic: transparent data flow and trust.

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

79793271

Date: 2025-10-17 16:44:16
Score: 5
Natty: 4.5
Report link

It looks like url rewrite has been added:
https://aws.amazon.com/blogs/networking-and-content-delivery/introducing-url-and-host-header-rewrite-with-aws-application-load-balancers/

but I can't get it to work :(

Reasons:
  • Blacklisted phrase (1): :(
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jeremy Mordkoff

79793246

Date: 2025-10-17 16:09:08
Score: 1
Natty:
Report link

To enable Windows built-in firewall rules independently of localization (i.e., regardless of system language or region), you can use PowerShell or Command Prompt with rule identifiers that are consistent across locales.

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

79793238

Date: 2025-10-17 15:58:06
Score: 3.5
Natty:
Report link

https://sps-support.honeywell.com/s/article/Sample-IPL-Format

This is basic syntax for IPL. hope it helps

Reasons:
  • Whitelisted phrase (-1): hope it helps
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31707870

79793235

Date: 2025-10-17 15:51:04
Score: 1
Natty:
Report link

<body onLoad="thoughts_authors()">
<script>
function thoughts_authors()
{

var authors=new Array()
authors[0] = "Charles Schulz";
authors[1] = "Jack Wagner";
authors[2] = "Mark Twain";
authors[3] = "Oscar Wilde";
authors[4] = "David Letterman";
authors[5] = "Lily Tomlin";

var thoughts=new Array()
thoughts[0] = "Good Day Is Today";
thoughts[1] = "Style Is What You Choose";
thoughts[2] = "Be The Best Version Of You.";
thoughts[3] = "Truth Along Triumphs.";
thoughts[4] = "How can Life Be Devastating When YOU Are Present in It.";
thoughts[5] = "Believe In What You Say";

index = Math.floor(Math.random() * thoughts.length);

alert(thoughts[index]+ "-" + authors[index]);

}
</script>

Reasons:
  • Blacklisted phrase (1): Good Day
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: عاصم

79793230

Date: 2025-10-17 15:47:03
Score: 3.5
Natty:
Report link

I encountered the same problem in windows, i have try to set the proxy but not work

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

79793225

Date: 2025-10-17 15:44:03
Score: 3.5
Natty:
Report link

I think you should mount it before assigning it to your tablespace.

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

79793209

Date: 2025-10-17 15:27:59
Score: 0.5
Natty:
Report link

I had similar wondering and this is what I found on AWS:

So Names of the attribute can play significant role it seems.

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

79793203

Date: 2025-10-17 15:17:57
Score: 1.5
Natty:
Report link

ECC/ECDSA is not supported for Code Signing and Time Stamping Use as indicated here:

https://learn.microsoft.com/en-us/security/trusted-root/program-requirements#b-signature-requirements

Please note that signing with a certificate stored on an HSM may be limited by the algorithms supported by the HSM. Some may support ECDSA but not the RSA required for Microsoft Authenticode.

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

79793200

Date: 2025-10-17 15:17:57
Score: 1.5
Natty:
Report link

Main problem is analyzer in version 8.4. you must downgrade to 8.3.

Run

dart pub downgrade analyzer

and now command

dart run build_runner build

works!

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Petr Kopečný

79793198

Date: 2025-10-17 15:15:56
Score: 1
Natty:
Report link

I have Zscaler on my Windows 11 machine. To make npm work, I did 2 things:

  1. Exported "ZScaler Root CA" certificate in ".cer" format with Certificates app that is part of Windows

  2. Added environment variable NODE_EXTRA_CA_CERTS="C:\Certificates\ZScalerRootCert.cer" (location and the name of the file can be anything)

    Restart your terminal after this.

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

79793188

Date: 2025-10-17 15:06:53
Score: 1
Natty:
Report link

You can do state:open linked:pr to see the type 3 (Issues that are resolved but not yet merged)
and state:open -linked:pr to see the type 4 (Issues which are open but have no pull requests)

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

79793187

Date: 2025-10-17 15:03:53
Score: 4
Natty:
Report link

Yyghnzbsbsbshdhd

Jsjsjshshshshshshshshshshhshshs

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

79793186

Date: 2025-10-17 15:03:53
Score: 3.5
Natty:
Report link

Yep, RDD API is not supported on Serveless

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

79793175

Date: 2025-10-17 14:55:51
Score: 1.5
Natty:
Report link

I find solution, use this code:

<Button @click="($e) => this.$refs.menu.toggle($e)" />

This seems to be a "feature" of the @click call in Primevue v4 Button components (in v3 this works without closure function).

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @click
  • Low reputation (0.5):
Posted by: Stanislav Butsenko

79793162

Date: 2025-10-17 14:35:45
Score: 5
Natty: 5.5
Report link

what is this for I wanna learned

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): what is this for I
  • Low reputation (1):
Posted by: daniel

79793155

Date: 2025-10-17 14:30:43
Score: 2.5
Natty:
Report link

Was running into similar issue, but found that adding a slight delay in script between creating lambda role and creating lambda function with role attached fixed issue. Anecdotal, but it fixed my similar issue.

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

79793151

Date: 2025-10-17 14:26:42
Score: 2.5
Natty:
Report link

You don't need to invent something new if it works perfect. But if you're really interesting, try to do websocket using different language for example C++. Once you tried it you'd understand why its made like that.

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

79793147

Date: 2025-10-17 14:24:41
Score: 2.5
Natty:
Report link

https://i.sstatic.net/7oCFXgCe.png

Then I say use the pastebin raw link instead of php, though I'm not entirely sure if its what you want.

https://pastebin.com/raw/1E9hZLfc

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

79793138

Date: 2025-10-17 14:12:38
Score: 0.5
Natty:
Report link

Actually, the same is true for other job schedulers as well. I have run both SLURM and LSF clusters during my career, and both will suffer badly from repeated polling. SLURM suffers worse; LSF's design was altered in around LSF 7.0 to split the scheduler from the master batch daemon, which made it considerably more resilient to abuse from repeated polling in tight loops, but it is still vulnerable to the same problem.

HPC systems are like F1 racing cars. They are designed for performance, and need to be driven correctly to get the best performance out of them. F1 car designers assume the driver is skilled and knows what they're doing. HPC systems are the same; the designers of these schedulers assume that the HPC users are skilled and will use them correctly.

Repeated polling is just making the compute work for no benefit. If your job is going to take several hours to run, polling every 5 minutes is going to make no significant difference to your experience compared to polling every 5 seconds, but it'll be a lot nicer for the scheduler and for your fellow users.

If your jobs are running so quickly that polling every few seconds is necessary, then your workflow probably has bigger problems. Very small jobs are usually very inefficient, because the total time to your results will be dominated by scheduler overhead and queueing time, rather than by actual workload execution time, and in such cases it makes sense to batch up your workload so that each job actually runs a large number of tasks in succession, so that the execution time dominates the overall runtime.

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

79793137

Date: 2025-10-17 14:12:38
Score: 3
Natty:
Report link

You can change the text but unfortunately NOT the color

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

79793126

Date: 2025-10-17 14:03:36
Score: 1.5
Natty:
Report link

A newer way to expand/insert all items in an object is using the ${{ insert }} key:

parameters:
- name: Location
  type: string
  default: 'westus'

extends:
  template: Template.yml
  parameters:
    ${{ insert }}: ${{ parameters }}

Docs: https://learn.microsoft.com/en-us/azure/devops/pipelines/process/template-expressions?view=azure-devops#insertion

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

79793122

Date: 2025-10-17 13:59:35
Score: 2
Natty:
Report link

Posted the same question on microsoft's Q&A, and had a working solution:

https://learn.microsoft.com/en-us/answers/questions/5586699/microsoft-graph-me-events-returns-401-with-empty-b

Reasons:
  • Whitelisted phrase (-2): solution:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: The_Thinker

79793109

Date: 2025-10-17 13:45:31
Score: 1.5
Natty:
Report link

For posterity sake, I was finally able to track down an answer to this issue. The documentation is not aligned with the actual behavior of the API.

From Michael Gurch at Google

Apologies for the confusion surrounding this issue. I was able to speak to a member of the product team on this. They informed me that the limit is 1,200 phrases total across all PhraseSets referenced in a single recognition request. All the phrase sets are merged into one prior to the validation essentially, and then processed.

I have requested that they update the documentation related to quotas to align with this constraint https://cloud.google.com/speech-to-text/v2/quotas#adaptation

I further requested they update the migration guide from v1 to v2 to call out this change in constraints that was introduced as it can break existing implementations like it did to mine. https://cloud.google.com/speech-to-text/v2/docs/migration

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

79793095

Date: 2025-10-17 13:25:26
Score: 3
Natty:
Report link

It happened to me before, the table was occupied due to a db trigger that did some queries. Indexing resolved it.

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

79793078

Date: 2025-10-17 13:06:21
Score: 1.5
Natty:
Report link

I get frequent and varied error messages under "Summary of failures for Google Apps Script" I haven't seen my actual script process FAIL but i get all kinds of messages like this.

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

79793068

Date: 2025-10-17 12:59:19
Score: 2.5
Natty:
Report link

Disable clipboard synchronize for all emulators

Settings -> Tools -> Emulator -> Synchronize Clipboard

Source: https://issuetracker.google.com/issues/227658377#comment4

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

79793059

Date: 2025-10-17 12:42:15
Score: 1.5
Natty:
Report link

testImplementation("androidx.compose.ui:ui-test-junit4-accessibility:1.9.3")

composeTestRule.enableAccessibilityChecks()
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (0.5):
Posted by: johngray1965

79793044

Date: 2025-10-17 12:16:08
Score: 5
Natty: 5.5
Report link

I see that this is an older problem, but to log in to the vault through C# do I need to have an API license or is it enough to have a classic M-files license? And what is the exact address for logging in to the vault please? I am stuck on this problem.

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1.5): I am stuck
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: David Novák

79793037

Date: 2025-10-17 12:06:06
Score: 1.5
Natty:
Report link

I digged around and even though if the service is using FOREGROUND_SERVICE_SPECIAL_USE flag. The android is still checking if the uid is allowed to use it or not. So I think Android disabled this as well or rather are keeping it for exceptions for their own internal use. If you want to dig around further check this out:
https://android.googlesource.com/platform/frameworks/base/+/main/core/java/android/app/ForegroundServiceTypePolicy.java

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

79793032

Date: 2025-10-17 12:00:05
Score: 0.5
Natty:
Report link

If you are copying multiple lines and want to paste to a running Gdb, here is one method:

  1. Create a Gdb script file with your commands

    print var1
    print var2
    finish
    next
    
  2. Source it from Gdb

    source ~/path/to/your/file.gdb
    
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: davidhcefx

79793007

Date: 2025-10-17 11:19:55
Score: 1.5
Natty:
Report link

The php artisan optimize:clear command does not automatically reload the cache, it only clears it.

To recharge it, you have to run the php artisan config:clear command

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

79793002

Date: 2025-10-17 11:03:52
Score: 1.5
Natty:
Report link

You can use positioning relative to the bottom.

position: absolute;
bottom: 100%;

https://jsfiddle.net/a7ds6g1L/1/

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: tobi

79793001

Date: 2025-10-17 11:02:51
Score: 1.5
Natty:
Report link

When comparing HTTP vs HTTPS, the difference in performance goes far beyond security, HTTPS is now faster, safer, and SEO-friendly.

Originally, many believed HTTPS would slow websites due to encryption, but with modern protocols like HTTP/2 and TLS 1.3, HTTPS actually improves page loading speed. These technologies enable multiplexing, header compression, and faster data transfer, making HTTPS sites perform better than traditional HTTP ones.

In addition, Google prioritizes HTTPS websites in search rankings, enhances user trust through the padlock icon, and ensures data integrity during transmission. So, switching to HTTPS isn’t just about encryption it’s a direct boost to both performance and SEO visibility.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Learn With SEO

79792994

Date: 2025-10-17 10:46:47
Score: 6
Natty: 7
Report link

Can we embede public facebook profile into iframe ?

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): Can we
  • Low reputation (1):
Posted by: Sonal Chavda

79792993

Date: 2025-10-17 10:45:46
Score: 1.5
Natty:
Report link

The <App> parameter is utilized to locate the application's reference assembly. The issue stems from the fact that App is a Razor page rather than a class. Visual Studio occasionally fails to determine the namespace for a Razor page, which results in the error.

This has also been tested on VS 2026, with the same outcome.

Pending a resolution from Visual Studio, the workaround is to create the .cs code-behind file.

enter image description here

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

79792988

Date: 2025-10-17 10:40:45
Score: 2.5
Natty:
Report link

Windows Server 2019 Core RDP session limit may not work due to configuration issues. Multiple users can connect simultaneously if group policies or licensing settings aren’t correctly applied, bypassing session restrictions.

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

79792986

Date: 2025-10-17 10:32:44
Score: 3.5
Natty:
Report link

You might want to check out this project: https://ionicvoip.com/ — it could be useful.

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

79792982

Date: 2025-10-17 10:27:42
Score: 1
Natty:
Report link

The difference may have to do with having an interactive session. When you run ssh in an interactive shell, you'll be connected to a TTY, but automated scripts run by cron will not. Moreover, Bash will read from ~/.bash_profile on an interactive shell and ~/.bashrc for a non-interactive one, which can lead to subtle differences in the environment.

You might try debugging ssh by adding the -vvv option and capturing the output and see what's different between the manual and cron runs. Another thing to try would be the -t option for ssh.

Other Suggestions

Truly learning a command language interpreter, especially one with as large of a manual as Bash has, can take years. In the hopes of accelerating that learning for an up-and-coming scripter, I thought I'd share these suggestions unrelated to your query:

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: ColMelvin

79792981

Date: 2025-10-17 10:25:42
Score: 1.5
Natty:
Report link

You were close! This will do it:

import json
your_dict = json.loads(example.schema_json())
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: MrMeeseeks

79792976

Date: 2025-10-17 10:22:41
Score: 0.5
Natty:
Report link

@TatuLund answer is correct.

I just want to add a working example:

@Route("validate-example")
@PageTitle("Single Field Validation Example")
public class SingleFieldValidationView extends VerticalLayout {

    private final Binder<FormData> binder = new Binder<>(FormData.class);
    private Binder.Binding<FormData, Double> bindingQtaTot;

    private final NumberField totQntField = new NumberField("Quantità totale");
    private final Button btnCalcola = new Button("Calcola");

    public SingleFieldValidationView() {
        configureBinder();
        configureButton();

        add(totQntField, btnCalcola);
        setPadding(true);
        setSpacing(true);
    }

    @Data
    private static class FormData {
        private String descrizione;
        private LocalDate dataCreazione;
        private Double quantitaTotale;
    }

    private void configureBinder() {
        FormData formData = new FormData();
        binder.setBean(formData);

        // Keep the binding reference to validate later
        bindingQtaTot = binder.forField(totQntField)
                .asRequired("La quantità è obbligatoria!")
                .withValidator(q -> q != null && q > 0, "La quantità deve essere maggiore di zero")
                .bind(FormData::getQuantitaTotale, FormData::setQuantitaTotale);
    }

    private void configureButton() {
        btnCalcola.addClickListener(event -> {
            log("Validazione quantità...");

            BindingValidationStatus<Double> validationStatus = bindingQtaTot.validate();
            if (validationStatus.isError()) {
                String msg = validationStatus.getMessage().orElse("Errore di validazione");
                Notification.show(msg, 3000, Notification.Position.MIDDLE);
                log("Errore di validazione campo quantità: " + msg);
            } else {
                Double value = totQntField.getValue();
                Notification.show("Quantità valida: " + value, 2000, Notification.Position.MIDDLE);
                log("Quantità valida: " + value);
            }
        });
    }

    private void log(String msg) {
        System.out.println("[SingleFieldValidationView] " + msg);
    }
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @TatuLund
  • Low reputation (1):
Posted by: MRTuCc

79792973

Date: 2025-10-17 10:18:39
Score: 2.5
Natty:
Report link

Try Updating Xcode from the AppStore if any update is available. For me I was using the latest iOS version but didn't used the latest version of Xcode so it caused the problem

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

79792958

Date: 2025-10-17 09:53:35
Score: 2.5
Natty:
Report link

Install the extension "Hide Suggestion and Outlining Margins". This returned the margin to the minimal size I had in VS 2017

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

79792957

Date: 2025-10-17 09:51:34
Score: 2
Natty:
Report link

I narrowed down the problem. It seems to happen when I join entities A and B, and B is a child of C and inheritance between B and C is "JOINED".

It also turned out that the error goes away if I upgrade to boot 3.1.1 (which uses hibernate 6.2.5).

Long story short: I probably bumped into an already fixed bug which is present in boot versions 3.0.0 - 3.1.0.

Anyway, the narrowed down minimal example is here

https://github.com/riskop/20251017_complicated_criteria_query_problem

Reasons:
  • Contains signature (1):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: riskop

79792936

Date: 2025-10-17 09:27:28
Score: 0.5
Natty:
Report link

Attachments are stored in /home/<username>/.local/share/signal-cli/attachments/.

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

79792934

Date: 2025-10-17 09:25:27
Score: 1
Natty:
Report link

It seems that you are trying to get the token using the Client credentials flow but are making the request using the Authorization code flow.

In the client credentials flow you shall not be required to initiate a connection to the authorization endpoint to get the Authorization code. Instead the call is made to the token url with the client id and client secret and the request is for the access token.

If the client ID and client secret is correct then in response you will get the Access token which can be used to initiate the connection.

Note: The Client authentication is supported by the External Oauth providers such as Azure, Okta etc..

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

79792927

Date: 2025-10-17 09:17:25
Score: 1
Natty:
Report link

I had the same issue, changing the certificate fixed it for me. For some reason while they hadn't changed the intermediate certificates weren't accepted anymore.

I went from Sectigo to LetsEncrypt.

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

79792918

Date: 2025-10-17 09:04:22
Score: 1
Natty:
Report link

── Label Info ───────────────
You can do it easily with a Row — just make the left line short and the right one expanded.

Row(
  children: const [
    // Short left line
    SizedBox(
      width: 20,
      child: Divider(thickness: 1),
    ),

    SizedBox(width: 8),

    // Label text
    Text(
      'Label Info',
      style: TextStyle(fontWeight: FontWeight.bold),
    ),

    SizedBox(width: 8),

    // Long right line
    Expanded(
      child: Divider(thickness: 1),
    ),
  ],
),
Reasons:
  • Has code block (-0.5):
  • Filler text (0.5): ───────────────
  • Low reputation (1):
Posted by: Berkan Yasin Alpay

79792916

Date: 2025-10-17 09:01:21
Score: 3.5
Natty:
Report link

just upgrade Emulator SDK. Go to tools -> SDK manager -> SDK tools it solve my issue

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

79792912

Date: 2025-10-17 08:55:20
Score: 1.5
Natty:
Report link

Tried many tips, but the only working for me is:

It makes a security issue, but in a dedicated profile aimed to test local sites, it does the job!

Reasons:
  • Blacklisted phrase (1): any tips
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bastien Ho

79792906

Date: 2025-10-17 08:48:18
Score: 1.5
Natty:
Report link

You need to double check if the driver is available or not.

Go to My Computer -> Manage -> Devices and see if there is any exclamation mark. If yes, you need to install driver through Window Update.

Go to Window Update ->View optional updates -> Choose line contains "ADB USB download gadget"

Restart and you are good to go.

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

79792905

Date: 2025-10-17 08:45:17
Score: 1
Natty:
Report link

You can use ollama . Pull a model and run locally. Give context to the model with the prompt and you should get a proper answer

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

79792901

Date: 2025-10-17 08:41:16
Score: 3.5
Natty:
Report link

When ghostscript uses the tiffsep1 driver to convert color separation dot TIF files, how to set the dot angles of each color separation plate in CMYK? I've been looking for a long time, but there are no tutorials or parameters in the official manual. I hope someone here can see them!

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: cxnet

79792899

Date: 2025-10-17 08:40:16
Score: 1
Natty:
Report link

The problem was on Docker/Zookeeper environment:

ZOO_CFG_EXTRA

It doesn't exist and variables are not inserted.

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

79792897

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

This question is all over

And did you see the performance changes in your project

Well, it depends on what (and how) you are doing with that data. If you are doing stuff in the compose block, then you are going to see multiple recompositions if you didn't `remember` it. Anyway, you are supposed to use a view model for these kinds of stuff.

`rememberSavable` (by default) will also not help you in this case, as it would need a custom saver that you need to pass to make it "remember" across config changes or recompositions.

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

79792886

Date: 2025-10-17 08:21:11
Score: 1
Natty:
Report link

Firstly, you can't use an OAuth 2.0 request path with a clientID in Forge apps. You must only use a request path with the URI structure that is valid for Forge apps, as stated in the Authentication and authorization section of Jira's REST API documentation.

Secondly, no Forge app can "fetch Jira data across multiple installed orgs" because that is breach of the basic security principles of Forge apps and all the Atlassian apps... Tenant Isolation!. You could have found the answer to that Frequently Asked Question with a Google search of "With an Atlassian Forge app, can I fetch Jira data across multiple installed orgs?"

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

79792875

Date: 2025-10-17 08:04:08
Score: 2.5
Natty:
Report link

To use CNAM with RingOut, register your caller name with a trusted CNAM registry such as EZCNAM. Once the record propagates, your name will appear automatically on outbound RingOut calls whenever the recipient’s carrier supports CNAM lookups.

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

79792863

Date: 2025-10-17 07:50:04
Score: 1
Natty:
Report link

Adding this confuguration to host help me :

# Configure Docker to use the NVIDIA runtime
sudo nvidia-ctk runtime configure --runtime=docker
# Restart the Docker daemon to apply the changes
sudo systemctl restart docker

Check nvidia appears in runtimes

docker info | grep Runtimes

You sould get somthing like this:

 Runtimes: runc io.containerd.runc.v2 nvidia
Reasons:
  • Blacklisted phrase (1): help me
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ali Ait-Bachir

79792857

Date: 2025-10-17 07:42:02
Score: 1.5
Natty:
Report link

Problem solved ! for those facing this issue in the future :

I have basically done the same thing again:

Thanks anyway :)

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

79792850

Date: 2025-10-17 07:33:59
Score: 4.5
Natty: 4.5
Report link

The client credentials flow iss : "https://sts.windows.net/ instead "https://login.microsoftonline.com which is the case for login flow even though i set API version 2 , in client credentials it always get version 1 i am missing something in configuration ?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: anand

79792840

Date: 2025-10-17 07:27:57
Score: 3
Natty:
Report link

Not directly answering your question, but an alternative may be to use the FakeCar lib provided.

https://cs.android.com/android/platform/superproject/main/+/main:packages/services/Car/libs/car-test-lib/src/android/car/testapi/FakeCar.java

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

79792836

Date: 2025-10-17 07:23:56
Score: 4.5
Natty:
Report link

I had this same issue with my installation -- did you grab the code signing cert? That fixed it for me, and it doesn't automatically download to the certs folder in the layout.

https://learn.microsoft.com/en-us/visualstudio/install/install-certificates-for-visual-studio-offline?view=vs-2022#maintaining-an-offline-machine

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: tmintzer

79792833

Date: 2025-10-17 07:20:54
Score: 7.5 🚩
Natty:
Report link

Which certificate broker did you use? I have the same issue with a Sectigo certificate and might try LetsEncrypt to see if the certificate itself is related in one way or another.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Which
  • Low reputation (1):
Posted by: BOOZy

79792832

Date: 2025-10-17 07:16:53
Score: 1
Natty:
Report link

The latest emulator VHAL is using the AIDL interface so no need for steps 1 and 3 which are changing the previous HIDL VHAL.

Verify that other Test properties exist and if not that means that the build flag is turned off. The flag is ENABLE_VEHICLE_HAL_TEST_PROPERTIES.

If you can detect other test properties, there might be some bug in the implementation.

I would recommend using the VHAL dump commands which will be more helpful. See FakeVehicleHardware::dumpHelp()

https://android.googlesource.com/platform//hardware/interfaces/+/refs/heads/main/automotive/vehicle/aidl/impl/current/fake_impl/hardware/src/FakeVehicleHardware.cpp#1795

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

79792827

Date: 2025-10-17 07:09:51
Score: 2
Natty:
Report link

Git is probably not recognizing changes after adding a folder to the Simulink project path, probably because the .SimulinkProject folder is not being added to the Git repository. And I'm guessing the folder contains XML files with critical project information, including changes to the project path.

First, before I offer a solution, is your local branch properly connected to your remote branch on Metalab?? if yes, we can proceed

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

79792817

Date: 2025-10-17 06:49:45
Score: 9.5 🚩
Natty:
Report link

Have you solved it? I am also looking for a solution.

Reasons:
  • Blacklisted phrase (2): Have you solved it
  • Blacklisted phrase (2): I am also looking
  • RegEx Blacklisted phrase (1.5): solved it?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rylan

79792815

Date: 2025-10-17 06:45:45
Score: 1
Natty:
Report link

Open ctrl+shift+p

And type preferneces:open json settings

Add the code

"github.copilot.advanced": {
    "debug.useNodeFetcher": true,
    "debug.useElectronFetcher": true
}

And then restart the vscode

Now you can chat with github copilot

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

79792805

Date: 2025-10-17 06:29:41
Score: 2.5
Natty:
Report link

OCPP server sample implementation based on spring-boot.

All messages for all versions of OCPP are written in Java.

If you want to customize a businiss logic, implement the corresponding server handler.

https://github.com/u2ware/ocpp-boot-server

https://github.com/u2ware/ocpp-boot-server

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

79792784

Date: 2025-10-17 06:03:35
Score: 2
Natty:
Report link

The child appears taller than its content due to the default 'align-items: stretch' style set to flexbox containers. When assigning 'display: flex' to a container it also sets align-items to stretch. Also, since the flex container has a flex-direction of column, the child div stretches out to fill the available height of the parent. This is not a bug and could be changed by simply changing the align-items property on the flex container and by the solutions you've already provided.

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

79792779

Date: 2025-10-17 05:58:34
Score: 2.5
Natty:
Report link

Looked at a previous embeddedcapabilities and the current one being generated and we see CarPlay Navigation App enabled. Since our app was no longer being considered as an audio app, we could not attach the CPNowPlayingScreenTemplate

force a rebuild now that capabilities have been updated to the ones we had

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

79792752

Date: 2025-10-17 05:09:23
Score: 0.5
Natty:
Report link
import signal
import sys

def handle_sigterm(signum, frame):
    """
    Signal handler for graceful shutdown.
    Triggered when the process receives SIGTERM or SIGINT.
    """
    print("Received shutdown signal, cleaning up...")

    # Attempt to stop running browser processes gracefully.
    # You can extend this list with any other browser names you use.
    for b in ("firefox","edge"):
        try:
            stop_function(b)  # user-defined cleanup function
        except Exception:
            # Ignore any errors during cleanup to ensure shutdown continues
            pass

    # Exit the process cleanly
    sys.exit(0)

# Register the handler for termination (SIGTERM) and interrupt (SIGINT / Ctrl+C)
signal.signal(signal.SIGTERM, handle_sigterm)
signal.signal(signal.SIGINT, handle_sigterm)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Harini David

79792736

Date: 2025-10-17 04:33:15
Score: 1
Natty:
Report link

There is no built-in member of X509Store or the X509FindType enumeration that directly says "give me the certificate currently configured in IIS". IIS does not expose the SSL binding certificate via a managed API like X509Store with a special flag or find type.

But—you can retrieve the IIS certificate by reading the SSL binding from HTTP.sys, or by querying the Windows certificate store based on the IIS binding.

How IIS Stores SSL Bindings

When you bind an HTTPS port in IIS, it stores the SSL certificate information using HTTP.sys, the kernel-mode driver. The mapping is tied to:

IP address (or 0.0.0.0 for all IPs)

Port (e.g., 443)

Certificate thumbprint

Application ID

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

79792729

Date: 2025-10-17 04:02:09
Score: 3
Natty:
Report link

heres 2025, and i have the same problem when reading blob in old db with Oracle Managed Data Access Client. core 23 or any other vers, within .net core.

hard to solve, but by telling ai "read blob from oracle without using oracledatareader", answer comes, and it does work.

////connection prepared

string sql = @"
         DECLARE
                 l_blob BLOB;
         BEGIN
             select blob_field into l_blob
             from  your_table_name 
             where id = :id;
             
             :BlobData:= l_blob;   
         END;";  

using (var transaction = conn.BeginTransaction())
{
    try
    {
        //reading config
        var getBlobCmd = new OracleCommand(sql, conn);
        getBlobCmd.Parameters.Add(new OracleParameter("id", id));

        var blobParam = new OracleParameter("BlobData", OracleDbType.Blob)
        {
            Direction = ParameterDirection.Output
        };
        getBlobCmd.Parameters.Add(blobParam);

        //read
        getBlobCmd.ExecuteNonQuery();

        //gets blob value here
        var oracleBlob = blobParam.Value as OracleBlob;
        if (oracleBlob == null || oracleBlob.Length == 0)
            throw new InvalidOperationException("blob length is 0");


        transaction.Commit();

    }
    catch (Exception)
    {
        transaction.Rollback();
        throw;
    }
}
Reasons:
  • Blacklisted phrase (1): i have the same problem
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): i have the same problem
  • Low reputation (1):
Posted by: user31704031

79792719

Date: 2025-10-17 03:40:05
Score: 1
Natty:
Report link

I wrote a chrome extension that does just this! https://chromewebstore.google.com/detail/line-highlighter/nffehhefkilbinmemhnhepadbeadnfep

You can see the technical implementation and source code here if you're still interested in doing it yourself: https://github.com/kylechadha/line-highlighter?tab=readme-ov-file#technical-implementation. It's open source, so enjoy!

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Kyle Chadha

79792718

Date: 2025-10-17 03:37:05
Score: 3
Natty:
Report link

I created a chrome extension that does just this! Check it out: https://chromewebstore.google.com/detail/line-highlighter/nffehhefkilbinmemhnhepadbeadnfep

Reasons:
  • Blacklisted phrase (0.5): Check it out
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Kyle Chadha

79792694

Date: 2025-10-17 02:58:57
Score: 0.5
Natty:
Report link

Compares like fabs(d) < eps take the float out of floating point Hear, hear!

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

79792692

Date: 2025-10-17 02:50:55
Score: 2
Natty:
Report link

I spent whole day troubleshooting condition like below
But if always fails checking 2 tags together. Anyone succeeded without using above solution of splitting Control Statement one per tag ?

"Condition": {
        "Null": {
          "aws:RequestTag/Department": "true",
          "aws:RequestTag/Name": "true"
        }
       }
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Krishna

79792689

Date: 2025-10-17 02:40:53
Score: 1.5
Natty:
Report link

Vote, this my code now, and still not being shown


@script
<script>
    document.addEventListener('livewire:init', () => {
        Livewire.on('swal-alert', e => {
            Swal.fire(e);
        });
    });
</script>
@endscript
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ronny hidajat

79792688

Date: 2025-10-17 02:40:53
Score: 2
Natty:
Report link

You can dump the clipboard history to a file using this command line tool. Then read and parse the file to get your paths.

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

79792687

Date: 2025-10-17 02:38:52
Score: 4
Natty:
Report link

I encountered the same problem.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 许文强

79792676

Date: 2025-10-17 01:34:40
Score: 1
Natty:
Report link

i think you must supply the r explicitly,

here is the code:

instance Monoid r => Monad (Some r) where
    return a = Thing mempty a
    Thing r a >>= f = 
        let Thing r' b = f a
        in Thing (r <> r') b
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Customer Support