79670672

Date: 2025-06-18 12:59:03
Score: 0.5
Natty:
Report link

The get_stylesheet_directory_uri() function builds the URI using the value stored in the database for the site URL, not just what's in wp-config.php.

Here are steps:

1. Update URLs in the database

You likely need to update any hardcoded URLs in the database (common after a migration). Use a tool like WP-CLI or a plugin like Better Search Replace to update old URLs:wp search-replace 'http://oldsite.com' 'https://somewebsite.com' --skip-columns=guid

2. Clear Caches

=>Clear WordPress cache if you're using a caching plugin (e.g. W3 Total Cache, WP Super Cache).

=>Clear browser cache.

=>Clear object cache if using Redis or Memcached.

3. Flush Rewrite Rules

=>Go to Settings > Permalinks and click Save Changes.

4. Check for Hardcoded Values

Inspect your theme’s functions.php or any custom plugin code to ensure the old URL isn’t hardcoded

=>define('THEME_URI', 'http://oldsite.com/wp-content/themes/your-theme');

Once the database references are correctly updated, get_stylesheet_directory_uri() should automatically reflect the new domain.

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

79670667

Date: 2025-06-18 12:55:01
Score: 1
Natty:
Report link
You said:
You will need to process 10 GP of data using spark how many executor you would needed and how much memory you should needed for each executor to get the maximum parallelism also how many cores should be there
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: SivaRamaKrishnaReddy Devagudi

79670658

Date: 2025-06-18 12:50:00
Score: 3.5
Natty:
Report link
file/d/VIDEO_ID/view?usp=sharing
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tai Nguyentan

79670656

Date: 2025-06-18 12:47:59
Score: 0.5
Natty:
Report link

The way to fix this problem is to use Appdata folder for all changing files, as it's done in most of programmes. So I implemented the next code:

APPDATADIR = path.join(getenv('APPDATA'), "Company", "App")
if not(path.exists(APPDATADIR)):
    makedirs(APPDATADIR)
CONFIG_FILE = path.join(APPDATADIR, "config.ini")
SAVE_FILE = path.join(APPDATADIR, "save")
FIRST_START_DIR = path.join(APPDATADIR, "firststart")
IS_FIRST_START = not(path.exists(FIRST_START_DIR))

Now it saves everything in the Appdata, and the file for evaluating the first start also was moved.

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

79670647

Date: 2025-06-18 12:44:58
Score: 1
Natty:
Report link

On my end, the server was defaulting to IPv6, so I temporarily disabled it.

sudo sysctl -w net.ipv6.conf.all.disable_ipv6=1
sudo sysctl -w net.ipv6.conf.default.disable_ipv6=1

This solved the issue of getting stuck at: Downloading VS code server

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

79670645

Date: 2025-06-18 12:43:58
Score: 3
Natty:
Report link

google-play-scraper does not support commonjs (require) using ES modules (import statements) instead of commonJs

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

79670635

Date: 2025-06-18 12:33:55
Score: 1.5
Natty:
Report link

Finally got it working... hurray

First of, thank you for the answer and comments.

The line that did the trick is:

sslConfiguration.setCaCertificates(QSslCertificate::fromPath("./crt/ca_bundle.crt"));

* Whilst commenting out

sslConfiguration.setLocalCertificateChain(QSslCertificate::fromPath("./crt/certificate.crt", QSsl::Pem));

Yaay.

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

79670625

Date: 2025-06-18 12:22:51
Score: 2.5
Natty:
Report link
#!/bin/bash
# 2>nul 1>&2 & @echo off & CLS & goto :batch
echo "This ran in Linux."
read -esp "Press Enter to continue...:"
exit
:batch
echo This ran in Windows.
pause
exit /b

This will be the basis of a batch-bash hybrid, if you set its file properties to be executable in Linux, and name it with the .bat extension, you will be able to run it in both OSes.

To execute in Windows Command Prompt, type it's filename (with or without its extension), like this:

C:\user>filename.bat

Or like this:

C:\user>filename

To execute in Linux, you must specify the directory (or a period for the current working directory) then a forward slash, then the FULL file name, like this:

user@computer:~$ ./filename.bat

Because Linux recognises it as executable, and you specified #!/bin/bash as the topmost line, Linux will run it with bash by default.

Please downvote if it does not work on your computer.

Reasons:
  • RegEx Blacklisted phrase (2): downvote
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Unoheaken

79670611

Date: 2025-06-18 12:14:49
Score: 1
Natty:
Report link

As long as there is something in the div, the opacity method will work because

opacity: 0 does not change the element's reactive properties while
visibility: hidden directly removes interactivity, and

display: none is completely removed from the layout.

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

79670597

Date: 2025-06-18 12:08:47
Score: 1.5
Natty:
Report link

Whitout use a QListView, you might customize QComboBox with style sheet:

QComboBox::separator { margin: 2px; background: red; }

Work only with values: "background", "margin", "margin-left", "margin-top", "margin-right", "margin-bottom".

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

79670595

Date: 2025-06-18 12:07:46
Score: 4
Natty:
Report link

Although, the plan shows hash partitioning of A twice for creating both the joined dataframes AB and AC, it does not mean under the hood the tasks are not reusing already hashed partitions of A . Spark skips the stages if it finds the steps redundant even if its part of the plan. Can you check your DAG to see if the stages are skipped like shown below?
enter image description here

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
Posted by: Vindhya G

79670593

Date: 2025-06-18 12:04:44
Score: 11 🚩
Natty: 6.5
Report link

Did you ever find an answer to this? I also have the same problem.

Reasons:
  • Blacklisted phrase (1): answer to this?
  • RegEx Blacklisted phrase (3): Did you ever find an answer to this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I also have the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Ruben deV

79670588

Date: 2025-06-18 12:03:44
Score: 0.5
Natty:
Report link

As @remy-lebeau rightly pointed out, the code sample I originally found wasn't the best example to follow.
The following code works nice in my case and allows me to set up an in-app subscription for the add-on:

procedure TfSubsriptions.btnSubscribe(Sender: TObject);
var
  Status: StorePurchaseStatus;
begin
  try
    WindowsStore1.RefreshInfo;
  except
    // 
  end;

  for var i := 0 to WindowsStore1.AppProducts.Count - 1 do
    begin
      if WindowsStore1.AppProducts[i].StoreId.ToString = 'XXXXXXXXXXXX' then 
        begin
          try
            Status := WindowsStore1.PurchaseProduct(WindowsStore1.AppProducts[i]);
            case Status of
              StorePurchaseStatus.Succeeded:
                begin
                  SUBSCRIPTION := True;
          UpdateUI;
                  Break;
                end;
              StorePurchaseStatus.AlreadyPurchased:
                //
              StorePurchaseStatus.NotPurchased:
                //
              StorePurchaseStatus.NetworkError:
                //
              StorePurchaseStatus.ServerError:
                //
            else
              //
            end;
          except
            On e : Exception do
              begin
                //
                Break;
              end;
          end;
        end;
    end;
end;
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @remy-lebeau
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Taras

79670570

Date: 2025-06-18 11:51:41
Score: 1.5
Natty:
Report link
const queryClient = new QueryClient();


createRoot(document.getElementById("root")).render(
  <QueryClientProvider client={queryClient}>
    <App />
  </QueryClientProvider>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bibek Sah

79670567

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

Resolved by setting config.fs file on device.mk
TARGET_FS_CONFIG_GEN += path/to/my_config.fs

And setting my_config.fs

[system/bin/foo_service]
mode: 0555
user: AID_VENDOR_FOO
group: AID_SYSTEM
caps: SYS_ADMIN | SYS_NICE

Reference https://source.android.com/docs/core/permissions/filesystem

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

79670560

Date: 2025-06-18 11:42:38
Score: 0.5
Natty:
Report link

I added the line into .bashrc and it works for me.

export NODE_OPTIONS='--disable-wasm-trap-handler'
Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Boorn

79670559

Date: 2025-06-18 11:42:38
Score: 3
Natty:
Report link

OK. Thank you. By redoing it all again to make some screenshots, I actually found what I was missing. "CONFIG_NF_CONNTRACK" is disabled by default on arm. Enabling it made NF_NAT available. My main mistake was, that I thought all possible options are always in the .config file just commented out if not active. This is obviously not the case. Thank you all.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user22600779

79670557

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

Also all paths should be from current file:

Wrong
import { Document } from "src/models";
Good
import { Document } from "../../models";
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Тимофей Ковалев

79670553

Date: 2025-06-18 11:39:37
Score: 1
Natty:
Report link

You can simply discard the right hand rotational constraint and project the arm onto the right-hand side of the target previous to each FABRIK iteration.

The solution in the previous reply is not a fix to this (I think it even shows in the example video).

The algorithm doesn't really malfunction or "get stuck", as the original questioner correctly noted, since it tries to right-hand rotate to the target when right-hand rotation is not allowed. Applying left-hand rotation to reach a right-hand target is not doable with FABRIK, except for the above work-around.

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

79670536

Date: 2025-06-18 11:30:35
Score: 1
Natty:
Report link

Add this line of code after importing pytz, to avoid the error:

pytz.all_timezones_set.add('Asia/Kolkata')

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

79670521

Date: 2025-06-18 11:18:31
Score: 0.5
Natty:
Report link

Creating a SharePoint list from a large Excel table (with thousands of rows and many columns) requires a method that ensures data integrity, avoids import limits, and allows for column type mapping. Here's a reliable, scalable approach using Power Automate (recommended) or alternatives like Access and PowerShell if you're dealing with very large datasets.


✅ Recommended Method: Power Automate (Flow)

Why?


📌 Step-by-Step via Power Automate

✅ Prerequisites:


🔄 Flow Outline:

  1. Trigger:

    • Use the manual trigger or schedule trigger (Recurrence) for automation.
  2. List rows from Excel:

    • Action: List rows present in a table

    • Connect to your Excel file in OneDrive or SharePoint

    • This reads the table rows; supports up to 256 columns

  3. Apply to Each row:

    • Use the Apply to each loop

    • For each row, use the Create item or Update item in SharePoint

  4. Create item in SharePoint:

    • Map each Excel column to the SharePoint list field

    • Supports all common data types (text, number, choice, date)


⚠ Tips for Large Files:


🚫 What to Avoid


🛠 Alternative Methods (for >10K rows)

1. Microsoft Access (One-time Imports)

2. PowerShell (For Admins)

powershellCopyEditImport-Module SharePointPnPPowerShellOnline
$excel = Import-Excel -Path "C:\Data\LargeFile.xlsx"
foreach ($row in $excel) {
    Add-PnPListItem -List "TargetList" -Values @{
        Title = $row.Title
        Status = $row.Status
        ...
    }
}

🏁 Final Best Practices


Reasons:
  • Blacklisted phrase (0.5): Why?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Emma

79670513

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

var startStatus = "less";

function toggleText() {
  var text = "Here is the text that I want to play around with";

  if (text.length > 12) {
    if (startStatus == "less") {
      document.getElementById("textArea").innerHTML = `${text.substring(0, 12)}...`;
      document.getElementById("more|less").innerText = "More";
      startStatus = "more";
    } else if (startStatus == "more") {
      document.getElementById("textArea").innerHTML = text;
      document.getElementById("more|less").innerText = "Less";
      startStatus = "less";
    }
  } else {
    document.getElementById("textArea").innerHTML = text;
  }
}

toggleText();
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Document</title>
</head>

<body>
  <div>
    <p id="textArea">
      <!-- This is where i want text displayed-->
    </p>
    <span><a
          id="more|less"
          onclick="toggleText();"
          href="javascript:void(0);"
        ></a
      ></span>
  </div>
</body>

</html>

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (1): i want
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: YOGALAKSHMI S

79670511

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

I think that your question is a monitoring question.

Triggering a build means sending a POST request to the server so you would like to intercept the requests to the server and log them (locally on an another server) to be reviewed later.

Does your jenkins receive the requests directly or does it use apache? If it uses apache(or other) then the solution would be to set the logging there - to log the requests and the cookies that come with them.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Gleb Nebolyubov

79670510

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

I had this same issue, but I discovered after several hours that it only seems to happen in the Android emulator. I tried out the same app on a real device, and the website rendered responsively as expected.

For some reason, when I query the device size in the webview, it thinks the device is wider than the emulator itself is, so I'm not sure if the problem is the website, the emulator, flutter or the webview 🤷

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: jeffrey.d.m

79670503

Date: 2025-06-18 11:04:27
Score: 2
Natty:
Report link

If the model hasn't been trained enough, it might just learn to repeat a single token. During inference, if the decoder input isn't updated correctly at each time step, it might keep predicting the same token. Without attention, it can be harder for the model to learn long dependencies, especially in vanilla encoder-decoder setups

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

79670499

Date: 2025-06-18 11:01:26
Score: 0.5
Natty:
Report link

Based on @Donald Byrd's answer, I have created a more optimized version. There's no need to recreate the entire structure—just ignore default or empty values.

public class CompactJsonExtantFormatter : CompactJsonFormatter
{
    /// <inheritdoc />
    public CompactJsonExtantFormatter(JsonValueFormatter? valueFormatter = null) :
        base(valueFormatter ?? new JsonExtantValueFormatter(typeTagName: "$type"))
    { }
}
/// <inheritdoc />
public class JsonExtantValueFormatter : JsonValueFormatter
{
    private readonly string? _typeTagName;

    /// <inheritdoc />
    public JsonExtantValueFormatter(string typeTagName) :
        base(typeTagName)
    {
        _typeTagName = typeTagName;
    }
    
    /// <inheritdoc />
    protected override bool VisitStructureValue(TextWriter state, StructureValue structure)
    {
        state.Write('{');
        char? delim = null;
        foreach (var prop in structure.Properties)
        {
            if (IsDefaultValue(prop.Value))
                continue;
            if (delim != null)
                state.Write(delim.Value);
            delim = ',';
            WriteQuotedJsonString(prop.Name, state);
            state.Write(':');
            Visit(state, prop.Value);
        }
        if (_typeTagName != null && structure.TypeTag != null)
        {
            if (delim != null)
                state.Write(delim.Value);
            WriteQuotedJsonString(_typeTagName, state);
            state.Write(':');
            WriteQuotedJsonString(structure.TypeTag, state);
        }
        state.Write('}');
        return false;
    }

    private static bool IsDefaultValue(LogEventPropertyValue value)
    {
        return value switch
        {
            ScalarValue { Value: null } => true,
            ScalarValue { Value: string s } when string.IsNullOrEmpty(s) => true,
            ScalarValue { Value: 0 } => true,
            ScalarValue { Value: 0L } => true,
            ScalarValue { Value: 0.0 } => true,
            ScalarValue { Value: 0.0f } => true,
            ScalarValue { Value: 0m } => true,
            ScalarValue { Value: false } => true,
            SequenceValue seq => seq.Elements.Count == 0,
            DictionaryValue seq => seq.Elements.Count == 0,
            StructureValue structVal => structVal.Properties.Count == 0,
            _ => false
        };
    }
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Donald
  • Low reputation (1):
Posted by: Maciej Ignatowski

79670493

Date: 2025-06-18 10:58:25
Score: 1.5
Natty:
Report link

You'll need to add the column names manually, but this will populate the df.

data = cursor.fetchall()

df = pd.DataFrame.from_records(data)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: T MacN

79670484

Date: 2025-06-18 10:49:23
Score: 3
Natty:
Report link

The ideal time is during peak anxiety or about 30 minutes before a known trigger. Consistency and timing should align with your treatment plan.

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

79670478

Date: 2025-06-18 10:47:22
Score: 1
Natty:
Report link

Kudos to Christophe who brought up MISRA C++ rule "An array passed as a function argument shall not decay to a pointer", which led me to find that clang-tidy and Microsoft have already implemented this check.

> clang-tidy f.cpp -checks=-*,cppcoreguidelines-pro-bounds-array-to-pointer-decay -- -std=c++20
65 warnings and 1 error generated.
B:\f.cpp:25:13: warning: do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead [cppcoreguidelines-pro-bounds-array-to-pointer-decay]
   25 |         PrintArray(arr);
      |                    ^
Suppressed 64 warnings (64 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.
Found compiler error(s).

and Visual Studio

Visual Studio

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

79670474

Date: 2025-06-18 10:46:22
Score: 1
Natty:
Report link

If your objective is to simply run your own job, there's a "Run next" option when you click on the job in the results tab:

Run next button

Couldn't find a way to cancel a job, unfortunately. From experience with the company behind Azure, I assume it's not implemented.

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

79670472

Date: 2025-06-18 10:43:21
Score: 2.5
Natty:
Report link
const myPromise = fetchData();

toast.promise(myPromise, {
  loading: 'Loading',
  success: 'Got the data',
  error: 'Error when fetching',
});

https://react-hot-toast.com/docs/toast

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

79670469

Date: 2025-06-18 10:42:20
Score: 0.5
Natty:
Report link

After a bit of research, the Moodle plugin Achim mentioned in his answer (that enables one to import questions as new versions) will work to fix issues with questions in live assignments (although, it will still be a bit time consuming if one has lots of instances of the problematic question).

Since the Moodle plugin for now only allows one to import one question as a new version of a single question, if one has n instances of a question, one would need to generate the XML and import as a new version for each of the n instances one-by-one. The random seed would need to be set to ensure the same random values are used in the old and updated versions of each instance.

One thing to note, if you just go and import the XML with each single instance as a new version, you will be met with the error "Exception - Your file did not contain exactly one question!" (even if your XML only contains one question). To get around this, just remove the highlighted lines from the XML where the category is specified. And then it will work from there.

enter image description here

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

79670466

Date: 2025-06-18 10:40:20
Score: 1.5
Natty:
Report link

You can navigate to the file using F4 by default. I often use this to open the file quickly. Maybe you can get used to that instead of double clicking?

Also I would advise you to use the merge editor, it can often automatically resolve conflicts and, while obviously making your workflow dependant on intellij, it usually is (for me anyway) faster to resolve the conflict that way.

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

79670454

Date: 2025-06-18 10:33:18
Score: 2.5
Natty:
Report link

We are probably getting a Format Exception because the API response isn't returning valid JSON often this happens when the request fails and returns an HTML error page instead (like a 404 or 403). It's a good idea to check the response before trying to decode it.

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

79670447

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

First I got "Error: Server responded with status code 403" when i tried to print the statusCode.

Adding headers like 'User-Agent' and 'Accept' helps the server accept your request and respond with the data you expect.( i told chatgpt to give me headers )

var response = await http.get(
                Uri.parse("https://jsonplaceholder.typicode.com/posts"),
                headers: {
                  'User-Agent': 'Mozilla/5.0',
                  'Accept': 'application/json',
                },
              );
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: JIHED

79670446

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

I created a package for this, called rect-observer.

Internally, it creates an intersection observer with margins calculated to include only the target rect. it also uses two resize observers to deal with cases where the object or margins become invalid.

I preferred this solution to position observer presented in other answer since it works with less intersection observers and works even when the target is not in the scroll visible area.

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

79670445

Date: 2025-06-18 10:29:15
Score: 8 🚩
Natty: 6
Report link

Maybe you can help me. Is this code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> still valid? If not would you be able to send me a correct code? I want to create a new website on CS5 Dreamweaver (2020) and want to make sure I put a correct head code on the new ebsite.

Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): you can help me
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Norbert Schulze

79670433

Date: 2025-06-18 10:23:14
Score: 2.5
Natty:
Report link
  1. Open Your Antivirus Software

  2. Navigate to Protection Menu

  3. Temporarily turn off the Web Shield, HTTPS scanning, or Secure connection scanning.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vaishnavi K Shylaji

79670430

Date: 2025-06-18 10:21:13
Score: 2.5
Natty:
Report link

either you have to find the event from db and set it to your match entity or create a new event and set it to your entity.

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

79670423

Date: 2025-06-18 10:19:12
Score: 3.5
Natty:
Report link

What's your project APP_URL?

Try to replace it for example:
My project name is:
example

Then APP_URL:
example.test

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What's you
  • Low reputation (1):
Posted by: Kishan

79670418

Date: 2025-06-18 10:15:11
Score: 1
Natty:
Report link

The Fused Library plugin bundled with Android Gradle Plugin assists with packaging multiple Android Library modules into a single publishable Android Library. This lets you to modularise your library's source code and resources within your build as you see fit, while avoiding exposure of your project's structure once distributed.

https://developer.android.com/build/publish-library/fused-library

Now you can try out the Fused Library plugin instead.

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

79670416

Date: 2025-06-18 10:14:11
Score: 0.5
Natty:
Report link

I met same error. However, in my case, it was simply because Hugging Face service had issues. After it recovered, the error is gone.

You can check latest Hugging Face status at https://status.huggingface.co/

enter image description here

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

79670411

Date: 2025-06-18 10:10:10
Score: 0.5
Natty:
Report link

Remove the stretchy='true' on the sigma.

This screenshot from Antenna House Formatter V7.4 GUI shows the same equation with one stretchy='true' removed:

Same equation with "stretchy='true'" removed from second sigma.

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

79670400

Date: 2025-06-18 10:06:09
Score: 1
Natty:
Report link

1 & 2 -

Clear, in and load variables are condition variables in your gen_bits module. But, you define this variables as a bit, 2-stated memory variable in your testbench.

So, any if/else/case block which checks these values in positive edge of the clock on your testbench, will get the left side value of these variables at the positive edge clock as expected.

Because you are reading a memory block end of the day, not checking an output of a combinational circuit.

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

79670398

Date: 2025-06-18 10:04:08
Score: 2
Natty:
Report link

Please find few of the Tuning we have done to reduce the Latency in GET/put. We dont say we have made it to work like < 1 ms,but brought atleast to 50 ms to 100ms. I have mentioned thought might be useful to some one who are/were facing similar issues

Key Points

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): facing similar issue
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Karthik_Rajendiran

79670387

Date: 2025-06-18 09:51:04
Score: 12
Natty: 7.5
Report link

I am facing the same problem, did you end up finding a solution to this?

Reasons:
  • Blacklisted phrase (1): m facing the same problem
  • RegEx Blacklisted phrase (3): did you end up finding a solution to this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tushar Sharma

79670385

Date: 2025-06-18 09:50:03
Score: 2.5
Natty:
Report link

The 6 digit code, called the shortcode, is returned in a GET organisations request. There is a link to this within the article that Doel posted above.

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

79670384

Date: 2025-06-18 09:49:02
Score: 2
Natty:
Report link

DSMR5 serial output uses inverted polarity comparing to UART. You should invert signal back before applying it to RX pin.

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

79670382

Date: 2025-06-18 09:48:02
Score: 0.5
Natty:
Report link

Assign it to a variable and return it once.

from typing import Literal, assert_never, reveal_type

def foo(x: Literal["a", "b"]):
    match x:
        case "a":
            result = 42
        case "b":
            result = "string"
        case _:
            assert_never(x)
    return result

reveal_type(foo)  # Pyright infers: (x: Literal['a', 'b']) -> Literal[42, 'string']
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Danilo Horta

79670368

Date: 2025-06-18 09:37:59
Score: 1
Natty:
Report link

I found this question while trying to solve the exact same issue. I am not sure if you have managed to solve this by now, but what I discovered is that the default value in the Helm chart for dags.gitSync.subPath is set to "tests/dags" so unless your DAG files are in that folder inside your repo the serialization process running on the scheduler pod never picks them up. They therefor never land up in your DB and the web frontend can't see them.

Setting this configuration parameter correctly for my repo structure solved my problem.

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

79670361

Date: 2025-06-18 09:34:58
Score: 4
Natty:
Report link

This deep link guide might help

https://developer.xero.com/documentation/guides/how-to-guides/deep-link-xero

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

79670360

Date: 2025-06-18 09:33:57
Score: 3
Natty:
Report link

The question is what do you want to do with the Formula tab?

are you trying to do something there eg create a named reference?

if not alt +M will take you to the Formula menu

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

79670353

Date: 2025-06-18 09:28:56
Score: 1
Natty:
Report link

We faced the same error after upgrading Rancher to v2.11.2.

I am not 100% sure, but I believe running fleet as a StatefulSet is no longer expected. Instead it is always running as a Deployment, so that you can have multiple pods for failover situations.

We managed to fix this error by triggering a complete re-deploy of the downstream fleet agent: https://fleet.rancher.io/troubleshooting#agent-is-no-longer-registered

Afterwards the StatefulSet got removed, a new Deployment created and the fleet-agent Pod ist running without any errors. The cluster can now be viewed in the Continuous Delivery interface and is "Active".

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

79670351

Date: 2025-06-18 09:28:56
Score: 1
Natty:
Report link

I Started using the ADO Task of Microsoft which will replace the json values in the zip file

steps:
- task: FileTransform@2
  displayName: 'File Transform: '
  inputs:
    enableXmlTransform: false
    jsonTargetFiles: paramters.json
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: karthik

79670339

Date: 2025-06-18 09:22:55
Score: 2.5
Natty:
Report link

Looking for a way to upvote; however we run several redis nodes and I'm also seeing this problem.

The issue is accentuated by the fact our instances are managed by redis sentinel (Also 8.x) which performs a CONF REWRITE when it performs a failover on replicated instances

Reasons:
  • Blacklisted phrase (0.5): upvote
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nick Lello

79670326

Date: 2025-06-18 09:12:52
Score: 0.5
Natty:
Report link

It sounds like your validation annotations @Email and @NonNull aren't being enforced when saving a @Document entity in MongoDB. Here are a few things to check:

  1. Ensure Spring Boot Validation Dependency
    Spring Boot doesn't include validation by default. You need to add this dependency in your pom.xml:
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-validation</artifactId>
</dependency>
    1. This ensures that Hibernate Validator (Jakarta Bean Validation) is available.

    2. Enable Validation in MongoDB Configuration
      Spring Data MongoDB requires a ValidatingMongoEventListener to trigger validation before persisting documents:

    @Configuration
    @EnableMongoRepositories("your.package.repository")
    public class MongoConfig {
        @Bean
        public ValidatingMongoEventListener validatingMongoEventListener(LocalValidatorFactoryBean factory) {
            return new ValidatingMongoEventListener(factory);
        }
    }
    
    1. This ensures that validation is applied when saving entities.

    2. Use @Valid in Service or Controller Layer
      If you're saving the entity manually, ensure that validation is triggered by using @Valid:

    3. public void saveUser(@Valid User user) { userRepository.save(user); }

    4. If you're using a REST controller, annotate the request body:

    5. @PostMapping("/users") public ResponseEntity createUser(@RequestBody @Valid User user) { userRepository.save(user); return ResponseEntity.ok("User saved successfully"); }

    6. Check MongoDB Schema Validation
      MongoDB allows schema validation using JSON Schema. If validation isn't working at the application level, you can enforce it at the database level.

    If you've already done all this and validation still isn't triggering, let me know what errors (or lack thereof) you're seeing! We can troubleshoot further.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Email
  • User mentioned (0): @NonNull
  • User mentioned (0): @Document
  • User mentioned (0): @Valid
  • User mentioned (0): @Valid
  • Low reputation (1):
Posted by: Akash Singhal

79670324

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

Yes, breadcrumbs can positively impact SEO, but they are not mandatory.

Why breadcrumbs help SEO:

They enhance internal linking structure, helping Google crawl your site better.

They often appear in Google search results as navigational links (known as breadcrumb-rich snippets).

They improve user experience and site hierarchy, especially for large or complex websites.

But removing them does not cause a penalty. It's just a missed opportunity, not a red flag.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vijay reddy 23

79670314

Date: 2025-06-18 09:06:50
Score: 2.5
Natty:
Report link

u have to code it for your self .... nvidia sell's u more work, not a complete solution, use rather ROCm, install driver and up u go with parallel processing .... if u re not coder, CUDA is useless (performance only on paper for over-overpriced GPU) ... throw away money for something that u need to use but something that u cant use anyway, designed that way to the core .... why u think they sell complete proprietary AI solutions for obnoxious amount of money (closed architecture so u re dependent on it) ? Think again ! They don't want people to run what so ever parallel processing on home workstations or powerhouse home PC's ! They only pretend for doing so, that's why people have so much headaches with it ! And open source is crap and junk at supporting parallel processing, i have try to use it, instead of dong data mining and testing models its all about the code and about code and not end user end results ! YES its not a RANT, its a TRUTH !

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jaff

79670311

Date: 2025-06-18 09:03:49
Score: 0.5
Natty:
Report link

you can try to use "use", I did like this when I got this problem, I added it after all the routes:

app.use(req: Request, res: Response) => {
    res.status(404).json({
        message: `The URL ${req.originalUrl} doesn't exist`
    });
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: FaFa

79670308

Date: 2025-06-18 08:59:48
Score: 1
Natty:
Report link

Another solution for supabase specifically:
Add topology to the extra search path

Go to Project Settings -> Configuration -> Data API
Change extra search path's value from public, extensions to public, extensions, topology

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

79670306

Date: 2025-06-18 08:58:47
Score: 3
Natty:
Report link

I am facing this exact problem. It would be a great help if you can share how you used TextureView instead of SurfaceView for PlayerView.

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

79670304

Date: 2025-06-18 08:57:47
Score: 0.5
Natty:
Report link
WITH    temp_table AS
        (SELECT  TO_DATE('01-JAN-2020', 'DD-MON-YYYY')  start_with_date
                ,DATEADD('Days', 0, start_with_date)    start_date
                ,DATEADD('Days', 1, start_with_date)    end_date
                ,1                                      level
         FROM   dual
        )
SELECT   DATEADD('Days', level, start_date) n_start_date
        ,DATEADD('Days', level, end_date)   n_end_date
        ,start_date
        ,end_date
        ,(level +1) AS level
FROM    temp_table
START WITH start_date = TO_DATE('01-JAN-2020', 'DD-MON-YYYY')
CONNECT BY
        start_date + LEVEL      >= PRIOR end_date
AND     end_date        < TO_DATE('01-JAN-2021', 'DD-MON-YYYY')
LIMIT 25
;
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: GC Shekar

79670300

Date: 2025-06-18 08:56:47
Score: 0.5
Natty:
Report link

You're absolutely right that %autoreload 2 is powerful — but it has one key caveat: it doesn't fully work with from module import something style imports. When you do:

from mymodule.utils import my_function

Python stores a reference to my_function in your notebook's namespace. If the function's code changes in the source file, the reference doesn't automatically update — auto reload can’t help you here because it's only watching the module, not the symbol reference.

Solutions

Best Practice (Recommended): Use Module-Level Imports

Instead of importing individual functions, import the module:

import mymodule.utils as utils

Then use:

utils.my_function()

This way, %autoreload 2 can detect and reload the updated code.

Alternative : Manually Reload + Reimport

If you really want to keep using from ... import ..., you can manually reload and re-import:

import importlib

import mymodule.utils

importlib.reload(mymodule.utils)

from mymodule.utils import my_function # re-import the updated version

Still a bit messy, but much faster than restarting the kernel.

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

79670298

Date: 2025-06-18 08:56:47
Score: 3.5
Natty:
Report link

It's ok to look at the code, can you confirm the settings of Lambda proxy integration on the AWS console?

enter image description here

After changing the API Gateway settings, you need to republish for them to take effect.

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

79670291

Date: 2025-06-18 08:50:45
Score: 1.5
Natty:
Report link

Use PHP with language files (like .po/.mo or associative arrays), serve clean URLs with language slugs (e.g., /en/, /fr/), and set proper <html lang="">, hreflang tags, and localized meta tags for SEO. Tools like Pairaphrase can help manage translations more efficiently across large content sets.

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

79670290

Date: 2025-06-18 08:50:45
Score: 3
Natty:
Report link

Check that the .sh file is in CRLF format.
Must be in LF format.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 문준호

79670285

Date: 2025-06-18 08:47:45
Score: 2.5
Natty:
Report link

Seems like the issue was that the script rc.update_crl called by exec() reloads php-fpm daemon at some point which completely shuts down the script that makes the exec call (the one above).

So, this explains why I could not see any instruction executed after exec() call.

Thank you all for your help and quick responses !

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

79670284

Date: 2025-06-18 08:45:44
Score: 2.5
Natty:
Report link

Is it possible also to change che colour of the group label in objectlistview ?
I know this is a huge limitation of winforms since windows vista, but maybe there are some ownerdraw example ready available to be used in ObjectListView as well.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (0.5):
Posted by: user2991288

79670281

Date: 2025-06-18 08:40:43
Score: 3.5
Natty:
Report link

Using `EntityFrameworkCore\` solved the issue

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

79670264

Date: 2025-06-18 08:31:40
Score: 2
Natty:
Report link

make a safe copy in a fisical notepad (old school whriting stuff) for passwords etc.

and in another page write all the cookies names and sites related to those cookies

some ways to find about the cookies my implie to use tracerout tools or whois tools

go and delete preferably your browser config files

and before you start again your browser go to your network router and in the firewall settings try to block all the sites or ip related to the cookies that cause trouble

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

79670257

Date: 2025-06-18 08:19:37
Score: 3
Natty:
Report link

It might be that the Quartz API level considers the deletion successful, but the actual persistence or cluster synchronization fails

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

79670250

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

Just adding to the list of solution. I have faced the similar problem before. All I did was to update/add the admin user with an Email (turn on email verified), added both the "First Name" and the "Last Name" too, and the problem went away. Hope this helps.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Max

79670244

Date: 2025-06-18 08:11:35
Score: 2
Natty:
Report link

To build gRPC 1.46.x, you'll need Abseil, as it's a required dependency. For the smoothest experience, it's best to use the versions of Abseil and Protobuf specifically referenced by the gRPC 1.46.x branch.

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

79670241

Date: 2025-06-18 08:09:34
Score: 1.5
Natty:
Report link

It worked when I added this code. Thanks for helping.

if (!empty($_GET['s'])) : ?>
<input type="hidden" name="s" value="<?php echo esc_attr($_GET['s']); ?>">
<?php endif; ?>
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): It worked
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Lisa

79670240

Date: 2025-06-18 08:07:34
Score: 2.5
Natty:
Report link

probably you are in an env without it installed type pip install tensorflow and you will be fine

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

79670229

Date: 2025-06-18 08:01:32
Score: 2.5
Natty:
Report link

I was looking for the same solution. ScriptMan's answer worked for me.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bence Zovits

79670226

Date: 2025-06-18 07:59:31
Score: 2
Natty:
Report link

I got the same error, where I am using window Machine. You can just resolve this by using this simple steps.

import os

import certifi

os.environ['SSL_CERT_FILE'] = certifi.where()

#certifi.where() - it take the paths directly.

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

79670213

Date: 2025-06-18 07:49:29
Score: 2
Natty:
Report link

To confirm, you're looking to understand how to invoke a Bedrock agent.

Take a look at this article on the AWS KB that provides some sample code in the comment.

https://repost.aws/questions/QUcVSATe0bRJCCs7ibxz8-Dg/how-do-i-use-java-sdk-to-invoke-an-bedrock-agent

Unlike with conversation AI's like AWS Lex, these LLM's take much longer to respond.
So you cannot expect a synchronous response like you would get from Lex.

Instead, you need to wait for the response to come through in chunks before putting them together to get the final, completed response.

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

79670206

Date: 2025-06-18 07:44:28
Score: 0.5
Natty:
Report link

vcpkg has learned the --classic command line switch that can be used to force classic mode even if a manifest file was found.

To be used like this:

vcpkg install --classic <portname>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jobor

79670205

Date: 2025-06-18 07:44:28
Score: 1
Natty:
Report link

Now Android Github action with Gradle Managed Device are working now, see running pull requests

https://github.com/hannesa2/testing-samples/pulls

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-2):
Posted by: hannes ach

79670201

Date: 2025-06-18 07:43:27
Score: 1.5
Natty:
Report link

I found the cause and a workaround from Flutter github. The issue appears when showing a form with textfields in a dialog using the following widgets hierarchy:

showDialog -> Material -> Stack -> [form_with_text_fields, ... other widgets]

To solve the issue in Firefox and Safari embed the Stack in a SelectableArea:
showDialog -> Material -> SelectableArea -> Stack -> [form_with_text_fields, ... other widgets]

Reference: https://github.com/flutter/flutter/issues/157579

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

79670198

Date: 2025-06-18 07:38:26
Score: 5
Natty:
Report link

after executing this script: matching the findtext sp is dropped and i cannot find the SP in the database !! ideally updated SP should be there...
not working for me.

Declare @spnames CURSOR
Declare @spname nvarchar(max)
Declare @moddef nvarchar(max)
Set @spnames = CURSOR FOR
select distinct object_name(c.id) 
from syscomments c, sysobjects o 
where c.text like '%findtext%'
and c.id = o.id
and o.type = 'P'    
OPEN @spnames
FETCH NEXT
FROM @spnames into @spname
WHILE @@FETCH_STATUS = 0
BEGIN   
    Set @moddef =
    (SELECT
    Replace ((REPLACE(definition,'findtext','replacetext')),'ALTER','create')
    FROM sys.sql_modules a
    JOIN 
    (   select type, name,object_id
    from sys.objects b
    where type in (
    'p' -- procedures
    )
    and is_ms_shipped = 0
    )b
    ON a.object_id=b.object_id where b.name = @spname)              
    exec('drop procedure dbo.' + @spname)
    execute sp_executesql @moddef
    FETCH NEXT FROM @spnames into @spname
END
Reasons:
  • Blacklisted phrase (1.5): i cannot find
  • Blacklisted phrase (0.5): i cannot
  • RegEx Blacklisted phrase (3): not working for me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arsha Hasan

79670194

Date: 2025-06-18 07:34:25
Score: 2.5
Natty:
Report link

If the code runner icon is not showing even after installing Python + Python extension and Code runner extension than you need to right click on the (Split editor right - icon present on the right top ) and tick the option [Run or Debug] ...It will solve your problem for sure, signing off adi.

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

79670193

Date: 2025-06-18 07:32:24
Score: 1.5
Natty:
Report link

I looked all day for the answer for this same question and stumbled upon the answer this morning.

When creating an Office Addin using Office JS API and Angular they run in a SharedRuntime Enviroment. This shared runtime means that every TaskpaneId has to be the same Id for Office JS to know they are the same application. The Title and Source Location can be different.

Additionally, ensure that your manifest supports the Ribbon API

Contextual Tab Json
Manifest XML File Taskpane Action

Ribbon Api Support in Manifest XML

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

79670184

Date: 2025-06-18 07:28:23
Score: 0.5
Natty:
Report link

looks like just a syntax error and typo based on your code provided.

#[On( 'selected-dateslot'"]

should be

#[On( 'selected-dateslot' )]

and your Dateslot component class, should be

public function selectedDateslot()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: elegisandi

79670167

Date: 2025-06-18 07:10:19
Score: 1.5
Natty:
Report link

Absolutely, Salesforce has the capacity to deliver sophisticated questionnaires with advanced business logic that will allow conditional logic, scoring, and questions that are used by an admin using either custom objects or Flow Builder. The above is an example of a simple scenario that a Salesforce Partner can easily implement. You can take the plunge into Flow Builder and custom objects to start building, or you can reach out to a partner using the Salesforce Partner Finder.

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

79670160

Date: 2025-06-18 07:04:18
Score: 1.5
Natty:
Report link

We use a little tool called gt to pull files from a git repository. I think this could help with this. It includes GPG signature verification and can syncing can be automated with GitHub workflows. It's available and documented at GitHub: https://github.com/tegonal/gt

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

79670158

Date: 2025-06-18 07:04:18
Score: 3
Natty:
Report link

enter image description here

I found that after the latest release version 1.6.0 of Stetho, changes were made to fix the compatibility issue between the new version of Chrome and Stetho. Therefore, the Stetho 1.6.0 imported from remote Maven cannot find the app process. It is recommended to pull the official repository and then upload it to MavenLocal.

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

79670154

Date: 2025-06-18 07:01:17
Score: 1
Natty:
Report link
 $date = date("d-m-Y"); 
        $filename = "$date.txt"; 
        $data = "Date: $date, LastName: $Lastname, Phone: $phone, Payment: $payment, Room No: $roomno, Lock No: $lockno\n"; 
        $file = fopen($filename, "a"); 
        fwrite($file, $data); 
        fclose($file); 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jaimini bharatbhai Shyora

79670151

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

For reference, this problem seems to to be related to changes Google introduced on or around Nov 18, 2020 and reverted (at least partially) about a week later. See these posts in Google Docs Editors Help pages.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: João Manuel Rodrigues

79670143

Date: 2025-06-18 06:58:16
Score: 0.5
Natty:
Report link

First!

If you do not call .send() within 30 seconds the connection will be closed. If you want to keep it alive forever, send heartbeat to client.

sseEmitter.send(SseEmitter.event().name("heartbeat").data("keep-alive"));

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

79670120

Date: 2025-06-18 06:40:11
Score: 0.5
Natty:
Report link

If you are using Kentico 9 for email marketing and want to customize your NewsletterSubscription web part, this guide may help.

I had a requirement to add a required checkbox field to the default subscriber form — for example, a user consent or agreement checkbox that must be ticked before subscribing.

Kentico’s official documentation suggests modifying subscriber fields through the Modules application:
https://docs.kentico.com/k82/on-line-marketing-features/email-marketing/working-with-email-campaigns/managing-email-marketing-subscribers

I made changes in the Newsletter - Subscriber class using the module system table and added a new Boolean field (checkbox).

Here’s what happens:

More on editing system tables here:
https://docs.kentico.com/k9/custom-development/editing-system-tables

This approach works well if you want to collect extra information or enforce specific terms for subscriptions.

Let me know if you’ve tried this on newer versions of Kentico or used conditional logic with macro rules for checkbox validation.

Reasons:
  • Blacklisted phrase (1): this guide
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ritik Dhall

79670104

Date: 2025-06-18 06:23:06
Score: 5
Natty: 5.5
Report link

For who is looking for the referenced pdf: https://web.archive.org/web/20090919234008if_/http://www.sphinx.at:80/it-consulting/upload/pdf/ECM_01.20009.pdf

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

79670103

Date: 2025-06-18 06:22:05
Score: 11 🚩
Natty: 4.5
Report link

were you able to fix the error? im facing same issue

Reasons:
  • RegEx Blacklisted phrase (1.5): fix the error?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: shoki s

79670100

Date: 2025-06-18 06:18:04
Score: 1
Natty:
Report link
Thanks to Selaka Nanayakkara for the response.I translated this answer into DolphinDB script and added the case for negative movement. 

def myRoll(x, mutable n) {
    len = size(x)
    n = n % len
    
    if (n == 0) return x
    
    if (n > 0) {
        result = move(x, n)
        result[0:n] = x[len-n:]
        return result
    } 
    else {
        n = abs(n)
        result = move(x, -n)
        result[len-n:] = x[0:n]
        return result
    }
}
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Boye

79670098

Date: 2025-06-18 06:17:03
Score: 1.5
Natty:
Report link

I am solving one DSA question I want extract character only to check whether given sentence is Palindrome or not, so I want to remove spaces and other punctuations following code is useful for it.

string str1;
        for(char c : str)
        {
            if(isalnum(c))
            {
                str1+=tolower(c);
            }
        }
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Prajwal Thorat

79670097

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

Maybe you should try set MouseArea{ preventStealing: true; }

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

79670094

Date: 2025-06-18 06:11:01
Score: 1
Natty:
Report link

To integrate a .h5 (Keras) model into your Flutter app, you’ll need to expose the model’s functionality through a backend service—since Flutter (written in Dart) cannot directly run Python code or load .h5 files.

Create a Python Backend Use a Python web framework like Flask or Django to:

Run this Flask app locally for testing or deploy it to a cloud service like Heroku, AWS, or Render for production. In your Flutter app, use http package to send data to the Python API and receive the prediction.

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

79670084

Date: 2025-06-18 05:56:57
Score: 11.5 🚩
Natty: 5.5
Report link

Did you find a solution to this in the end? I am facing the same issue.

(Not an answer? But I could not comment yet as I’m new here, so don’t have the “reputation” yet)

Reasons:
  • Blacklisted phrase (1): Not an answer
  • RegEx Blacklisted phrase (1.5): reputation
  • RegEx Blacklisted phrase (3): Did you find a solution to this
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find a solution to this in the
  • Low reputation (1):
Posted by: user30831107

79670082

Date: 2025-06-18 05:54:57
Score: 2
Natty:
Report link

Check Locking Logic: Ensure that locks are released properly after use.

Use Timeouts: Instead of indefinite waiting, set timeouts for acquiring locks.

Reduce Contention: Optimize the number of threads accessing shared resources.

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