79674762

Date: 2025-06-21 21:51:35
Score: 1.5
Natty:
Report link

Restore your vehicle’s shine with expert car paint correction in San Marcos, CA.
Our certified technicians specialize in swirl mark removal, scratch repair, and gloss enhancement.
Using multi-stage machine polishing, we bring back that showroom-quality finish.
We treat every car with precision detailing and the highest-quality products.
Say goodbye to oxidation and dull paint—your clear coat will thank you.
Perfect for daily drivers, luxury cars, and classics needing a refresh.
We’re locally trusted, fully insured, and backed by 5-star reviews.
Pair your correction with a ceramic coating for lasting protection and shine.
Enjoy competitive pricing and —no surprises.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: client work

79674760

Date: 2025-06-21 21:46:33
Score: 5
Natty: 5
Report link

Apple just announced a new webhook feature

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

79674752

Date: 2025-06-21 21:23:27
Score: 2
Natty:
Report link

You should not use the bootstrap js directly with Angular. Instead, use a library such as ng-bootstrap or ngx-bootstrap.

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

79674743

Date: 2025-06-21 21:02:22
Score: 1.5
Natty:
Report link

Solved - I had to downgrade yeoman to version 4.3.1, as mentioned here: How to downgrade Yeoman on linux using npm. I was using version 5 which still seems to have this issue. I used the following commands:

npm uninstall -g yo
npm install -g [email protected]

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

79674736

Date: 2025-06-21 20:51:19
Score: 2
Natty:
Report link

def create(conn, %{"my_file" => upload}) do

# upload is a %Plug.Upload{path, filename, content_type}

File.cp(upload.path, "/uploads/#{upload.filename}")

conn |> send_resp(200, "Uploaded!")

end

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

79674725

Date: 2025-06-21 20:26:12
Score: 3.5
Natty:
Report link

You may try snapDOM which is a new alternative to html2canvas

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Juan Martín

79674708

Date: 2025-06-21 19:29:57
Score: 4
Natty:
Report link

Just need to update the browser **Face palm**

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

79674707

Date: 2025-06-21 19:29:57
Score: 0.5
Natty:
Report link

What you have here is more like quite a big security research topic than a programming question ofc.

Briefly, you can't do the thing 100% on mac in a usable way, because the whole idea behind Apple marketing thing is user privacy, which can be broken and sold only by Apple and to Apple, not some 3rd-party apps.

Why remark about usable way? You can for sure write a kext, hook into all sort of things and monitor all sorts of APIs, but you should keep your SIP disabled then, and it is reasonably hard to make your users to do that.

Some parts of what you desire could still be done with SIP on: macOS keeps some source info in xattr of downloaded files(via browsers), ESF could correlate them with processes, with NetworkExtension you could do MitM and parse traffic to find possible uploads/downloads, etc. You may create a list of supported well-known apps, inspect what specific sequence of file/other events leads for each app to your high-level operations of interest, and detect it.

This will work in a way, it will fail some times, probably a lot, nothing new for a macOS 3rd-party security projects world.

However, the whole thing makes a little sense, because some app can for example request some data, hen keep it in memory without writing it on disk, then add another part of data on its own to the requested, wait for a hour making changes still in memory, then save the result on disk. But wait, not just writing to a new file, but adding to some existing one, which was created without internet. Well, but then (after a while), removing the content, that was not requested from web. And adding another pre-generated brick of data in the end. Is it a downloaded file or what? :)

If I open the text file and copy all its content (or all symbols except last one-two-ten) to pasteboard, then paste it in input field on a website - am I doing a file upload or not?

So maybe what you need here is to reconsider the goal in business terms, and return to it in tech terms then.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What you have
Posted by: Arthur Bulakaiev

79674706

Date: 2025-06-21 19:28:57
Score: 1.5
Natty:
Report link

I've encountered the same issue, and seems that when linking against debug libraries, you need to define V8_ENABLE_CHECKS=1 in your project.

I spent quite some time debugging this on a hello world example, until I realised this was needed.

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

79674698

Date: 2025-06-21 19:15:53
Score: 2
Natty:
Report link

Simply use the SUMIF function like this:
=SUMIF(E1:E, "YES", D1:D)

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Idris abou Mansour

79674679

Date: 2025-06-21 18:53:47
Score: 2
Natty:
Report link

Do the last update of Docker Desktop, it worked in my case

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Kev74

79674671

Date: 2025-06-21 18:44:45
Score: 3.5
Natty:
Report link

I keep getting a jassert for checkForDuplicateParamID when compiling.

I followed this tutorial on building a preset manager.

All my parameters are declared in a Parameters.h file like this:

#pragma once
#include <JuceHeader.h>

const juce::ParameterID gainParamID { "gain", 1 };

class Parameters
{
public:
    Parameters(juce::AudioProcessorValueTreeState& apvts);
    
    static juce::AudioProcessorValueTreeState::ParameterLayout createParameterLayout();

private:
    juce::AudioParameterFloat* gainParam;
    //==============================================================================
    JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (Parameters)
};

So the version hint is definitely in there. I don't have any errors. My JUCE project (in projucer) is set to version "1".

It's implemented like this:

layout.add(std::make_unique<juce::AudioParameterFloat>(
        gainParamID,
        "Output Gain",
        juce::NormalisableRange<float> { -12.0f, 12.0f },
        0.0f,
        juce::AudioParameterFloatAttributes().withStringFromValueFunction(stringFromDecibels)));

Adding in {"Output Gain", 1} after gainParamID throws an error (" Expected ')' "). The documentation says it's only in DEBUG mode, but I'd like to clear up this error before release.

Any ideas on how to resolve this? I much appreciate any input.

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Blacklisted phrase (1): Any ideas
  • RegEx Blacklisted phrase (1.5): how to resolve this?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: braintree

79674669

Date: 2025-06-21 18:40:44
Score: 3.5
Natty:
Report link

Any update or alternative solutions you found? I have a similar issue, want to upload a file that will be present inside a multi part form and want it to be true streaming, but getting same errors as written by you.

What seems to be the only solution is implementing the data gen by scratch, (done by chatgpt and it works) where we add each form data one by one and yield with boundaries.

Reasons:
  • Whitelisted phrase (-1): solution is
  • No code block (0.5):
  • Me too answer (2.5): I have a similar issue
  • Me too answer (0): getting same error
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Aayush Sharma

79674668

Date: 2025-06-21 18:38:38
Score: 7.5 🚩
Natty:
Report link
Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: Paridhi Pandey

79674664

Date: 2025-06-21 18:28:36
Score: 1
Natty:
Report link
Function BiQuadraticInterpolation(x As Double, y As Double, values As Range) As Double
    ' ... (Code as provided in the prompt, including coefficient calculations and interpolation) ...
End Function
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abdul Salam

79674663

Date: 2025-06-21 18:28:36
Score: 2
Natty:
Report link

user2237975 pointed to an example in the docs for writing a vector to a parquet file with parquet_derive. The version is outdated, but it's the same example. The latest link is here: https://docs.rs/parquet_derive/latest/parquet_derive/derive.ParquetRecordWriter.html

However, it does not work as is. I opened an issue and a PR to fix that here: https://github.com/apache/arrow-rs/issues/7732

To quickly test this example, you can also run:

git clone https://github.com/LanHikari22/rs_repro.git
cd rs_repro
cargo run --features "repro001"

Note that this is still limited and does not provide enum support for example. Only structs at the moment.

Optionally, my development journal for this can also be found at https://github.com/dism-exe/dism-exe-notes/blob/main/lan/llm/weekly/Wk%2025%20003%20Rust%20Parquet%20serialize%20and%20deserialize.md

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

79674653

Date: 2025-06-21 18:15:33
Score: 1.5
Natty:
Report link

You have multiple ways try the following create column F with the following formula
=IF(E2="YES", E2, 0)
Then drag it down till the end

Reasons:
  • Whitelisted phrase (-1): try the following
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Takashi-Doyle

79674651

Date: 2025-06-21 18:14:32
Score: 1.5
Natty:
Report link

One possibility for "if (f()) else if (g()) else if (h()) else ...":

This will choose the first true condition without requiring that only one condition be true. There's tradeoffs of how much parallelism you have, how much the conditions cost to evaluate, how deep in the if-else chain the code usually has to go, and find-first-set is usually limited to 64 bits. Usually other mechanisms will be cheaper than this. But this approach can handle unrelated independent conditions without any linear dependency chain.

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

79674650

Date: 2025-06-21 18:14:31
Score: 9.5 🚩
Natty: 5
Report link

use only @Restcontroller annotation and remove @component in your code and could you share endpoint which you are using for request?

Reasons:
  • RegEx Blacklisted phrase (2.5): could you share
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Restcontroller
  • User mentioned (0): @component
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Bhaskar

79674647

Date: 2025-06-21 18:09:29
Score: 3.5
Natty:
Report link

You're sending the wrong request and surprised it’s not JSON? It’s a POST endpoint. Read the damn network tab before copy-pasting like a bot.

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

79674646

Date: 2025-06-21 18:09:29
Score: 1.5
Natty:
Report link

Just had this and it was due to the 'postcss language support' plugin in vscode.

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

79674642

Date: 2025-06-21 18:04:28
Score: 2.5
Natty:
Report link

So not exactly sure why, but removing all widths, heights, and flex: 1 seemed to have fixed the issue. I don't quite understand why this is as I copied over a tutorial version of flatlist and it also wouldn't render properly but did in the tutorial. At least it is working now as I expect

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

79674623

Date: 2025-06-21 17:40:21
Score: 1
Natty:
Report link
CREATE OR REPLACE PROCEDURE CleanupShiftLogs 
AS
    SHIFTNOTE_COUNT_1 CONSTANT NUMBER := 200,
    SHIFTNOTE_COUNT_2 CONSTANT NUMBER:= 350,
    OLDER_THAN_MONTHS NUMBER := 2;

BEGIN

 

    -- SQL STATEMENTS --
END CleanupShiftLogs;

-- SHIFTNOTE_COUNT_3 CONSTANT NUMBER; -->  If it is a constant, you need to initialize it at declaration.
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: manisha

79674619

Date: 2025-06-21 17:31:19
Score: 1.5
Natty:
Report link

The error "Class not registered" usually means that the system is missing a required COM component. For ZKTeco attendance software, this typically refers to a missing or unregistered ZKEMKeeper.dll file.

### ✅ Here's how to fix it:

#### 1. Download the file:

You can safely download ZKEMKeeper.dll from trusted sources such as:

https://www.dll-files.com/zkemkeeper.dll.html

\> Be sure to scan the file before use.

---

#### 2. Copy it to the system folder:

- For *64-bit Windows*: C:\Windows\SysWOW64

- For *32-bit Windows*: C:\Windows\System32

---

#### 3. Register the DLL:

Open *Command Prompt as Administrator*, and run:

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

79674609

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

after some test we opted for:

Keep sensitive configurations in a private repository that mirrors your public repo’s structure.
Inject these files during local development and CI/CD builds, so no manual copying is needed and no secrets are ever committed to the public repo.

Key points:

below an article showing the details:

Manage Sensitive Configurations with Config Injection from Private Repositories
https://diginsight.github.io/blog/posts/20241214%20-%20Handling%20Private%20Configurations%20in%20Public%20Repositories/

hth

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

79674605

Date: 2025-06-21 17:07:13
Score: 1
Natty:
Report link

After 7 hours of debugging, I finally found the problem: someone, somewhere in the codebase, had overwritten the built-in JavaScript Proxy object. Naturally, since Chart.js relies on it, it couldn't create objects as intended. This was extremely difficult to debug and required commenting and uncommenting over 12,000 lines of code.

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

79674600

Date: 2025-06-21 16:56:10
Score: 2.5
Natty:
Report link

This is only a guess, but i am guessing for older phones the native is not working with the current framework of vercel. This is only a guess, so take this answer with a grain of sand

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

79674599

Date: 2025-06-21 16:48:08
Score: 1
Natty:
Report link
def is_palindrome_xor(s):
    s = ''.join(filter(str.isalnum, s.lower()))  # Normalize the string
    xor_sum = 0
    for a, b in zip(s, reversed(s)):
        xor_sum ^= ord(a) ^ ord(b)
    return xor_sum == 0
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nishant Singh

79674581

Date: 2025-06-21 16:12:59
Score: 3
Natty:
Report link

Use Port 80 instead of 5000. 80 is the default web traffic port and so wont be blocked by your firewall.

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

79674578

Date: 2025-06-21 16:09:58
Score: 2
Natty:
Report link

Yarn 2+ has removed its yarn global functionality completely, and you are stuck with yarn dlx. You can find this in their migration docs here: https://yarnpkg.com/migration/guide#use-yarn-dlx-instead-of-yarn-global

See also this GitHub issue: https://github.com/yarnpkg/yarn/issues/7884

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

79674564

Date: 2025-06-21 15:45:52
Score: 5.5
Natty: 6.5
Report link

What does the (title=Google") part do in APAD1's answer?

I have taken an HTML course in 2017 - 2018 and do not remember the title attribute.

Is it needed?

Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What do
  • Low reputation (1):
Posted by: Ron Mc

79674556

Date: 2025-06-21 15:40:50
Score: 4.5
Natty: 5
Report link

You all can use this npm package:
https://www.npmjs.com/package/react-navify

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Md. Tanvir Hasan

79674549

Date: 2025-06-21 15:28:47
Score: 2.5
Natty:
Report link

Start has moved from Vinxi to Vite in their recent release: release v1.121.0, which requires Vite 6+. I was able to fix this issue by migrating my project from Vinxi to Vite using the linked guide.

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

79674546

Date: 2025-06-21 15:24:46
Score: 1
Natty:
Report link

Ok, I found the root cause, because R under WSL gave me a more meaningful error message.

Solution was:


install.packages("MTS")
library("MTS")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: BerndGit

79674543

Date: 2025-06-21 15:14:43
Score: 0.5
Natty:
Report link

I've come up with a fairly inelegant solution to achieve the double join (thanks to r2evans for the terminology and the point in the right direction!):

# Step 1: split dt1 into apple and pear tables
apple_dt <- dt1[type == "apple"]
pear_dt <- dt1[type == "pear"]

# Step 2: merge dt2 with apple_dt, and dt2 with pear_dt 
merged_apple <- merge(dt2, apple_dt[ ,':='(type=NULL)] , by.x = "apple", by.y = "id")
names(merged_apple)[4]<-"apple.value"
merged_pear <- merge(dt2, pear_dt, by.x = "pear", by.y = "id")

# Step 3: cbind() and rename
dt3 <- cbind(merged_apple, merged_pear$value)
names(dt3)[5]<- "pear.value"

dt3

# Key: <apple>
#    apple   pear measure apple.value pear.value
#    <char> <char>   <num>       <num>      <num>
# 1:      a      d       1           1          1
# 2:      a      d       2           5          8
# 3:      b      d       1           1          1
# 4:      b      d       2           9          8
# 5:      c      f       1           4          9
# 6:      c      f       2           2          5
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: tpotter

79674533

Date: 2025-06-21 15:02:39
Score: 7 🚩
Natty: 5.5
Report link

How do.i get my old zangi back. Im.not good at trct stuff I need help

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (2.5): I need help
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How do
  • Low reputation (1):
Posted by: Barbara

79674531

Date: 2025-06-21 14:57:38
Score: 1
Natty:
Report link
from operator import itemgetter

l =[{'value': 'apple', 'blah': 2}, 
 {'value': 'banana', 'blah': 3} , 
 {'value': 'cars', 'blah': 4}]

#option 1
new_list_1 = list(map(itemgetter("value")))


#option 2
def get_value(i):
    return i["value"]
new_list_2 = list(map(get_value, l))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ntuthuko Hlela

79674511

Date: 2025-06-21 14:38:32
Score: 2
Natty:
Report link

This is for CompTia Test out Security Pro Compare an MD5 hash. For this Lab you have to get both hashes and literally copy and paste the value with -eq in-between.

"copy paste release.zip hash value here" -eq "copy and paste release821hash.txt hash value here"

It will return false.

There are better more efficient ways to do this but for the lab you have to literally copy and paste the hash value you receive in the first part of the lab.

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

79674507

Date: 2025-06-21 14:34:30
Score: 1
Natty:
Report link

this error comes - Fatal error: Uncaught Error: Class "Mpdf\Mpdf" not found in C:\xampp\htdocs\Project1\createPDF.php:23 Stack trace: #0 {main} thrown in C:\xampp\htdocs\Project1\createPDF.php on line 23

when i click on submit button for a form data , to create a pdf file. Please someone tell me what the exact problem is, even i required this also -

require_once __DIR__ . '/vendor/autoload.php';
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Mann

79674504

Date: 2025-06-21 14:31:29
Score: 1
Natty:
Report link
<?php
function stringToRandomClass($str, $max = 10) {
    $hash = crc32($str);
    $number = ($hash % $max) + 1;
    return "random$number";
}

$content = "Hello";
$randomClass = stringToRandomClass(substr($content, 0, 4));
?>

<div class="<?= $randomClass ?>"><?= htmlspecialchars($content) ?></div>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: bhushan todkar

79674499

Date: 2025-06-21 14:24:27
Score: 2.5
Natty:
Report link

It's been so many months, maybe you've already found the answer to your question, but assuming that hasn't happened, I read in some documentation that in docker you should inform "postgres" in application.properties instead of "localhost" as the postgresql address.

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

79674495

Date: 2025-06-21 14:16:25
Score: 1
Natty:
Report link

Maybe concatMap is what you're looking for? It will process all emitted events from the source observable in a sequential fashion (resembling a queue). In your example if you want to queue emissions from from(signUpWithEmail(email, password)) you'll need to replace map with concatMap.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
Posted by: Rokata

79674490

Date: 2025-06-21 14:10:23
Score: 1
Natty:
Report link

Nice work solving it by disabling constraints and triggers — I’ve dealt with similar FK-related copy issues before and know how frustrating it can get.

Just to add another option for similar situations:

I’ve built a tool for SQL Server that copies related data between tables within the same database — keeping foreign key relationships intact and remapping identity values where needed.

It’s useful when:

- You need to duplicate rows across related tables (e.g. copy an order with its items and comments)

- Foreign keys must be preserved correctly

- The insert order must follow dependency rules automatically

- You want to apply filters or dry-run first

- You prefer not to disable constraints or write custom scripts

It doesn’t handle cross-database migration, but for deep-copy scenarios inside one database, it can save a lot of time.

If anyone’s interested in testing it or giving feedback, I’d be happy to share it privately.

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

79674482

Date: 2025-06-21 14:00:20
Score: 1.5
Natty:
Report link

The issue occurred because, even after setting the bootClasspath to include the custom framework JAR containing hidden APIs, the Java compiler still failed to resolve them. This happened because a stripped-down version of the Android framework (such as android.jar or a renamed variant) was also present on the regular classpath. That stripped version doesn't include hidden APIs and was silently taking precedence during Java compilation. Kotlin was able to resolve the methods correctly because it relies on the full classpath, while Java strictly depends on bootClasspath and classpath. To resolve the issue, I explicitly removed the stripped framework JAR from the Java compiler’s classpath, ensuring that only my intended framework JAR was used. Once that was done, the hidden APIs were correctly recognized by the Java compiler. The key point is that setting bootClasspath is not enough—conflicting entries in the regular classpath must also be excluded to avoid shadowing.

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

79674478

Date: 2025-06-21 13:52:18
Score: 3.5
Natty:
Report link

Decided to go down the RESP API route as it seems a much more tidy way of accessing data on woo commerce / Wordpress.

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

79674475

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

There is now an excellent library to restore publishing to an @Observable: https://github.com/NSFatalError/Publishable. Import the package, add @Publishable to your @Observable classes. Access the per-member publishers via the new .publisher var. This solution gives you all the best of @Observable and requires almost no changes to existing Combine pipelines based on @ObservableObject. Disclaimer: I am not the author of this package, just an admirer.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Observable
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jiropole

79674473

Date: 2025-06-21 13:45:15
Score: 14 🚩
Natty:
Report link

I have same error. Did you solve it?

Reasons:
  • RegEx Blacklisted phrase (3): Did you solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • RegEx Blacklisted phrase (1): I have same error
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): I have same error
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ernesto Turco

79674471

Date: 2025-06-21 13:44:15
Score: 2.5
Natty:
Report link

MacroDroid does this just fine. Have to give it higher permissions and capability to run in background and never allow to sleep. Been running my security cameras macro for 2 years now with no issues.

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

79674467

Date: 2025-06-21 13:41:14
Score: 1
Natty:
Report link

It it was working before... It is probably that you have reached your plan's limit. You can check Copilot status:

Reach the Copilot configuration menu

In the first line you can see if you have reached your limit.

(You can change your plan here: https://github.com/features/copilot/plans)

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

79674464

Date: 2025-06-21 13:29:11
Score: 0.5
Natty:
Report link

AzureChatOpenAI supports chat completion models, including newer models like gpt-4o-2024-08-06. AzureOpenAI supports text completion models, but NOT chat completion models (like the new gpt-4 models). If you want to use gpt-4 models, stick with AzureChatOpenAI.

More info here, and in the top banner:

enter image description here

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ahmad Abdallah

79674462

Date: 2025-06-21 13:27:11
Score: 1
Natty:
Report link

Sign in command is hidden if you are signed in. (Dont ask why)

But you can chech your log in/out status and you can log in/out using the head image at the bottom of the left sidebar.

enter image description here

For more information: https://code.visualstudio.com/docs/copilot/faq

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

79674458

Date: 2025-06-21 13:24:10
Score: 1
Natty:
Report link

You can set containerColor to contentColor so ripple effect will not be visible.

TabRow(
    selectedTabIndex = ...,
    containerColor = backgroundColor,
    contentColor = backgroundColor,
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Milan Suchomel

79674456

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

Setting 'image-rendering:optimizequality;' works for me in Firefox.

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

79674451

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

I recently had to solve this exact problem in SQL Server — copying rows within the same tables (A → A, B → B) and making sure all foreign keys point to the newly inserted rows.

To handle it, I built a reusable migration tool that:

If anyone's interested in trying it out or giving feedback, I’d be happy to share it privately.

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

79674443

Date: 2025-06-21 12:55:02
Score: 2.5
Natty:
Report link

If you are using a Windows system, try using cmd instead of other command-line tools.

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

79674438

Date: 2025-06-21 12:49:00
Score: 1
Natty:
Report link

flutter build apk --split-per-abi

In Flutter this commond generates separate APKs for each ABI (CPU architecture) instead of one big APK.

File Name : - app-armeabi-v7a-release.apk :

APK built only for armeabi-v7a devices (older 32-bit ARM CPUs)

File Name : - app-arm64-v8a-release.apk:

APK for 64-bit ARM CPUs (modern Android devices)

File Name : - app.apk(Without --split-per-abi) :

A fat APK that includes all ABIs, larger in size

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

79674435

Date: 2025-06-21 12:46:58
Score: 6.5 🚩
Natty: 6.5
Report link

same probleme here using springboot 2025-06-21T13:37:01.346Z ERROR 21052 --- [AccessControle] [nio-8080-exec-3] c.book.accesscontrole.Zkt.ZKTecoService : ❌ Error retrieving attendance records: A COM exception has been encountered:

At Invoke of: GetGeneralLogData

Description: 80020005 / Le type ne correspond pas. can someone please help mee !!!

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • RegEx Blacklisted phrase (1): same problem
  • No code block (0.5):
  • Low reputation (1):
Posted by: manar krid

79674425

Date: 2025-06-21 12:25:52
Score: 2.5
Natty:
Report link

We developed a plugin to record screens of Android and iOS. It's very simple to use. With a single line of code, you can implement it in your game.

Check the plugin

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

79674423

Date: 2025-06-21 12:23:52
Score: 3.5
Natty:
Report link

Managed to make it work on Waveshare rp2040 zero?

Kindly confirm the pin mappings

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

79674419

Date: 2025-06-21 12:20:51
Score: 2
Natty:
Report link

What is Filmyzilla?

Filmyzilla is a torrent-based piracy website that provides free downloads of movies and TV shows. Its specialty is leaking Bollywood, Hollywood (dubbed in Hindi), South Indian films, and even web series from major streaming platforms. The content is usually available in multiple formats and resolutions—ranging from 360p to 1080p or even 4K in some cases.

Unlike legitimate platforms, Filmyzilla operates illegally by distributing copyrighted content without the permission of the original creators or studios. That makes it part of a global problem: online piracy.


How Does Filmyzilla Work?

Filmyzilla works by obtaining digital copies of films or recording them in theaters using hidden cameras. These files are then compressed and uploaded to various servers around the world. The main website (and its many clones) provide download links or magnet links for torrents.

To stay ahead of law enforcement, Filmyzilla frequently changes its domain name. If one URL gets blocked, several more appear in its place. For example, domains like:

These variations are part of the site’s strategy to avoid permanent shutdown.

#filmyzilla #filmyzilla.com #filmyzilla.in #filmyzilla movies4u

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): What is
  • Low reputation (1):
Posted by: ibomma2025

79674415

Date: 2025-06-21 12:15:49
Score: 3.5
Natty:
Report link

Comment debuter en html, parceque j’suis un nouveau dans ce domaine

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

79674411

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

The new {shapviz} release 0.10.0 now supports this out-of-the box:

library(shapviz)
library(ggplot2)
library(gridExtra)

set.seed(1)

X_train <- data.matrix(`colnames<-`(replicate(26, rnorm(100)), LETTERS))
dtrain <- xgboost::xgb.DMatrix(X_train, label = rnorm(100))
fit <- xgboost::xgb.train(data = dtrain, nrounds = 50)
shp <- shapviz(fit, X_pred = X_train)
mshp <- c(a = shp, b = shp, c = shp)

sv_importance(mshp, kind = "bee", show_numbers = TRUE)

gives

enter image description here

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: Michael M

79674410

Date: 2025-06-21 12:04:46
Score: 0.5
Natty:
Report link

I wrote the following JavaScript function to generate a dynamic JSON object:
I sent data as json at LoadParams

.LoadParams(new { json = new JS("cl_getSearchModelAsJson") })

function cl_getSearchModelAsJson() {
    console.log("cl_getSearchModelAsJson started");

    let employeeBox = $("#_Employee").dxSelectBox("instance");
    let dateBox = $("#_DocDate").dxDateBox("instance");

    let empId = employeeBox ? employeeBox.option("value") : null;
    let docDate = dateBox ? dateBox.option("value") : null;

    let jsonObject = {
        EmployeeId: empId ,
        DocumentDate: docDate
    };

    return JSON.stringify(jsonObject);
}

Then in the controller, you can manually deserialize it into a C# model.

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

79674406

Date: 2025-06-21 12:00:46
Score: 0.5
Natty:
Report link

This has been relaxed in {shapviz} version 0.10.0 (soon on CRAN)

devtools::install_github("ModelOriented/shapviz")

The code in the OP now produces

enter image description here

(The only exeption is when interactions = TRUE . There, we are keeping the old behaviour to be able to quickly get the main effect and a couple of interactions in one shot.)

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: Michael M

79674390

Date: 2025-06-21 11:35:40
Score: 2
Natty:
Report link

Our 73V 42Ah lithium ion battery is designed to give you long-lasting performance, faster charging, and a smooth ride every time. Whether you’re riding an electric 2-wheeler like a scooter or bike, a 3-wheeler like an e-rickshaw or loader, or even using it in Telecom systems, our battery packs the energy you need—without the weight and hassle of older battery types.

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

79674374

Date: 2025-06-21 11:16:35
Score: 2
Natty:
Report link

Thanks to Gemini, I finally realized what the problem was: Sometimes, one or more Philosopher goroutines attempted to read from the permission channel before it was created by the Host goroutine. Since the value of the channel variable was still nil, they were getting stuck forever. All I had to do was create the channel in the main goroutine before starting the other goroutines.

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

79674373

Date: 2025-06-21 11:16:35
Score: 2.5
Natty:
Report link

I always use this tools: https://selqio.com/converters. Professional file converters for JSON, CSV, XML, Base64, URL encoding and more. Convert between data formats instantly with comprehensive validation and export options.

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

79674372

Date: 2025-06-21 11:14:34
Score: 1
Natty:
Report link
http.Response response = await http.post(
  Uri.parse('http://192.168.29.48:8000/api/login'),
  headers: {
    'Content-Type': 'application/json',
    'Accept': 'application/json',
  },

  body: json.encode({'email': email, 'password': password}),
);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mansi Jadav

79674370

Date: 2025-06-21 11:11:33
Score: 2
Natty:
Report link

I found an easy solution by using DocMan Package, please try it out.

final DocumentFile? pickDir = await DocMan.pick.directory();
// maybe to list all documents in the file, 
// this lists folders and files together, 
// there is a bool flag, dir.isFile; and more, 
await dir.listDocuments();

/// git it a try
Reasons:
  • RegEx Blacklisted phrase (1): I found an easy solution by using DocMan Package, please
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: kibugenza young king king

79674369

Date: 2025-06-21 11:11:32
Score: 6 🚩
Natty:
Report link

My comment from above:

import { useState, useEffect } from 'react'

function List({ cards }) {
  return <ul>
    {cards.map((card) => (
      <li key={card.id}>
        <h2>{card.name}</h2>
        <p>{card.location}</p>
        <p>Length: {card.miles} miles</p>
      </li>
    ))}
  </ul>
}

function App() {
  const [cards, setCards] = useState([]);

  useEffect(() => {
    const asyncFunction = async () => {
      const response = await fetch("https://67f56264913986b16fa4640a.mockapi.io/hikes")
      const data = await response.json()
      const filteredData = data.filter((data) => data.favorite == true);
      setCards(filteredData)
    }
    asyncFunction()
  }, [])

  return (
    <div id="favorite-hikes-div">
      <div>Navbar</div>
      <h1 id="favorites-header">Favorite Hikes</h1>
      <List
        cards={cards}
      />
      <div>Footer</div>
    </div>
  )
}

export default App

You are a new user and got some downvotes which is probably frustrating. As @estus-flask mentioned you do not have a minimal working example. Please provide one that means something similar to what I have above. It should include a main component, your list components and remove unnecessary components like NavBar and footer and replace them with empty divs or remove them entirely. Otherwise your question is great. it has a somewhat fitting title, you described what you tried in the past and your problem is clear. If you add this mve I will give you an upvote.

Reasons:
  • Blacklisted phrase (1): did not work
  • Blacklisted phrase (0.5): upvote
  • RegEx Blacklisted phrase (2.5): Please provide
  • RegEx Blacklisted phrase (2): downvote
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @estus-flask
  • Low reputation (0.5):
Posted by: Huhngut

79674361

Date: 2025-06-21 10:57:27
Score: 1.5
Natty:
Report link

Yes, you can include formatting hints in your JSON response by adding metadata. For example:

{ "value": 5, "format": { "backgroundColor": "red" } }

Your frontend can read this and style the cell accordingly. Avoid sending actual functions in JSON — instead, send conditions or flags the frontend can interpret.

If you need to format or clean your JSON for testing, this JSON Formatter tool is quite handy.

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

79674358

Date: 2025-06-21 10:55:27
Score: 2
Natty:
Report link
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ali Mert Erdoğan

79674353

Date: 2025-06-21 10:43:23
Score: 5.5
Natty:
Report link

I feel like this should be a very simple thing to do but my knowledge of unity is not great

If you need any more information please ask!https://dev-myservice123.pantheonsite.io/

And thank you in advance for helping.

TO BETTER KNOW

Reasons:
  • Blacklisted phrase (0.5): thank you
  • RegEx Blacklisted phrase (3): thank you in advance
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Anthony Mark

79674350

Date: 2025-06-21 10:41:22
Score: 2.5
Natty:
Report link

Okay for any one else that has this problem.

When I generated the tile based on the sprite it set the flag dropdown to "Lock color" which made it unchangeble...

setting this to "none" ficed my problem

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: Nico Shultz

79674345

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

I think you can do this just by using a plugin called Uncanny Automator it’s awesome! I had been searching for a solution like this for over 3 months. With this plugin, you can create a recipe where you set a trigger and an action. For example: if a user passes an exam, the plugin can automatically mark a specific course or lesson as completed, and much more.

The free version already includes a lot of useful options, and some of you might consider upgrading to the pro version for additional features.

Please let me know if this helps! I’m also still searching for a way to mark courses as complete for users who already passed an exam in the past but didn’t open the lessons, so they aren’t being marked as complete.

You can refer to this topic and reply either here or there. Thanks for your help!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): this plugin
  • Whitelisted phrase (-0.5): Thanks for your help
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Taha Amin

79674332

Date: 2025-06-21 09:54:10
Score: 1.5
Natty:
Report link

we can do without presist midlleware also like make custom middleware for the fetching data form backend and its use in the redux like when the user relaoding or the redux state will lost time it wil automatically run through the help of he useffect and dispatch the credential to the redux state also .

This is one of my opinion you can reserch about and you can implement by your logic

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: SHARON T.S

79674330

Date: 2025-06-21 09:48:09
Score: 3
Natty:
Report link

I also had the same issue. Finding which plugin was causing this was tough so i just switched from php 8.2 to 8.1 and the error went away.

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

79674322

Date: 2025-06-21 09:38:06
Score: 3
Natty:
Report link

Seem not problem, but we use Telegram.WebApp.initData, you can check what's the difference between 'initData' and 'initDataUnsafe'.

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

79674319

Date: 2025-06-21 09:37:06
Score: 2
Natty:
Report link

All hex value from 0% to 100% alpha, You can set any color with alpha values mentioned below link.

Add as bookmarks ,if helpful for all the color Alpha or Opacity .

https://gist.github.com/lopspower/03fb1cc0ac9f32ef38f4

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

79674313

Date: 2025-06-21 09:25:02
Score: 2
Natty:
Report link

100% working .

Go to extension (ctrl+shift+X) and search for GitHub Copilot and uninstall it. Note that just disabling do not work , you have to uninstall it and reopen the vs code .This will definitely work.When ever you want it you can easily download

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Durga satyaveni Amanchi

79674312

Date: 2025-06-21 09:24:02
Score: 0.5
Natty:
Report link
The ffmpeg command 

    ffmpeg -i sample.mp4 -vf "crop=496:279:0:0,setdar=16/9" output.mp4


only  keep DAR 16:9 ,height will be converted to 278 ,SAR converted to 278:279.

Setting resolution as 480*270 can keep all arguments unchanged:

    ffmpeg -i sample.mp4 -vf "crop=480:270:0:0,setdar=16/9" output.mp4


Now SAR=1:1 ,DAR=16:9.
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: showkey

79674310

Date: 2025-06-21 09:22:01
Score: 2
Natty:
Report link

Note: The overflow-x being set in CSS on the local host is visible, but on the GitHub pages/site, it renders perfectly.

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

79674303

Date: 2025-06-21 09:09:57
Score: 2
Natty:
Report link

Update:

I found this exact bug marked as solved in .net maui 9 release notes, so the solution was migrate the whole application from .net8 to .net9 and the bug magically disappeard

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

79674294

Date: 2025-06-21 09:03:55
Score: 1
Natty:
Report link

If you have pip install alembic done correctly which can be verified using pip show alembic , then do it from the terminal / cmd , sometime the console of the third-party application like vscode,intellij or others acts wierd.

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

79674292

Date: 2025-06-21 09:02:55
Score: 0.5
Natty:
Report link

You're right to investigate this—an 8-second initial load time is definitely on the high side for a Blazor Server app, even with EF Core.

Even though you're warming up the DbContext, that only helps with one part of the cold start. EF Core model building typically takes less than 1.5 seconds, so the remaining delay likely comes from other parts of the application.

Here are a few things to consider:

  1. Blazor Server Cold Start
    Blazor Server apps need to initialize SignalR connections, Razor components, and set up dependency injection. These steps can add a few seconds, especially during the first request after deployment or application pool recycling.

  2. EF Core Model Precompilation
    Instead of building the EF model at runtime, you can pre-compile it during build time to reduce startup time. This is available in EF Core 7 and above.

  3. Logging Can Help
    Try enabling detailed logging during startup to see which parts are taking time. That might help you isolate whether it’s SignalR, dependency injection setup, or something else.

  4. ReadyToRun Compilation
    If you’re running the app from source or in development mode, just-in-time compilation can also cause delays. Publishing with ReadyToRun enabled (available in .NET publish options) can help reduce this.

  5. Check for Auto-Migrations
    If EF Core is applying database migrations on startup, that can add significant delay. Make sure migrations are not triggered automatically unless that’s expected.

To summarize, warming up the DbContext is a good move, but it's only part of the picture. The rest of the delay is likely due to app-level startup costs, not just EF Core. Pre-compiling the EF model, enabling detailed logging, and trying ReadyToRun publish can all help narrow this down.

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

79674290

Date: 2025-06-21 08:57:53
Score: 0.5
Natty:
Report link

Set the line width before rendering

system("Rscript -e \"require(rmarkdown); options('width'=100); rmarkdown::render('test_rmarkdown.Rmd', 'html_document')\"")

There's nothing to blame. knitr is doing a nice thing and avoiding overriding width on its own.

Perhaps the blame should be on the default value of width in R. It is 72.

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

79674289

Date: 2025-06-21 08:56:53
Score: 1
Natty:
Report link

If nothing works, simply hide scroll bar using css.

<style>
body{
overflow-x: hidden,
}
</style>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: bhargav3vedi

79674284

Date: 2025-06-21 08:49:51
Score: 2.5
Natty:
Report link

i'm using python, and I reverted mcp lib back to v1.8.1 and the client session initialization works, something changed between 1.8.1 and 1.9.0, not sure what was it. I noticed response code was 200 OK (v1.9.*) vs. 202 ACCEPTE (in v1.8.1).

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

79674283

Date: 2025-06-21 08:49:51
Score: 3
Natty:
Report link

Renaming the extension to .gif solved the problem for the windows image viewer. Windows image viewer specifically seems to honor the extension rather than signature markers.

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

79674281

Date: 2025-06-21 08:45:49
Score: 4
Natty:
Report link

But why we need to explicitly add

import static com.github.tomakehurst.wiremock.client.WireMock.*;

Isn't adding wiremock dependency to pom.xml enough

Can some one clarify

Reasons:
  • RegEx Blacklisted phrase (2.5): Can some one clarify
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Choodamani

79674272

Date: 2025-06-21 08:37:47
Score: 2
Natty:
Report link

@hero-truong/adminjs-relation — it's free and allows overriding components in AdminJS. It might help with customizing relation fields or forms. Make sure to check the documentation for integration.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Trương Thanh Hùng

79674268

Date: 2025-06-21 08:36:47
Score: 1.5
Natty:
Report link

Use s3-upload-stream with SDK v2, set the part size to ~10MB–50MB (tunable), and pipe your input stream directly.

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

79674261

Date: 2025-06-21 08:18:41
Score: 1.5
Natty:
Report link

I would recommend having a separation of principle. Here is a simple structure to start from.

  1. Controller: Receives your DTO e.g. "Book".

  2. Mapper: Translates a DTO to a DAO, later you can also a Sanitizer somewhere at this level.

  3. Repository: Saves into db. e.g. dao.insertBook().

Controller should be a simple interface to declare the endpoint at best it should even do some exception handling. Inserting your DTO as a DAO can cause some issues, security wise especially.

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

79674246

Date: 2025-06-21 08:05:38
Score: 1.5
Natty:
Report link

Seems like Plotly doesn't support chart selection the way I would like to, and I have to use HTML Canvas, but that's not really a problem. I just grouped the charts together with Plotly's subplots and created a Canvas above the whole chart. Since I know where the user clicks and where the diagrams are, it's not too hard to calculate the maths needed and draw the rectangles on the Canvas accordingly. May have performance issues with a larger data set and multiple subplots, but that needs further investigation. The idea is basically this and the question is solved.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Henrik Hollósi

79674238

Date: 2025-06-21 07:30:29
Score: 1.5
Natty:
Report link

Make sure the useRouter is from next/navigation and not from next/router.

If that doesn't work, try using a Link element to trigger the modal, perhaps the router.push doesn't work.

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

79674231

Date: 2025-06-21 07:21:27
Score: 0.5
Natty:
Report link

This function doesn't look like usual React. It is taking a parameter (src), not an object ({src})

export default function Thumbnail(src){

Try changing it to

export default function Thumbnail({src}){
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: asdofindia

79674229

Date: 2025-06-21 07:15:25
Score: 4.5
Natty:
Report link

I think you can do this just by using a plugin called Uncanny Automator it’s awesome! I had been searching for a solution like this for over 3 months. With this plugin, you can create a recipe where you set a trigger and an action. For example: if a user passes an exam, the plugin can automatically mark a specific course or lesson as completed, and much more.

The free version already includes a lot of useful options, and some of you might consider upgrading to the pro version for additional features.

Please let me know if this helps! I’m also still searching for a way to mark courses as complete for users who already passed an exam in the past but didn’t open the lessons, so they aren’t being marked as complete.

You can refer to this topic and reply either here or there. Thanks for your help!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): this plugin
  • Whitelisted phrase (-0.5): Thanks for your help
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Taha Amin

79674206

Date: 2025-06-21 06:34:15
Score: 2
Natty:
Report link

If there is a way to do this, it is to reverse the elements of the list. So put first item to last position then remove it from top when scroll down and put last item to the top then remove it from last. Actually this method usefull for symetric lists. because user not to notice item changes.

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

79674205

Date: 2025-06-21 06:33:15
Score: 1
Natty:
Report link
package repositories

import (
    "context"

    "go.temporal.io/sdk/workflow" // @TODO: remove this
)

type WorkflowClient[C interface{}, T interface{}, U any] interface {
    Connection() C
    Connect() error
    ExecuteWorkflow(ctx context.Context, options T, workflow interface{}, args ...interface{}) (U, error)
    ExecuteChildWorkflow(ctx workflow.Context, workFlow interface{}, args ...interface{}) workflow.ChildWorkflowFuture
}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30856387

79674197

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

without any library? the closest I can think of is writing PTX assembly by hand, and using system calls to send it directly to the GPU. It can be quite an adventure.

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