79636391

Date: 2025-05-24 03:05:48
Score: 0.5
Natty:
Report link
CLSID clsid;
HRESULT hr = CLSIDFromProgID(L"CATIA.Application", &clsid);
CComPtr<IUnknown> pCatiaSession;
hr = GetActiveObject(clsid, NULL, &pCatiaSession);
CATIAApplication * pApp = NULL;
hr = pSession->QueryInterface(IID_CATIAApplication, (void**) &pApp);
CATIADocument * pDocument = NULL;
hr = pApp->get_ActiveDocument(pDocument);

// Get the CATDocument pointer from the CATIADocument pointer.
CATBaseUnknown * pJunk = pDocument->GetImpl();
pCATDocument = (CATDocument*)pJunk;

// Do something with the CATDocument pointer
CATDocumentServices::SaveAs(*pCATDocument, strFilePath);
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: SomeCallMeTim

79636375

Date: 2025-05-24 02:10:37
Score: 7.5
Natty: 7.5
Report link

@Twinkle were you successful?

I am trying to figure out how to create a custom payment processor - would you be willing to provide some guidance please?

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Twinkle
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: David hay

79636372

Date: 2025-05-24 02:08:36
Score: 0.5
Natty:
Report link

You can do this by adding a qualifier with the following format to your search query:

[-]created:<comparison operator>@today[+|-<duration quantity><duration unit>]

where the components are:

So if you want to get issues created less than 7 days ago, you would add this qualifier to your search query:

created:>@today-7d

Unfortunately this feature is not mentioned in the relevant documentation, so this related documentation for GitHub Projects is the closest thing to an authoritative reference:

https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects#filtering-for-when-an-item-was-last-updated

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

79636370

Date: 2025-05-24 02:07:36
Score: 0.5
Natty:
Report link

You can do this by adding a qualifier with the following format to your search query:

[-]created:<comparison operator>@today[+|-<duration quantity><duration unit>]

where the components are:

So if you want to get issues created less than 7 days ago, you would add this qualifier to your search query:

created:>@today-7d

Unfortunately this feature is not mentioned in the relevant documentation, so this related documentation for GitHub Projects is the closest thing to an authoritative reference:

https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects#filtering-for-when-an-item-was-last-updated

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

79636369

Date: 2025-05-24 02:06:35
Score: 4
Natty:
Report link

I mean, if you're going to burn a register, then why not just sD to remove the top value from the stack?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mario Nigrovic

79636355

Date: 2025-05-24 01:48:30
Score: 6.5 🚩
Natty: 5.5
Report link

after ive gotten the column copied, is there a way to be able to sort the column in sheet 2 seperately from that of sheet 1?

Reasons:
  • Blacklisted phrase (1): is there a way
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30621579

79636352

Date: 2025-05-24 01:41:28
Score: 1.5
Natty:
Report link

You can do this by adding the following qualifier to your search query:

created:@today

Unfortunately this feature is not mentioned in the relevant documentation, so this related documentation for GitHub Projects is the closest thing to an authoritative reference:

https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects#filtering-for-when-an-item-was-last-updated

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

79636351

Date: 2025-05-24 01:40:28
Score: 0.5
Natty:
Report link

After version 106, you have to specify a full path to a chrome profile through the --user-data-dir argument and it cannot be the default profile at all.

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

79636335

Date: 2025-05-24 01:10:21
Score: 2
Natty:
Report link

A good way of building dashboards in Jupyter is with Voila combined with ipywidgets.
https://github.com/voila-dashboards/voila

Ipywidgets can also load images and voila can be used for the whole dashboard component.

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

79636334

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

can i updte text on tkinter without interacting with the ui? (using as a display only)

Here is script:

import tkinter as tk
import RPi.GPIO as GPIO

# Setup GPIO
GPIO.setmode(GPIO.BCM)
button_pin = 18   
GPIO.setup(button_pin, GPIO.IN, pull_up_down=GPIO.PUD_UP)

def check_button():
    if GPIO.input(button_pin) == GPIO.LOW:  # Button pressed
        update_display()
    root.after(100, check_button)  # Check every 100 ms

def update_display():
    # Update your Tkinter display here
    label.config(text="Button Pressed!")

root = tk.Tk()
label = tk.Label(root, text="Waiting for button press...")
label.pack()

# Start checking for button presses
check_button()

root.mainloop()

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): can i
  • Low reputation (0.5):
Posted by: Adios Gringo

79636331

Date: 2025-05-24 01:04:20
Score: 2
Natty:
Report link
from fpdf import FPDF

# Create a PDF class
class PDF(FPDF):
    def header(self):
        self.set_font("Arial", "B", 12)
        self.cell(0, 10, "", ln=True)

    def footer(self):
        self.set_y(-15)
        self.set_font("Arial", "I", 8)
        self.cell(0, 10, f"Page {self.page_no()}", 0, 0, "C")

# Create the cover letter PDF
pdf = PDF()
pdf.add_page()
pdf.set_auto_page_break(auto=True, margin=15)

pdf.set_font("Arial", size=12)
text = """Mohamed Ebrahim El-Said
Zagazig, Egypt
+20 112 686 3737
[email protected]
May 24, 2025

Recruitment Team
Deloitte

Dear Hiring Team at Deloitte,

I am writing to express my interest in joining Deloitte. I recently graduated from Zagazig University with a degree in Accounting, where I achieved an Excellent academic standing and a GPA of 3.6.

During my time at university, I developed strong analytical and problem-solving skills through both coursework and practical projects. My academic performance reflects my commitment to excellence, and I am eager to bring that same level of dedication to your esteemed firm. Deloitte’s global reputation for innovation, professional growth, and integrity makes it an ideal environment for me to begin my professional journey.

I am particularly drawn to Deloitte’s collaborative culture and its focus on continuous development. I am confident that my educational background, combined with my enthusiasm for learning and growth, makes me a strong candidate for your team.

Thank you for considering my application. I would welcome the opportunity to discuss how my skills and ambitions align with Deloitte’s goals. Please find my CV attached for your review.

Sincerely,
Mohamed Ebrahim El-Said
"""

# Add the text to the PDF
for line in text.split("\n"):
    pdf.multi_cell(0, 10, line)

# Output the PDF to a file
pdf_path = "/mnt/data/Mohamed_Ebrahim_El-Said_Cover_Letter_Deloitte.pdf"
pdf.output(pdf_path)

pdf_path
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (1.5): reputation
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30621432

79636330

Date: 2025-05-24 01:04:20
Score: 3.5
Natty:
Report link

its work fine. change style for mobile as well.

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

79636327

Date: 2025-05-24 00:55:17
Score: 5
Natty:
Report link

I believe this could be done using tkinter / customtkinter and utilizing the Canvas widget / CTkImage for handling the the image and intractability alongside the Tabview widget for the steps.

Please refer to How can I load an image into a tkinter window/canvas? and this tutorial for more info.

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): this tutorial
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Alireza Aliz

79636326

Date: 2025-05-24 00:54:17
Score: 2
Natty:
Report link

Here's a super quick rust script (if speed is an issue) that supports hoisted node_modules for workspaces defined using the "workspaces" package.json attribute: https://github.com/jsimonrichard/node-module-version-checker-rs

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

79636321

Date: 2025-05-24 00:35:12
Score: 2
Natty:
Report link

This just drove me nuts also and I wish someone else had responded here... It appears that via the Clone Repo > Github it only shows personal repos. Instead, copy your Organization repo URL from Github and paste it into the Repository URL tab on Android Studio. It will then prompt you to login or use your access token and voila!

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

79636320

Date: 2025-05-24 00:32:11
Score: 0.5
Natty:
Report link
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Jobs;

public class CustomConfig : ManualConfig
{
    public CustomConfig()
    {
        // Starts with an empty config adding only the jobs you want
        AddJob(Job.Default.WithCustomBuildConfiguration("Benchmarks"));
    }
}
 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Charles Henington

79636319

Date: 2025-05-24 00:30:10
Score: 2.5
Natty:
Report link

This stack overflow answer helped me:

Expo eas build error: Xcode 16.3 and undefined template 'std::char_traits<unsigned char>' prevent building the app

I didn't realize that when I use EAS to build my app, EAS uses a specific Mac OS and Xcode version as specified in my app's eas.json file. Because I had the production iOS image set to "latest", EAS was using Xcode 16.3 to compile my app.

I was thinking that when I used EAS to build my app, it sent the version of Xcode that I had on my local computer to EAS to build with that.

This documentation was helpful to learn about the image options available when using EAS to build an app:

https://docs.expo.dev/build-reference/infrastructure/

Reasons:
  • Blacklisted phrase (1): This document
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jaylen J

79636317

Date: 2025-05-24 00:25:09
Score: 0.5
Natty:
Report link
I put this in a javascript file that is called in every page on my site.
I tested it with Chrome & Firefox.

  var ADS_URL = 'https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js';
    function checkAdsBlocked(callback) {
        var xhr = new XMLHttpRequest();
        xhr.onreadystatechange = function () {
            if (xhr.readyState == XMLHttpRequest.DONE) {
                callback(xhr.status === 0 || xhr.responseURL !== ADS_URL);
            }
        };
        xhr.open('HEAD', ADS_URL, true);
        xhr.send(null);
    }
    
    checkAdsBlocked(function(adsBlocked) {
        if (adsBlocked) {alert ('\n\nPlease Disable Your Ad Blocker\nThere are no annoying ads or popups on this site.\nSome features here are not available with your ad blocker on.\nThanks!\n\n');}
    });
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Robert Finnan

79636315

Date: 2025-05-24 00:23:08
Score: 0.5
Natty:
Report link

For anyone coming across this in future, this error occurs when you haven't accepted the Xcode license on your terminal.

To do that, run:

sudo xcodebuild -license

The license agreement will be displayed, and you need to type "agree" then enter.

Do a bazel clean --expunge, and then rebuild.

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

79636306

Date: 2025-05-24 00:01:02
Score: 2.5
Natty:
Report link

You should use 'dotall' modifier. Often it is 's' in other languages and here 'n', it's easy to miss it in documentation.

By the way, why you're using NOT is it some trick for optimizer?

SELECT CASE WHEN REGEXP_LIKE(MYSTRING, '^[a-zA-Z0-9]*$', 'n') THEN 'valid'
       ELSE 'invalid'
       END 
FROM DUAL
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Sergey Soltanov

79636287

Date: 2025-05-23 23:16:52
Score: 2
Natty:
Report link

You can use this link to evaluate a Xml Path :

https://jsonxmlkit.com/xpath-tester

You can use it also to search for a path.

Reasons:
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1.5): You can use
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: makertoo

79636283

Date: 2025-05-23 23:09:50
Score: 0.5
Natty:
Report link

Not sure why Bluetooth support has still not been added to Termux or their official Termux API apps!

Be advised that the main Search Results for this do NOT work as I tried, waste of time: https://www.samgalope.dev/2024/09/09/how-to-automate-bluetooth-tasks-with-termux/
It seems like he has not tested the solutions he posted / AI auto generated content:
https://www.samgalope.dev/2024/12/02/fixing-the-unable-to-locate-package-bluez-termux-error-a-step-by-step-guide/
Don't bother with these steps as they do not work due to lack of bluetooth support in Termux itself.

The solution provided above now has issues due to updates:

Thus, since the apk in Termux-app-bluetooth is based on the version 0.64 of the Termux project you must install a more recent version of it.

However, ~~after September~~ when I get some free time, I will try to work on a new version of Termux-app-bluetooth that supports update or installation of packages.

Not updated for 5 years as @steven-salazar-molina is busy.

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

79636281

Date: 2025-05-23 23:06:49
Score: 2.5
Natty:
Report link

I realized the issue was happening due to the incorrect jdk version being installed. I completely uninstalled java from my computer <https://www.java.com/en/download/help/mac_uninstall_java.html> along with the jdk <https://docs.oracle.com/javase/8/docs/technotes/guides/install/mac_jdk.html#uninstall>. Then installed jdk 21 (jdk 24 is not compatible with kotlin) and the build succeeded

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

79636277

Date: 2025-05-23 23:02:48
Score: 0.5
Natty:
Report link

I managed to get it work by install by click Other when selecting the Operating System. Then select the iso image of windows iso.

During the boot, there is a time range you should press any key to boot from CD/DVD. After the installation, you don't need to press again.

Select at least 4 cores and 8g memory works for me as well.

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

79636273

Date: 2025-05-23 22:49:46
Score: 2.5
Natty:
Report link

This means that if you imagine memory as the flat Earth and your array lays close to the edge, then beyond it there is a place for at least one additional element. ;•)

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

79636271

Date: 2025-05-23 22:48:45
Score: 3
Natty:
Report link

Problem is solved !

I needed to add the property ref={field.ref} to the <Input />

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Lucas Mahé-Boisneau

79636268

Date: 2025-05-23 22:46:45
Score: 2
Natty:
Report link

To change the language of std::filesystem::filesystem_error messages, adjust the system locale to your native language. But I think this method depends on your operating system.

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

79636266

Date: 2025-05-23 22:42:44
Score: 1.5
Natty:
Report link

Though I would update with my current best solution based on the responses. Thanks to @Jérôme Richard for the detailed analysis, I've re-implemented in a way that I think incorporates the most impactful suggestions:

cimport numpy as cnp

ctypedef cnp.npy_uint32 UINT32_t

from libc.math cimport exp
from libc.stdlib cimport malloc, free

cdef inline UINT32_t DEFAULT_SEED = 1
cdef enum:
    # Max value for our rand_r replacement (near the bottom).
    # We don't use RAND_MAX because it's different across platforms and
    # particularly tiny on Windows/MSVC.
    # It corresponds to the maximum representable value for
    # 32-bit signed integers (i.e. 2^31 - 1).
    RAND_R_MAX = 2147483647

##################################################################

cdef class FiniteSet:
    """
    Custom unordered set with O(1) add/remove methods
    which takes advantage of the fixed maximum set size
    """

    cdef:
        int* index     # Index of element in value array
        int* value     # Array of contained element
        int size       # Current number of elements
        
    def __cinit__(self, cnp.ndarray[int] indices, int maximum):
        self.size = len(indices)
        
        # Allocate arrays
        self.index = <int*>malloc(maximum * sizeof(int))
        self.value = <int*>malloc(maximum * sizeof(int))
        
        if not self.index or not self.value:
            raise MemoryError("Could not allocate memory")
        
        # Initialize index array to -1 (invalid)
        cdef int i
        for i in range(maximum):
            self.index[i] = -1
            
        # Set up initial values
        for i in range(self.size):
            self.value[i] = indices[i]
            self.index[indices[i]] = i 

    def __dealloc__(self):
        """Cleanup C memory"""
        if self.index:
            free(self.index)
        if self.value:
            free(self.value)

    cdef inline bint contains(self, int i) nogil:
        return self.index[i] >= 0 

    cdef inline void add(self, int i) nogil:
        """
        Add element to set
        """
        # if not self.contains(i):
        if self.index[i] < 0:
            self.value[self.size] = i
            self.index[i] = self.size
            ## Increase
            self.size += 1

    cdef inline void remove(self, int i) nogil:
        """
        Remove element from set
        """
        # if self.contains(i):
        if self.index[i] >= 0:
            self.value[self.index[i]] = self.value[self.size - 1]
            self.index[self.value[self.size - 1]] = self.index[i]
            self.index[i] = -1
            self.size -= 1

cdef class XORRNG:
    """
    Custom XORRNG sampler that I copied from the scikit-learn source code
    """

    cdef UINT32_t state

    def __cinit__(self, UINT32_t seed=DEFAULT_SEED):
        if (seed == 0):
            seed = DEFAULT_SEED
        self.state = seed

    cdef inline double sample(self) nogil:
        """Generate a pseudo-random np.uint32 from a np.uint32 seed"""
        self.state ^= <UINT32_t>(self.state << 13)
        self.state ^= <UINT32_t>(self.state >> 17)
        self.state ^= <UINT32_t>(self.state << 5)

        # Use the modulo to make sure that we don't return a values greater than the
        # maximum representable value for signed 32bit integers (i.e. 2^31 - 1).
        # Note that the parenthesis are needed to avoid overflow: here
        # RAND_R_MAX is cast to UINT32_t before 1 is added.
        return <double>(self.state % ((<UINT32_t>RAND_R_MAX) + 1))/RAND_R_MAX

def xorrng_py(int seed=1):
    cdef XORRNG prng = XORRNG(seed)
    return prng.sample()

###############################################################

cdef XORRNG prng = XORRNG()

def spgreedy(cnp.ndarray[double, ndim=2] J, 
             cnp.ndarray[double, ndim=1] h,
             FiniteSet s,
             double temp,
             ):

    cdef int d
    d = J.shape[0]

    cdef int j, k
    cdef double dot, curr, prob

    for j in range(d):

        s.remove(j)

        dot = h[j]
        for k in range(s.size):
            dot += J[j, s.value[k]]

        curr = dot / temp

        if curr < -100:
            prob = 0.0
        elif curr > 100:
            prob = 1.0
        else:
            prob = 1.0 / (1.0 + exp(-curr))

        if (prng.sample() < prob):
            s.add(j)

    return s

which is now better than the dense algorithm (in the problems I've tested on). It also takes a similar amount of time as numpy's matrix multiplication (just doing J@s+h) which is both reassuring, since that code is very optimized I assume, but a bit disappointing because I don't get much benefit from the sparsity after all. I also don't know much about Cython so it's very possible I did something silly in this implementation as well!

average run time of each function on synthetic data as in the original question

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Jérôme
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Matteo Alleman

79636265

Date: 2025-05-23 22:42:44
Score: 4
Natty:
Report link

Not saying this will work but, here's some instructions that is online...

https://www.smackcoders.com/blog/how-to-install-wamp-and-xampp.html

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

79636257

Date: 2025-05-23 22:26:40
Score: 1
Natty:
Report link

This is due to how sql and spark execute these functions differently.

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

79636239

Date: 2025-05-23 21:51:31
Score: 0.5
Natty:
Report link

Let understand with examples, you are trying to send and receive messages between parts of your app — like one part says, "Hey, a new order came in!" and another part listens for that and does something (like sending an email).

What is a Message Bus?

A message bus is like a middleman that helps parts of your app talk to each other without knowing about each other directly. It's like a delivery service: you drop off a message, and it makes sure the right person gets it.

What is MassTransit?

MassTransit is a tool (or framework) that helps you use a message bus more easily in your .NET apps. It gives you a friendly, consistent way to send and receive messages.

But MassTransit doesn’t deliver messages itself — it uses real delivery services behind the scenes.

What’s the Messaging Library?

This is the actual delivery service — like:

-RabbitMQ

-Azure Service Bus

-Amazon SQS

MassTransit connects to one of these behind the scenes and handles the setup, sending, and receiving for you.

So yes — you're right:

MassTransit is a message bus framework that works on top of real messaging systems (like RabbitMQ or Azure Service Bus). It lets you switch between those systems easily without changing much of your code.

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

79636235

Date: 2025-05-23 21:46:30
Score: 3.5
Natty:
Report link

try using the so file
or go through the repo if you feel that there is a need for more files, especially for AWS.

https://github.com/avinashmunkur/pyodbc-py310/tree/master/python-py310

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

79636234

Date: 2025-05-23 21:45:30
Score: 0.5
Natty:
Report link

Must use custom ISqlGeneratorHelper:
builder.Services.AddEntityFrameworkMySql();

builder.Services.AddSingleton<ISqlGenerationHelper, CustomMySqlSqlGenerationHelper>();

then

public sealed class CustomMySqlSqlGenerationHelper : MySqlSqlGenerationHelper
{
    public CustomMySqlSqlGenerationHelper(
        RelationalSqlGenerationHelperDependencies dependencies,
        IMySqlOptions options)
        : base(dependencies, options)
    {
    }

    public override string GetSchemaName(string name, string schema)
        => schema; // <-- this is the first part that is needed to map schemas to databases
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Sergey Or

79636230

Date: 2025-05-23 21:39:28
Score: 9 🚩
Natty: 5
Report link

is it resolved ? i am facing the same issue

Reasons:
  • RegEx Blacklisted phrase (1.5): resolved ?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i am facing the same issue
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is it
  • Low reputation (1):
Posted by: jatin arora

79636228

Date: 2025-05-23 21:38:27
Score: 1
Natty:
Report link
Hi, since you already have the driver file/inf, then have gander with this
    #find device
    $Device = Get-PnpDevice -FriendlyName "Name of your device"
    #update driver
    Update-PnpDevice -InstanceId $Device.InstanceId -Driver $DriverPath
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: xavier Scott

79636227

Date: 2025-05-23 21:37:27
Score: 1.5
Natty:
Report link

Hy after hover do :active for the user click

.dropdown:active .dropdown-content { 

display: block; }

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

79636216

Date: 2025-05-23 21:28:24
Score: 4
Natty: 4.5
Report link

Pull Handles & Finger Plates Clearance Bargains https://www.frelanhardware.co.uk/Products/turns-releases

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

79636210

Date: 2025-05-23 21:23:23
Score: 3.5
Natty:
Report link

Getting help for ai you will get it brother. Wverthink can make you right

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

79636208

Date: 2025-05-23 21:22:22
Score: 4
Natty:
Report link

which search algorithm is more likely to find a solution in an infinite space state

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): which
  • Low reputation (1):
Posted by: zayn Farrag

79636204

Date: 2025-05-23 21:15:21
Score: 1.5
Natty:
Report link

Thanks to everyone who tried to help.

Somehow, YouTube video playback suddenly stopped working. While searching for a solution, I stumbled upon this thread: https://bbs.archlinux.org/viewtopic.php?id=276918 , and found that running

pacman -Syu pipewire-media-session

did the trick.

Not only did YouTube start working again, but I also started hearing sound from my device — the volume meter began responding too.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Владимир Горин

79636201

Date: 2025-05-23 21:14:20
Score: 4.5
Natty:
Report link

Please feel free to check out the Closed Caption Converter API. https://www.closedcaptionconverter.com

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

79636197

Date: 2025-05-23 21:11:19
Score: 1
Natty:
Report link

Event library that you must use:
package0 and replication.
Inside the replication library, you can find events related to the agents, including the distribution agent.
Key event for your case:
replication.agent_message.
This event captures messages that the replication agents (snapshot, log reader, distribution) generate. It is useful because many times the distribution agent writes to its output when the execution mode or the number of threads changes.
You can filter messages containing things like:
“Switching to single thread”
“Switched from multi-threaded to single-threaded”.
SQL Server doesn't have a direct event that says “switched from multi-threaded to single-threaded”, but the agent messages (which are captured with replication.agent_message) do reflect that behavior internally, and that's what you can track.

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

79636172

Date: 2025-05-23 20:42:12
Score: 0.5
Natty:
Report link

Have you tried setting the domain of the cookies to your API URL, e.g.:

ctx.SetCookie(..., "/", "api.azurecontainerapps.io", true, true)
Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: RecursionError

79636170

Date: 2025-05-23 20:40:11
Score: 3.5
Natty:
Report link
  1. rm -rf android/ ios/
  2. npx expo prebuild
Reasons:
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: AndrewS

79636166

Date: 2025-05-23 20:39:10
Score: 4
Natty: 4
Report link

Did anyone notice the typo of attachements instead of attachments?

Not certain, but I think that was the actual problem here... or at least part of the problem.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Did anyone not
  • Low reputation (1):
Posted by: Nick

79636165

Date: 2025-05-23 20:38:10
Score: 2.5
Natty:
Report link

The Fix: I switched to using the default App Engine service account:

[PROJECT_ID]@appspot.gserviceaccount.com and suddenly everything worked. Same code. Same database. Just a different service account.

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

79636160

Date: 2025-05-23 20:34:08
Score: 2.5
Natty:
Report link

Figured out the answer to the question:

Simply refreshing the content of the QTextBrowser / QTextEdit with 'the next' picture slide, using a QTimer delay, does achieve the desired goal - displaying an animation.

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

79636156

Date: 2025-05-23 20:31:06
Score: 8 🚩
Natty:
Report link

Also having the same issue. Related: Microsoft Graph 502 Bad Gateway - Failed to execute backend request when creating a private channel (beta API)

Could be because of metered api usage limit for transcripts.

Any clue so far?

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): Also having the same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Abreham Gezahegn

79636152

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

You need to ask tap payment support to register your bundle ID. After they register it, you will get new secret keys for both production and sandbox. kindly use those keys, and also, make sure to put the correct Sdk configurations. This way, the payment sheet will be opened

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

79636151

Date: 2025-05-23 20:26:05
Score: 1.5
Natty:
Report link

This is still a bit of a hack, but seems to work in all cases I need.

I created a sleep_exec script as follows:

#!/bin/bash -norc

sleep $1
shift
exec "$@"

Than changed my wrapper function to run

tmux new-window -- sleep_exec 0.5 vim "$@"

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Marcin K

79636129

Date: 2025-05-23 20:06:59
Score: 3
Natty:
Report link
frame.rootPane.setDefaultButton(jButton1);
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: GHOST SKIKDA

79636123

Date: 2025-05-23 19:57:57
Score: 4.5
Natty: 4
Report link

Please take a look at these pages.

https://medium.com/@OlenaKostash/load-testing-http-api-on-c-with-nbomber-96939511bdab

https://nbomber.com/docs/protocols/http#dedicated-httpclient-per-user-session

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: AntyaDev

79636120

Date: 2025-05-23 19:53:56
Score: 0.5
Natty:
Report link

i hope its what is required.

import matplotlib.pyplot as plt
import numpy as np

z1 = np.linspace(0, 1.4, 20)
z2 = np.linspace(0, 1.1, 20)
z3 = np.linspace(0, 1.0, 20)

fig, axes = plt.subplots(1, 3)

axes[0].plot(np.exp(-z1), z1, c='k')
axes[1].plot(np.exp(-z2), z2, c='k')
axes[2].plot(np.exp(-z3), z3, c='k')

orig_pos = [ax.get_position() for ax in axes]

max_y_vals = [np.max(z1),np.max(z2),np.max(z3)]
max_y = max(max_y_vals)
height_ratios = [v / max_y for v in max_y_vals]

# Align bottoms
for ax, pos, h in zip(axes, orig_pos, height_ratios):
    new_height = (pos.y1 - pos.y0) * h
    new_y0 = pos.y0  # keep bottom fixed
    new_y1 = new_y0 + new_height
    ax.set_position([pos.x0, new_y0, pos.width, new_height])

plt.show()

subplots align bottom

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

79636101

Date: 2025-05-23 19:32:50
Score: 2
Natty:
Report link

FWIW, Drake now natively supports SolveInParallel and it is recommended that you use this method rather than try to multi-thread your own solver.

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

79636094

Date: 2025-05-23 19:28:49
Score: 1
Natty:
Report link

All of above mentioned solutions are unreliable and should not be accepted.

All of them will fail whenever process requests console input from user.

In this case console message will stuck in standard input stream and and won't get into OutputDataReceived event. This is because input prompt is unflushed string in stream buffer and is not committed as output data until user responded. Asynchronous read of process output using events doesn't allow to read unflushed data in stream buffer. The only way to make reliable process output read is to redirect output to file and monitor file changes instead of reading directly from standard output stream. But this workaround may be not suitable for case when there may be sensitive data in output stream.

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

79636080

Date: 2025-05-23 19:14:46
Score: 3.5
Natty:
Report link

The Parrot equations do not include raising many of the functions to a power. Huffington left off all the power expressions in the three equations, as they do in most Yeganeh examples.

Bill Nee

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

79636076

Date: 2025-05-23 19:06:44
Score: 8.5
Natty: 8
Report link

Can you explain why the use of URL fixes the issue? I guess it is because URL loads the file as an absolute path while the previous method would load the .env file from the incorrect directory when nested inside module files?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you explain
  • RegEx Blacklisted phrase (1.5): fixes the issue?
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (0.5):
Posted by: kaligrafy

79636075

Date: 2025-05-23 19:05:43
Score: 1.5
Natty:
Report link

After you have loaded the Chrome Extension in the Browser , you will have to reload the site with the domain mail.google.com . After reloading you can open the console and check it will show the log.

Incase you do not see the logs , you can also check if the content script has been injected in the tab . Open the devtools and click on sources . Under it select content script . If your file is injected then it will be visible there.

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

79636069

Date: 2025-05-23 19:02:42
Score: 2
Natty:
Report link

There was a bug in my used Version. A new Release solved it

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

79636060

Date: 2025-05-23 18:49:40
Score: 0.5
Natty:
Report link

Are you sure your ic_notification exists in the drawable directory?

Add this to your main activity :

<intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
</intent-filter>

This should always redirect the users to your app instead of settings

Also sometimes its tricky because permissions are messed up when you are simulating vs actually running it locally on a device

Add this to your <service> tag : 

android:name="com.ryanheise.audioservice.AudioService"
    
android:foregroundServiceType="mediaPlayback"
    
android:exported="true">

Make sure "AndroidManifest" includes :
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK" />

Should fix the issues you have, but also make sure that you don't have local and flutter notifications conflicting, check your flutter_local because remember its not a simulation when its local :)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: dave antony

79636049

Date: 2025-05-23 18:41:38
Score: 1
Natty:
Report link

No there is not, and the introduction of ISO/IEC 13211-2 forecloses on the possibility:

This International Standard defines syntax and semantics of modules in ISO Prolog. There is no other International Standard for Prolog modules.

You can see the list of ISO standards under development published on their website. There is nothing to suggest a revision or supersession of 13211-2 is in the works.

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

79636037

Date: 2025-05-23 18:33:36
Score: 2
Natty:
Report link

Thank you @mathias

I found this article while looking for a way to script changes for an email domain name change on local AD that was synced to 365. I wanted to be able to have a precise lookup and be able to use variables to fill the right alias into the account in preparation for the migration to the new domain. While this got me closer than anything else I found online (which I found so hard to believe), I was challenged with getting to operate properly on a server that had way too many differences between SamAccountName and GivenName. I also wanted to have something that was less specific and provided options for future use across multiple clients we support that are Azure ADSynced. Enjoy.

$proxydomain = "@domain.com"
$OUpath = 'OU=Users,OU=FOLDER,DC=domain,DC=local'
     Get-ADUser -Filter {(Enabled -eq $true -and UserPrincipalName -notlike '*.local')} -SearchBase $OUpath -SearchScope Subtree -Properties *  | foreach-object {
    
    # Create user alias from user account information. 
    # Various options provided, adjust comment header to select the format you wish
    # NOTE THAT "smtp" ON THESE ARE LOWER CASE, MAKING THEM ALIASES, NOT PRIMARY EMAIL ADDRESSES
    $alias = ("smtp:{0}{1}$proxydomain" -f $user.GivenName.Trim()[0], ($user.Surname)) #[email protected]
    #$alias = ("smtp:{0}{1}{2}$proxydomain" -f ($user.GivenName), ".", ($user.Surname)) #[email protected] WATCH FOR MIDDLE INITIALS!  You may need to replace GivenName with SamAccountName or use other trim methods.
    #$alias = ("smtp:{0}$proxydomain" -f ($user.GivenName)) #[email protected]

   # -match is a regex operator, escape appropriately
    if ($_.ProxyAddresses -match [regex]::Escape($alias)) {
        Write-Host "Result: $alias value already exists for user $($_.displayname); No action taken."
    }
    else {
        # Now we only have a single variable that needs to be expanded in the string
        Set-ADUser -Identity $_.SamAccountName -Add @{proxyAddresses = "$alias"}
        Write-Host "Result: Added $alias value to $($_.displayname)"
    }
}
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): this article
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @mathias
  • Low reputation (1):
Posted by: ComputerSuperheroes

79636034

Date: 2025-05-23 18:31:35
Score: 1
Natty:
Report link

The purpose of DTO is that your controller returns an object in your API that is separate from your core entities.

If you have a core entity called Transaction that contains an object of type Currency, it is a bad practice to return Transaction and leak to the outside that your transaction has a type Currency in it, instead you create a DTO and in the DTO format the currency to a String, this way your entities preserved and hidden from what your controller returns. Now your API and core entities can change independently without breaking each other.

The correct order is that services will return model entities, and in your controller, they are mapped to a DTO.

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

79636020

Date: 2025-05-23 18:17:31
Score: 2.5
Natty:
Report link

Check out Google Workspace and the 'ways to build' section. You have options to use API and UI toolkits or using low-code/ no-code app options to start building calendar functions into another app.

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

79636016

Date: 2025-05-23 18:12:30
Score: 0.5
Natty:
Report link

The problem is that SentenceTransformer relies on the indices present in the Series. Therefore, to eliminate this issue, you need to reset the indices before calling encode(sentences):

sentences = sentences.reset_index(drop=True)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kirill Dolmatov

79636009

Date: 2025-05-23 18:09:28
Score: 2
Natty:
Report link

It is working with the .encode('utf-8') method, valid for "raw python 2.7":

for p in data['policies']:
    print "Service:", p['service'], "Name:", p['name'].encode('utf-8')
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Peter Krauss

79635998

Date: 2025-05-23 17:50:23
Score: 4.5
Natty:
Report link

Perhaps this customer location requires a PO Receipt before you can bill?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
Posted by: Patrick Chen

79635988

Date: 2025-05-23 17:42:21
Score: 1.5
Natty:
Report link

use this package:

https://pub.dev/packages/flutter_internet_signal

import 'package:flutter_internet_signal/flutter_internet_signal.dart';

void main() async {
  final FlutterInternetSignal internetSignal = FlutterInternetSignal();
  final int? mobileSignal = await internetSignal.getMobileSignalStrength();
  final int? wifiSignal = await internetSignal.getWifiSignalStrength();
  print('Result dBm -> $mobileSignal');
  print('Result dBm -> $wifiSignal');
}
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sebastian celis

79635975

Date: 2025-05-23 17:32:18
Score: 2
Natty:
Report link

When using the contains operator with an array, the right hand side of the operator needs to be an array as well. You can try:

data @> jsonb_build_array(data->0)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: 007MIPSGOD

79635969

Date: 2025-05-23 17:24:16
Score: 2
Natty:
Report link

I author of CLI/TUI is a utility on Go for managing files in the terminal, supports flexible filters by modification time, size and extensions, and also allows you to quickly navigate through directories, select files and save sets of rules for reuse, and safely move files to the trash.

https://github.com/pashkov256/deletor

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

79635968

Date: 2025-05-23 17:23:15
Score: 1
Natty:
Report link

In Java generics T is refered to a class parameter . It cannot be applied for primitive types.

See Arrays::sort() for details.

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

79635953

Date: 2025-05-23 17:11:10
Score: 7.5 🚩
Natty: 5.5
Report link

Do we have any solution for this I am still facing the same.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): Do we have any
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: j. Beniwal

79635945

Date: 2025-05-23 17:06:08
Score: 1
Natty:
Report link

I've found an alternate workaround in DAX that relies on the structure of my source data:

MajorMinor = DISTINCT(SELECTCOLUMNS(Data, [Major], [Minor]))

where I can guarantee that all of the possible products are present in my data. This is just as fast as it ought to be.

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

79635940

Date: 2025-05-23 17:04:08
Score: 3.5
Natty:
Report link

The 2nd president of the republic of kenya was Arap Moi

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

79635939

Date: 2025-05-23 17:03:06
Score: 9.5 🚩
Natty: 4.5
Report link

Did you ever get an answer or solution for this? I am having the same issue. I have a SQL task that the error doesn't propagate to the package it is in, but that package is called by another parent package that the error is still propagating to.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever get an answer
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same issue
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Stephen

79635937

Date: 2025-05-23 17:01:05
Score: 4
Natty:
Report link

As pointed out by @Slbox, an expo project has to be added to git (i.e. have a .git dir) for eas build to be able to process it.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Slbox
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: tim bits

79635932

Date: 2025-05-23 16:58:04
Score: 2
Natty:
Report link

There's no module called "RNPermissione", it should be "RNPermissions" (Ending with an S instead of an E). Check the Android/iOS configuration to see if maybe you have something there with this typo

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

79635924

Date: 2025-05-23 16:52:02
Score: 1.5
Natty:
Report link

After some testing, I found out that the most upvoted answer isn't good for reusability and is ugly, so I ended up going with one of the other suggested solutions and created this method in my utils:

openInNewTab(url: string): void {
  if (this.isSafari()) {
    const a = document.createElement('a')
    a.setAttribute('href', url)
    a.setAttribute('target', '_blank')
    setTimeout(() => a.click())
  } else {
    this.window.open(url, '_blank')
  }
}

For those curious how I determine Safari:

// https://stackoverflow.com/a/70585394/20051807
isSafari(): boolean {
  return (this.window as any).GestureEvent || this.window.navigator.userAgent.match(/iP(ad|od|hone)/i)
}

Tested on iPhone and Mac.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (0.5): upvote
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ilya Konrad

79635894

Date: 2025-05-23 16:29:56
Score: 0.5
Natty:
Report link
variables:
- name: runs
  value: 1,2,3

stages:
- ${{ each run in split(variables.runs, ',') }}:
  - stage: SomeTests_${{ run }}
    jobs:
    - job:
      ...

- stage: Installation
  jobs:
  - job:
    ...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Iqan Shaikh

79635886

Date: 2025-05-23 16:24:55
Score: 2
Natty:
Report link

Phone numbers can get rather long when you have to insert dialing pauses (usually represented by ","), outside vs inside access, access numbers, extensions, confirmation codes (which might include "#" and "*"), etc. The best test of a phone number is actually to dial it or text to it and verify that it is legitimate and request a return tone, text, or click through to a verification site. Yes, 7-15 seems right, if you aren't going to verify it otherwise.

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

79635874

Date: 2025-05-23 16:16:52
Score: 3
Natty:
Report link

I have decided that instead of asking this question, I should have adjusted my code to remove the need for it entirely. Some comments kindly alluded to this which helped me arrive at this conclusion (thank you). My function is better for it.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: edubu2

79635853

Date: 2025-05-23 16:03:47
Score: 5
Natty: 5
Report link

Some actions and situations may automatically switch your pricing plan between Spark and Blaze. Learn more in the following sections.

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

79635847

Date: 2025-05-23 15:59:46
Score: 3.5
Natty:
Report link

need manually all things . not any app available for this. you can add posts only.

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

79635845

Date: 2025-05-23 15:58:46
Score: 1
Natty:
Report link

The maximum length is 73 characters as of this writing.

You can get it through the Admin Console GUI:

  1. Go to https://admin.google.com/u/1/ac/groups.
  2. Click Create group.
  3. In the Group name field, enter a long name, like This is a long group name, so long that it causes a validation error to appear that specifies the field's maximum length.
  4. A validation error should appear that specifies the field's maximum length.

A validation error in the Google Admin SDK specifying the maximum length of the group  name field, 73 characters

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Eric Eskildsen

79635839

Date: 2025-05-23 15:55:45
Score: 3
Natty:
Report link

You need to remove the nav mesh and then make sure your player has a rigidbody and simply write a code that applies force on the y-axis.

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

79635835

Date: 2025-05-23 15:52:44
Score: 2.5
Natty:
Report link

Good or bad, I went for the following:

set @v_xml_nest_level_pos = CHARINDEX ('<tsql_stack><frame nest_level', @p_additional_info, 0);

    -- nest_level  found
    if @v_xml_nest_level_pos > 0
    begin
        
    -- Replace single quotes with double quotes to make it valid XML
    set @xmlString = REPLACE(@p_additional_info, '''', '"');
    -- Now cast to XML
    set @xml = TRY_CAST(@xmlString AS XML);
    -- Extract nest_level as string
    set @nest_level_str =  @xml.value('(/tsql_stack/frame/@nest_level)[1]', 'NVARCHAR(100)');
    -- Try casting to INT safely
    SET @nest_level = TRY_CAST(@nest_level_str AS INT);

        if @nest_level is null
        begin
        set @P_SEO_CURR_USER = 1;
        end;
        if @nest_level is not null
        begin
            if @nest_level < 1
            begin
            set @P_SEO_CURR_USER = 1;
            end;
        end;
    
    end
    
    else -- nest_level not found
    
    begin
    set @P_SEO_CURR_USER = 1;
    end;

where:

p_additional_info - is field additional_information of fn_get_audit_file, within a loop of which the above code is run.

@P_SEO_CURR_USER is set as default 0, meaning non-top-level SQL. Set to 1 when top-level.

Thank you to all commenters who helped me on this.

best regards

Altin

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): best regards
  • Blacklisted phrase (1): regards
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @P_SEO_CURR_USER
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: altink

79635833

Date: 2025-05-23 15:51:43
Score: 4
Natty: 5
Report link

Hey I have a question on the similar lines

I am using flink to consume events from kafka and having a sliding window assigner for 1 hour window slides every 5 mins and then it has to write result in cassandra. I want to understand how this works internally ??

For example we have 10000 events and 5 taskmanagers and let's say each taskmanager gets 2000 event so there will be 5 entries in cassandra or Flink internally will aggregate all the outputs from 5 taskmanager and then create a single entry in cassandra.

Reasons:
  • Blacklisted phrase (1.5): I have a question
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: swapnil jain

79635830

Date: 2025-05-23 15:48:43
Score: 1
Natty:
Report link

Допоможіть що тут не так
Назва

Name that will be used for config entry and also the sensor

URL бази даних

Leave empty to use Home Assistant Recorder database

Колонка

Стовпець для повернутого запиту для представлення як стану

SQL query invalid

Select query

Запит для запуску має починатися з "SELECT"

Unit of measurement

The unit of measurement for the sensor (optional)

Value template

1

Template to extract a value from the payload (optional)

Device class

Тип/клас датчика для встановлення піктограми у інтерфейсі

State class

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

79635826

Date: 2025-05-23 15:46:42
Score: 1
Natty:
Report link
In my case I had extra spaced after the closing node. 

<Grid>
   <Polygon/>  <!--spaces here-->
   <Polyline/>  <!--spaces here-->
</Grid>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: CBFT

79635824

Date: 2025-05-23 15:45:41
Score: 1
Natty:
Report link

The most straightforward approach is to hook into the deleting event of the User Eloquent model and delete the Sanctum tokens there.

// app/Models/User.php

use Illuminate\Foundation\Auth\User as Authenticatable;
use Laravel\Sanctum\HasApiTokens;

class User extends Authenticatable
{
    use HasApiTokens;

    protected static function booted(): void
    {
        self::deleting(function ($user) {
            $user->tokens()->delete();
        });
    }
}

Now your proposed line will work as expected, no need to call $user->tokens()->delete() explicitly anymore:

User::find(123)->delete();

Explanation

We use the static booted method on our User Eloquent model. Within this function, you can listen for various model events, such as creating, updating, and deleting.

Defining an event listener as a closure, we listen for the deleting event, which is performed before the user is deleted and delete the user's Sanctum tokens on that occasion.

Note: if you extend the User model with child classes and still want this behavior, you'll want to use static::deleting instead of self::deleting (Understanding Static vs Self in PHP).

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

79635821

Date: 2025-05-23 15:44:41
Score: 1
Natty:
Report link

have you tried this?

<Connector port="8080" protocol="org.apache.coyote.http11.Http11NioProtocol"
               connectionTimeout="20000"
               redirectPort="8443"
               maxParameterCount="1000"
               useVirtualThreads="true"
                executor="tomcatThreadPoolVirtual"
               />
Reasons:
  • Whitelisted phrase (-1): have you tried
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Bruno Manuel Rosas Marques

79635820

Date: 2025-05-23 15:44:41
Score: 3.5
Natty:
Report link

joblib won't work with pyinstaller, use nuitka

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

79635817

Date: 2025-05-23 15:43:41
Score: 1
Natty:
Report link

If you are using SimpleAuthManager, the user name is defined by simple_auth_manager_users in airflow.cfg. Default is admin:admin meaning a user named "admin" that has the "admin" role. The password is auto-generated and can be found in the webserver's log. See airflow's document here

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

79635813

Date: 2025-05-23 15:39:39
Score: 4
Natty:
Report link

This was implemented on my phone without my knowledge and I'm pissed off about it I want this API and stk crap off my account

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Plumbers Nightmare

79635800

Date: 2025-05-23 15:32:37
Score: 0.5
Natty:
Report link

In case anyone came here as I did while debugging an ASP.NET Web Forms application, what worked for me was properly configuring the project properties Web tab, to start the application on the same URL as the project URL. You can either check the Start URL option and duplicate the project URL in that field, or as I did check Specific Page and enter a forward slash in the field.enter image description here

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

79635799

Date: 2025-05-23 15:32:37
Score: 0.5
Natty:
Report link

It sounds like you didn’t open the correct terminal. Double check it is the correct MSYS2 terminal as the installer places many in there (it is specified in the getting started doc).

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

79635797

Date: 2025-05-23 15:32:37
Score: 1.5
Natty:
Report link

If I understand your question correctly, this is what typically happens:

1. T1 modifies x but does not commit - it sets a write intent on x
2. T2 reads x - T2 will block here for T1 to complete
3. T1 commits
4. T2 resumes and reads x for the first time. if it reads x again, it will see the same value.

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

79635795

Date: 2025-05-23 15:29:36
Score: 2.5
Natty:
Report link
  1. On Docker Desktop, click on the Debug Icon at the top

  2. Select Clean/Purge

  3. Selected WSL 2

  4. Delete

See Screenshot

enter image description here

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

79635788

Date: 2025-05-23 15:26:35
Score: 1.5
Natty:
Report link

As far as I know it has sth to do with sensors for example starting a session of running will enable the GPS some others will enable the gyroscope but it is not clear which ones enable what. There is a service I used for this found on rapidAPI that turns the workout to hkWorkoutActivityType I used it to get all the predefined workout types once.

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

79635787

Date: 2025-05-23 15:26:35
Score: 3
Natty:
Report link

You need to program a script that will check if there are any other agents/obstacles and then change the position of the object you want to move.

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