79521163

Date: 2025-03-19 19:09:13
Score: 9
Natty: 7.5
Report link

hi captain did you figure this out ?

Reasons:
  • RegEx Blacklisted phrase (3): did you figure this out
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: AndyB

79521161

Date: 2025-03-19 19:09:13
Score: 1
Natty:
Report link

I believe the reason is that the gradients are calculated for each epoch for every weight. If one epoch is over, the gradient found for the weights will be there for those weights. If we start the next epoch the gradients will be again calculated for the neurons and if the previous gradient value is already there then it will get added up to the new gradient thus making the result wrong.

EX:

1 epoch: gradient : 2

2 epoch: gradient : 3

if the zero grads are not used then the model will add both gradients and make a move-like. okay, 2+3 is 5 so we should reduce the weight by -5 so that I can reduce the loss function. But the needed gradient is just 3.

Hey, this is my point of view. If I am wrong kindly guide me

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

79521143

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

The free trial probably does matter; if I had to guess, you do not have enough RAM, and the process is getting killed. Can you add more logging?

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

79521138

Date: 2025-03-19 18:59:12
Score: 3
Natty:
Report link

Could you reach out to Clerk support with a minimal reproduction of this? We can get this fixed up for you quickly I am sure!

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Jeff Escalante

79521137

Date: 2025-03-19 18:59:12
Score: 5
Natty:
Report link

I'm having the same issue as well. Still trying to figure it out. As others have already mentioned, 'npm start' is deleting the the blocks/blocks-manifest.php file. While 'npm run build' works fine and regenerates the manifest file, it's just annoying having to run it every time a file is changed/saved.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alec Plescia

79521136

Date: 2025-03-19 18:59:11
Score: 4
Natty:
Report link

I was on an old bundler. Upgrading now

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

79521117

Date: 2025-03-19 18:50:09
Score: 1.5
Natty:
Report link

def copy_formatting(openpyxl_sheet, from_col, to_col):

   .... magic happens here ....

   return openpyxl_she

Python-Phone-Location-Tracker

et

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

79521115

Date: 2025-03-19 18:49:09
Score: 1
Natty:
Report link

Using Realm with SPM rather than pods seems to eliminate the issue

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

79521114

Date: 2025-03-19 18:49:09
Score: 1
Natty:
Report link

Interestingly enough, my package was installed correctly, but the Nuget package name <aaa.bbb.ccc.ddd> was not the same as the namespace that I needed to reference <aaa.bbb.xxx.yyy>.

if that's not what does it for you, here's a list of other items I tried:

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hillary

79521111

Date: 2025-03-19 18:47:08
Score: 0.5
Natty:
Report link

According to the boost docs:

binary_traits should be instantiated with either a function taking two parameters, or an adaptable binary function object (i.e., a class derived from std::binary_function or one which provides the same typedefs). (See §20.3.1 in the C++ Standard.

a lambda doesn't meet either of those criteria, so it is not surprising that it doesn't work as-is. You will likely need to change your function to take a std::function (or applying a concept to enforce the boost::binary_traits requirements) instead of an arbitrary callable,

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

79521110

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

if _links not used cannot fetch embedded data. I need author data so I am using:
url.com/wp-json/wp/v2/posts?_fields=title,content,_embedded,_links&_embed=author

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Suleyman Aliyev

79521108

Date: 2025-03-19 18:44:08
Score: 1
Natty:
Report link

You can store the AutoCloseable instance and close it explicitly in an @AfterEach method:

private AutoCloseable closeable;

@BeforeEach
void setUp() {
    closeable = MockitoAnnotations.openMocks(this);
}

@AfterEach
void tearDown() throws Exception {
    closeable.close();
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Miguel Angel Gonzalez

79521102

Date: 2025-03-19 18:40:07
Score: 3
Natty:
Report link

In SqlServer Configuration manager, change the Sql Server LaunchPad and Daemon Launcher components to disabled state and stop both of them. This will resolve the popup issue.

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

79521097

Date: 2025-03-19 18:39:04
Score: 11 🚩
Natty:
Report link

I got that error too. Did anyone solve this problem?

enter image description here

Reasons:
  • RegEx Blacklisted phrase (3): Did anyone solve this problem
  • RegEx Blacklisted phrase (1.5): solve this problem?
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: melodyxpot

79521096

Date: 2025-03-19 18:39:04
Score: 2.5
Natty:
Report link

Use https://www.photopea.com/ It's a free browser photoshop that you can upload your svg, make edits (if needed) then export as png.

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

79521092

Date: 2025-03-19 18:36:03
Score: 0.5
Natty:
Report link

You can use the Map module from Core.

let t: Map.t<string, string> = Map.make()

let add = (key: string, value: string) => {
  t->Map.set(key, value)
}

let x = add("foo", "bar")

Console.log(t->Map.get("foo")) // => "bar"

https://rescript-lang.org/docs/manual/v11.0.0/api/core/map#value-set

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

79521081

Date: 2025-03-19 18:31:02
Score: 1.5
Natty:
Report link
=Countifs(A:A;"*"& B1 &"*")
A B C
1 Hello, my name is John, Hello, I'm John Hello, people =countifs(A:A;"*"& B1 &"*")
2 Hello, I'm John, Hello, people call me John Hello, my name is John =countifs(A:A;"*"& B2 &"*")
3 Hello, my name is John
4 Hello, people
=COUNTIFs(A:A;"*"& "Hello, people" &"*")

An image of the function test:enter image description here

The" *" means any expression before and after it, so that the function counts every cell that contains your expression.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: sedi

79521076

Date: 2025-03-19 18:29:02
Score: 1
Natty:
Report link

https://github.com/awslabs/aws-c-iot is not SDK, it's just used as one of the dependencies for C++ IoT SDK and provides some functionality related to IoT Device.

So, answering to your question. If you need C SDK to interact with AWS IoT services, https://github.com/aws/aws-iot-device-sdk-embedded-C looks like the right choice.

As for Yocto recipe. I found some tutorials and third-party recipes, but they're pretty outdated. I believe you'll need to make your own version.

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

79521074

Date: 2025-03-19 18:28:01
Score: 1.5
Natty:
Report link

When you attempt to connect to a Bluetooth device, the initial connection process involves establishing a link between your device and the remote device. This link is at the Bluetooth protocol level and does not yet involve specific services or ports. Here’s a breakdown of what happens:

  1. Bluetooth Link Establishment: When you initiate a connection to a Bluetooth device, the Bluetooth stack on your device establishes a physical link with the remote device. This involves exchanging information such as device addresses and supported protocols.

  2. Service Discovery: After the link is established, your device typically performs a service discovery process to identify the services (and their associated ports) that the remote device offers. This is done using the Service Discovery Protocol (SDP).

  3. Port Connection Attempt: Once the services are discovered, your device attempts to connect to the specific port associated with the desired service. If the port is incorrect or the service is not available, this connection attempt will fail.

  4. Disconnection: If the port connection attempt fails, the Bluetooth stack may then disconnect the link, resulting in the temporary "connected" status you observed.

Why It Showed Connected

Summary

The "connected" status you saw is due to the initial Bluetooth link being established successfully. The subsequent disconnection occurred because the specific port connection attempt failed. This behavior is typical of how Bluetooth connections work and is not necessarily specific to your Bluetooth manager. The network itself establishes the link first and then checks for the availability of the specific port or service.

Reasons:
  • Blacklisted phrase (1): This link
  • Long answer (-1):
  • No code block (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: Anant Arun

79521073

Date: 2025-03-19 18:27:01
Score: 2.5
Natty:
Report link

I had the same issue and I just disabled rosetta and installed a new machine. I didn't have to install LIMA.

enter image description here

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

79521070

Date: 2025-03-19 18:26:01
Score: 2
Natty:
Report link

Just use a href with a mailto like the sample below.

="<a href='mailto:[email protected]'>email us</a> "
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Dengineer

79521063

Date: 2025-03-19 18:21:00
Score: 3
Natty:
Report link

You should remove your NVM v1.2.X and reinstall v1.1.12. After that, you could install node 14.19.0 normally.

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

79521041

Date: 2025-03-19 18:11:58
Score: 2
Natty:
Report link
URI(x).then { "#{'https://' unless it.scheme}#{it}" }
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: idrozd

79521037

Date: 2025-03-19 18:08:57
Score: 3.5
Natty:
Report link

I have the same issue but with GoLand IDE. I executed the following to open a new project:

cd /Applications && ./GoLand.app/Contents/MacOS/goland dontReopenProjects

After that, I went to File > chose Invalidate Caches > ticked all boxes > clicked Invalidate and Restart.

Lastly, open your project back.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
Posted by: Yusril Maulidan Raji

79521033

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

You can set editor.suggestOnTriggerCharacters to false by entering the settings using ctrl+,.

If that doesn't work, it is probably being overridden by a language specific setting.

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

79521019

Date: 2025-03-19 18:02:56
Score: 0.5
Natty:
Report link

The error {"error":"not found"} indicates that your WordPress page isn’t rendering properly, possibly due to:

  1. Permalinks Issue • Go to Settings → Permalinks in your WordPress admin panel. • Click Save Changes (even without making changes) to refresh the permalink structure. • Now try accessing mysite.com/login again.

  2. Page Slug Conflict • Ensure there’s no conflict with the /login slug. WordPress might be clashing with a system page or plugin route. • Try renaming the page slug to something like /custom-login and check again.

  3. Theme Issue • Switch to a default WordPress theme like Twenty Twenty-Four to see if the issue is theme-related. • If this resolves the issue, your theme may have a custom route or filter affecting the /login page.

  4. Plugin Conflict • Although you mentioned disabling/enabling plugins, try these steps: • Deactivate all plugins. • Access the /login page. • If it works, activate plugins one by one to identify the conflicting one.

  5. Page Content Issue • Edit the Login page and ensure it has proper content. Sometimes an empty page or broken shortcode can cause issues.

  6. .htaccess Issue • Go to your WordPress root directory and open the .htaccess file. • Ensure it includes WordPress’s default rules:

    BEGIN WordPress

    RewriteEngine On RewriteBase / RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L]

    END WordPress

If missing, add these rules and save the file.

  1. Caching Issue • Clear your website cache (if you’re using a caching plugin). • Also, clear your browser cache or test in Incognito Mode.

  2. Endpoint Conflict

If you’re using WooCommerce or any security plugin, they may override /login. In this case: • Check for settings that define custom login URLs.

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

79521018

Date: 2025-03-19 18:00:55
Score: 5
Natty: 4
Report link

Is there a way to select just 1 option in a form?

So I link to a form and it auto-selects option 1 (checkbox).

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Is there a
  • Low reputation (1):
Posted by: Mike

79521017

Date: 2025-03-19 18:00:55
Score: 2
Natty:
Report link

I managed to create a custom subsampler that works, if you have any suggestions they are welcomed:

#include <torch/torch.h>
#include <optional>
#include <numeric>
#include <vector>
#include <cstring> 

class SubsetSampler : public torch::data::samplers::Sampler<std::vector<size_t>> {
    private: 
    std::vector<size_t> indices_; size_t current_; 

    public:
    // Type alias required by the Sampler interface.
    using BatchRequestType = std::vector<size_t>;

    explicit SubsetSampler(std::vector<size_t> indices)
        : indices_(std::move(indices)), current_(0) {}

    // Reset the sampler with an optional new size.
    // Providing a default argument so that a call with no parameters is allowed.
    void reset(std::optional<size_t> new_size = std::nullopt) override {
        if (new_size.has_value()) {
            if (new_size.value() < indices_.size()) {
                indices_.resize(new_size.value());
            }
        }
        current_ = 0;
    }

    // Returns the next batch.
    std::optional<BatchRequestType> next(size_t batch_size) override {
        BatchRequestType batch;
        while (batch.size() < batch_size && current_ < indices_.size()) {
            batch.push_back(indices_[current_++]);
        }
        if (batch.empty()) {
            return std::nullopt;
        }
        return batch;
    }

    // Serialize the sampler state.
    void save(torch::serialize::OutputArchive& archive) const override {
        // Convert indices_ to a tensor for serialization.
        torch::Tensor indices_tensor = torch::tensor(
        std::vector<int64_t>(indices_.begin(), indices_.end()), torch::kInt64);
        torch::Tensor current_tensor = torch::tensor(static_cast<int64_t>(current_), torch::kInt64);
        archive.write("indices", indices_tensor);
        archive.write("current", current_tensor);
    }

    // Deserialize the sampler state.
    void load(torch::serialize::InputArchive& archive) override {
        torch::Tensor indices_tensor, current_tensor;
        archive.read("indices", indices_tensor);
        archive.read("current", current_tensor);
        auto numel = indices_tensor.numel();
        std::vector<int64_t> temp(numel);
        std::memcpy(temp.data(), indices_tensor.data_ptr<int64_t>(), numel * sizeof(int64_t));
        indices_.resize(numel);

        for (size_t i = 0; i < numel; ++i) {
            indices_[i] = static_cast<size_t>(temp[i]);
        }
        current_ = static_cast<size_t>(current_tensor.item<int64_t>());
    }


};

Can be used during the loading of the dataset like this:

  auto train_dataset = torch::data::datasets::MNIST(kDataRoot)
                           .map(torch::data::transforms::Normalize<>(0.1307, 0.3081))
                           .map(torch::data::transforms::Stack<>());
  const size_t train_dataset_size = train_dataset.size().value();

  std::vector<size_t> subset_indices(subset_size);
  std::iota(subset_indices.begin(), subset_indices.end(), 0);

  SubsetSampler sampler(subset_indices);
  auto train_loader = torch::data::make_data_loader(
    std::move(train_dataset),
    sampler,
    torch::data::DataLoaderOptions().batch_size(kTrainBatchSize));
Reasons:
  • RegEx Blacklisted phrase (2): any suggestions
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: IlBowsta

79521013

Date: 2025-03-19 17:59:55
Score: 1
Natty:
Report link

React is using synthetic events, so you won't be able to access them with the normal webapis.

let addTodo = evt => {
  ReactEvent.Form.preventDefault(evt)
  let formElem = ReactEvent.Form.currentTarget(evt) // type is {..} which is a record
  let value = formElem["0"]["value"] // access the values on the record
 // do stuff with value
}

playground link: https://rescript-lang.org/try?version=v12.0.0-alpha.9&module=esmodule&code=LYewJgrgNgpgBAQQA5LgXjgbwFBzgAQCcYBDAYwBcA6MkYJEAOxkYtzlgrmBIGt4MACgCU6AHxZ2eTnBJgwAFXAh0cQTABuFAFxwAUgGcAHgFENLagDEQhYFQqi0EnHlccYXAPqrNFALRihqbmrFTWtlRIxCEUACIwAGYk0Gxu0h5wXBi+AUFmFmE2dmQQhMSsCiSEAOYeUq4yGiRQEAKZANoARAAMnQC6XU0tMP3Y9XgAwkwGILBUUCDVgkOtwvUAvmNuADxi43DbABYAjM4ASqSUVAYUhACWjEudAOowULTA8BQqFIfwCgB5WIAxAoTrCdYHAD0Jz2aQOCSKcCYAGUIAAjYB3ChoTByRTKSE3ACesFxF3IcQBAFkqCiKKSYFQePxBAA-MB3AxIKAkYloToJWBGToAGjUwghcPhBweSAgqRleEYJE+Aoo2NgnX2bgZSBgnnVMCMFG1SrwJLJmAplGBtPpjOZfBg7M53N5-M66IWZF4YolEJ1cCh0vh23RCu+jDglpg5MuVPtDLmLJdbJ4NQeABlEjjOgA2JAi8UiKVBvDWhPXW4PJ4IeRwJRgEDgzZK7ZQiMUKOh1wdxG2Xt4I4AJnOVZu90egk6TZABm0rehhzH9Q70s2myAA

Regarding bindings to the webapis, there is an effort to add webapi bindings directly to the language with patterns that work better with ReScript 11+: https://rescript-lang.github.io/experimental-rescript-webapi/

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

79521007

Date: 2025-03-19 17:57:54
Score: 3.5
Natty:
Report link

Can you remove the Procfile and redeploy? Railway will automatically build it and run it with gunicorn.

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

79521004

Date: 2025-03-19 17:57:54
Score: 1
Natty:
Report link

Have you created the project already?

In order to attach a Module to a project, you need to create it first:

npx create-next-app@latest my-app
cd my-app

The package.json is going to be created, along with all other necessary files. Then you can run the commands to install the modules you want.

If the project already exists, make sure to run the command on the root directory (Where the package.json is located). Ex:

cd C:Documents\Next\my-app
npm install tailwindcss @tailwindcss/cli
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Rafael Goulart

79521002

Date: 2025-03-19 17:56:54
Score: 3
Natty:
Report link

I used the code JS code editor and it worked for me. Thank you @Rodrigo

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Rodrigo
  • Single line (0.5):
  • Low reputation (1):
Posted by: Valentin

79521000

Date: 2025-03-19 17:56:54
Score: 1
Natty:
Report link

The TrnAdd (Transaction Add) API can be used wit ha debit transaction code to increase the balance of an account. I will note that if this is an integral part of your integration (not just done for testing purposes), you will need to consider creating balanced transactions in the core.

https://jackhenry.dev/open-enterprise-api-docs/enterprise-soap-api/tutorials/transaction/createbalancedtransactions/

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

79520999

Date: 2025-03-19 17:55:54
Score: 0.5
Natty:
Report link

simply this way ?

let num = 123456789.12;

console.log(num.toLocaleString('fr-FR')); // 123 456 789,12

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Mister Jojo

79520995

Date: 2025-03-19 17:53:53
Score: 1.5
Natty:
Report link

I did my research on that, and it looks that it is something only for tables, views can not be created with a specified engine to make it work on clusters (sadly).

Here is an example to do it with the table anyway: https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-install-example-data.html

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

79520993

Date: 2025-03-19 17:52:51
Score: 9 🚩
Natty: 4.5
Report link

=SUMPRODUCT(($B$19:$B$5589=B4),SUBTOTAL(109,OFFSET(M19,ROW($M$19:$M$5589)-ROW(M19),0)))

I have the same issue. both work in excel and not GS. The one above totals $$$, while below counts rows.

ErrorSUMPRODUCT has mismatched range sizes. Expected row count: 5483. column count: 1. Actual row count: 1, column count: 1.

=SUMPRODUCT(SUBTOTAL(3,OFFSET(B19:B5592,ROW(B19:B5592)-MIN(ROW(B19:B5592)),,1,)),N(B19:B5592=H4))

ErrorSUMPRODUCT has mismatched range sizes. Expected row count: 1. column count: 1. Actual row count: 5483, column count: 1.

I have been trying many versions of the formulas and no luck so far for two days. Any help? TY

Reasons:
  • Blacklisted phrase (1): Any help
  • Blacklisted phrase (1): I have the same issue
  • Blacklisted phrase (1): no luck
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Tony Urbalejo

79520990

Date: 2025-03-19 17:51:50
Score: 1.5
Natty:
Report link

Since you are using http instead of https, make sur to set K_COOKIE_SECURE to false in shared->config->tce_config.php file
define('K_COOKIE_SECURE', true);

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

79520983

Date: 2025-03-19 17:47:49
Score: 1
Natty:
Report link

I Just use the following command and I found this useful for me. You can try it.

git config --global user.email "[email protected]"
git config --global user.name "Your Name"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: H Hasan

79520975

Date: 2025-03-19 17:42:48
Score: 1.5
Natty:
Report link

in which component are you using the providers ? try to create layout component specifically for the /client/[id]/onboarding route.

For example:

import { Provider } from '...';

export default function OnboardingLayout({ children }) {
  return (
    <Provider>
      {children}
    </Provider>
  );
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Aasem Shoshari

79520970

Date: 2025-03-19 17:37:48
Score: 3
Natty:
Report link

...two more consecutive reboots solved the issue. I was unable to determine the root cause.

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

79520966

Date: 2025-03-19 17:36:45
Score: 6.5 🚩
Natty:
Report link

What tailwind version you are using?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Tronic

79520957

Date: 2025-03-19 17:33:44
Score: 3
Natty:
Report link

For me this is because I am trying to do torch.zeros((all_actions_mask.shape[0], 1)).bool().to(device_id) ,do every operations to CPU solves this error.

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Luke

79520955

Date: 2025-03-19 17:32:44
Score: 4
Natty:
Report link

Command adb reverse tcp:3000 tcp:3000

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

79520940

Date: 2025-03-19 17:24:39
Score: 8.5 🚩
Natty: 5
Report link

Did you finally fix this error. I am stuck at the same place. Nothing I do is fixing it.

Reasons:
  • RegEx Blacklisted phrase (1.5): I am stuck
  • RegEx Blacklisted phrase (3): Did you finally fix this
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: adbury

79520931

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

isLoading is indeed returning undefined everytime. To address this, you can use isPending

const { isPending: isUpdating, mutate: updateSettings } = useMutation({})

So react query team has introduced isPending which works exactly the same as isLoading.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Wasim Khan

79520928

Date: 2025-03-19 17:17:37
Score: 2.5
Natty:
Report link

The script on this page helped (not copying it here as it requires registration, don't want to take their benefit away from them).

https://element.how/elementor-accordion-scroll-to-top/

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

79520923

Date: 2025-03-19 17:15:37
Score: 0.5
Natty:
Report link

I was able to accomplish this with the following code where I define the popup editer.

<editable mode="popup" template-id="popup-editor">
    <editable-window title="Add/Edit Collateral" width="80%" />
</editable>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Edney Holder

79520922

Date: 2025-03-19 17:14:37
Score: 3.5
Natty:
Report link

Hello i had exactly the same problem because i am using WSL your solution worked !

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

79520914

Date: 2025-03-19 17:10:36
Score: 0.5
Natty:
Report link

Virtual Environment Activation Guide (Windows and Ubuntu)

This guide provides instructions for activating Python virtual environments in Windows (Command Prompt and PowerShell) and Ubuntu (Bash).

1. Creating a Virtual Environment (Common Step)

Regardless of your operating system, create a virtual environment using the following command:

Bash

python -m venv venv_api

Replace venv_api with your desired virtual environment name.

2. Activating the Virtual Environment

3. After Activation

4. Deactivating the Virtual Environment (Common Step)

To deactivate the virtual environment, use the following command in all environments:

Bash

deactivate

Troubleshooting (Ubuntu):

Reasons:
  • Blacklisted phrase (1): This guide
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Liubomyr Halamaha

79520908

Date: 2025-03-19 17:09:33
Score: 7.5 🚩
Natty:
Report link

This is very good source to learn more about spacings.
However, i have tried to apply the methods shown here for subplots with twin axes, as shown below.

Somehow, it doesnt fit to the entire horizontal spacing of the figure, leaving some empty space.
Does anyone have faced similar issue and know how to solve it?

enter image description here

This is what i have tried:

mosaic = [["A", "A"],
          ["B", "C"]]

fig = plt.figure(dpi=600)

fig, axs = plt.subplot_mosaic(
    mosaic,
    layout="constrained",
    gridspec_kw={"height_ratios": [1.25, 1],
    "width_ratios": [1, 1.5]}  # Adjust widths: A = 1, B/C = any vals
)

plt.style.use("dark_background")
plt.suptitle('AQ_20 @ 223K', fontweight = 'bold')
# Titles and labels
axs["B"].set_title("Rocking scan")
axs["B"].set_ylabel("Intensity (a.u.)")
axs["B"].set_xlabel(r"$\Delta_{diffry}$ (deg.)")

axs["C"].set_ylabel("Intensity @ max. (a.u.)")
axs["C"].set_xlabel(r"$t$ (s)")

# Limits
axs["C"].set_xlim(-5, 410)
#axs["C"].set_ylim(1.30, 1.65)

axs["B"].set_xlim(-0.2, 0.2)
#axs["B"].set_ylim(-1, 22)

# axs["A"].set_ylim(2560, 0)
# axs["A"].set_xlim(0, 2160)
axs["A"].set_aspect("auto")
axs["A"].set_title("Local structure @ rocking max")
#axs["A"].axis("off")

axC_twin1 = axs["C"].twinx()
axs["C"].plot([0, 100, 200, 300, 400], [1, 2, 3, 4, 5], label="Primary y-axis", color='blue')
axC_twin1.plot([0, 100, 200, 300, 400], [5, 4, 3, 2, 1], label="Twin y-axis", color='red')
axC_twin2 = axs["C"].twinx()
axC_twin1.plot([0, 100, 200, 300, 400], [2, 2, 2, 2, 2], label="Twin y-axis", color='red')
axC_twin1.set_ylabel("$\Delta_{diffy}$", color='red')
axC_twin2.set_ylabel("FWHM (.deg)", color='green')
axC_twin2.spines['right'].set_position(('outward', 30)) 
Reasons:
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (1.5): how to solve it?
  • RegEx Blacklisted phrase (3): Does anyone have
  • RegEx Blacklisted phrase (2): know how to solve
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: oliveirals

79520902

Date: 2025-03-19 17:07:32
Score: 1
Natty:
Report link

Try adding this to your Info.plist file:


<key>FacebookAdvertiserIDCollectionEnabled</key>
<true />
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hamza Mihfad

79520901

Date: 2025-03-19 17:07:32
Score: 4
Natty:
Report link

I am indeed the OP. The answer struck me when I articulated my question here. Thought of posting the answer myself as it might help someone else. I would still be grateful if others add to this answer/point out any mistakes.

The answer is in declaration of hash_t. It is not a 'variable' pointer to type, but rather an array of type. In C we cannot reassign an array name to point to some different location. The code in question does this in the line hash_t hashTable[] = *hashTable_ptr;

Although one thing that I still don't understand is that, if I modify the function definition to:

void FreeHash(hash_t hashTable_ptr)

and then pass the dereferenced pointer to array while calling the function as:

FreeHash(*srptr->symTable);

Then the code works. If someone can answer that I'll be grateful.

This is the corrected code by the way:

void FreeHash(hash_t* hashTable_ptr) {

    varNode *prev, *curr;
    /* freeing each entry */
    for( int i = 0; i < HASHSIZE; i++ ) {
        prev = NULL;
        curr = (*hashTable_ptr)[i];
        while( curr != NULL ) {
            prev = curr;
            curr = curr->next;
            free(prev);
        }
        (*hashTable_ptr)[i] = NULL;
    }

    free(hashTable_ptr);
Reasons:
  • RegEx Blacklisted phrase (2): be grateful
  • RegEx Blacklisted phrase (2): I'll be grateful
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Newton's in-law

79520898

Date: 2025-03-19 17:07:32
Score: 2
Natty:
Report link

There is no value set for the below while running locally. Thanks for all the help

os.getenv('MYSQL_PORT')
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Aravind Koniki

79520895

Date: 2025-03-19 17:06:32
Score: 1
Natty:
Report link

I need to create an identifier column when importing the file into the database.

Then this is the solution:

https://dbfiddle.uk/wCjhjdGZ

Reasons:
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-2): solution:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: dog2bert

79520893

Date: 2025-03-19 17:04:31
Score: 0.5
Natty:
Report link

This is great and all but I wanted to share a way to know if the user has released the scrollView. That's basically when the user has stopped scrolling (even though the scrollView is still scrolling because of the velocity of the users drag.)

Here we would would need to check when the dragDetails is null. This is because the user isn't dragging the screen anymore. It isn't the best solution because there may be edge cases that I haven't seen yet but it works.🙌🏽

NotificationListener<ScrollNotification>(
  onNotification: (ScrollNotification notification) {
    if (notification is ScrollUpdateNotification) {
      if (notification.dragDetails == null) {
        // User has just released the ScrollView
        print('User released the ScrollView');
        // Your code to handle release goes here
      }
    }
    return true;
  },
  child: ListView.builder(
    itemCount: 50,
    itemBuilder: (context, index) => ListTile(
      title: Text('Item $index'),
    ),
  ),
)

(P.S, this is my first answer on StackOverflow. go easy on me🙇🏽)

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: lukasiuu

79520890

Date: 2025-03-19 17:03:31
Score: 1
Natty:
Report link

As of Python version 3.12 this is supported using the quoting value csv.QUOTE_STRINGS

See the documentation here

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

79520889

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

This code works fine for me:

return  ((ResponseStatusException) ex).getStatusCode().equals(HttpStatus.NOT_FOUND);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: NiLomy

79520886

Date: 2025-03-19 17:01:31
Score: 2.5
Natty:
Report link

Hidden imports are not visible to the pyinstaller.

This function implicitly imports modules. A class named ONNXMiniLM_L6_V2 from one of these modules. This class also uses importlib.import_module to import such dependencies as "onnxruntime", "tokenizers", and "tqdm".

So we need to deal with all these imports.

The issue with hidden imports

To reproduce this error, we need a minimal project for pyinstaller.


Environment:


Project sructure:

somedir\
  env # virtual environment directory
  pyinst # directory for pyinstaler files
  embedding.py # additional file for --onefile
  main.py

Python files:

embedding.py

def embedding_function():
    return "Hello"

main.py

import tkinter as tk

import chromadb

from embedding import embedding_function


root = tk.Tk()
label = tk.Label(root, text=embedding_function())
label.pack()
root.mainloop()

Steps to reproduce:

  1. Create the Python files and the pyinst directory in some directory.

  2. Run the following in cmd.

Volume:\somedir>python -m venv env

Volume:\somedir>env\scripts\activate

(env) Volume:\somedir>python -m pip install chromadb
...

(env) Volume:\somedir>python -m pip install pyinstaller
...

(env) Volume:\somedir>cd pyinst

(env) Volume:\somedir\pyinst>python -m PyInstaller "Volume:\somedir\main.py" --onefile -w
...


Pyinstaller will generate the necessary directories and the main.spec file.

pyinst\
  build # directory
  dist # directory, main.exe here
  main.spec

When I try to run main.exe I get the same error NameError: name 'ONNXMiniLM_L6_V2' is not defined.


pyinstaller_chromadb_hidden_import_error


Solutions


Hook and spec file


At this point, we need to create a hook for chromadb and edit the spec file to handle hidden imports.

  1. Create a hook file and save it to the desired location.

hook-chromadb.py

from PyInstaller.utils.hooks import collect_submodules


# --collect-submodules
sm = collect_submodules('chromadb')

hiddenimports = [*sm]
  1. Edit the spec file to add all the dependencies mentioned above.

Edit hiddenimports (--hidden-import) and hookspath (--additional-hooks-dir).

# -*- mode: python ; coding: utf-8 -*-


a = Analysis(
    ['Volume:\\somedir\\main.py'],
    pathex=[],
    binaries=[],
    datas=[],
    hiddenimports=['onnxruntime', 'tokenizers', 'tqdm'],
    hookspath=['Volume:\\path to the directory where the hook file is located'],
    hooksconfig={},
    runtime_hooks=[],
    excludes=[],
    noarchive=False,
    optimize=0,
)
pyz = PYZ(a.pure)

exe = EXE(
    pyz,
    a.scripts,
    a.binaries,
    a.datas,
    [],
    name='main',
    debug=False,
    bootloader_ignore_signals=False,
    strip=False,
    upx=True,
    upx_exclude=[],
    runtime_tmpdir=None,
    console=False,
    disable_windowed_traceback=False,
    argv_emulation=False,
    target_arch=None,
    codesign_identity=None,
    entitlements_file=None,
)

Run pyinstaller:

(env) Volume:\somedir\pyinst>python -m PyInstaller main.spec --clean
...

Now I can run main.exe without errors and see the root window.


CLI example


We do the same thing.

(env) Volume:\somedir\pyinst>python -m PyInstaller "Volume:\somedir\main.py" --onefile -w --collect-submodules chromadb --hidden-import onnxruntime --hidden-import tokenizers --hidden-import tqdm --clean

The generated spec file in this case:

# -*- mode: python ; coding: utf-8 -*-
from PyInstaller.utils.hooks import collect_submodules

hiddenimports = ['onnxruntime', 'tokenizers', 'tqdm']
hiddenimports += collect_submodules('chromadb')


a = Analysis(
    ['Volume:\\somedir\\main.py'],
    pathex=[],
    binaries=[],
    datas=[],
    hiddenimports=hiddenimports,
    hookspath=[],
    hooksconfig={},
    runtime_hooks=[],
    excludes=[],
    noarchive=False,
    optimize=0,
)
pyz = PYZ(a.pure)

exe = EXE(
    pyz,
    a.scripts,
    a.binaries,
    a.datas,
    [],
    name='main',
    debug=False,
    bootloader_ignore_signals=False,
    strip=False,
    upx=True,
    upx_exclude=[],
    runtime_tmpdir=None,
    console=False,
    disable_windowed_traceback=False,
    argv_emulation=False,
    target_arch=None,
    codesign_identity=None,
    entitlements_file=None,
)

You can do the same for other dependencies if they have hidden imports.

Reasons:
  • RegEx Blacklisted phrase (1): I get the same error
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I get the same error
  • Low reputation (0.5):
Posted by: 8349697

79520882

Date: 2025-03-19 17:00:30
Score: 2
Natty:
Report link

I had to use the following to get it working:

%environment
    export TINI_SUBREAPER=true
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user1849522

79520863

Date: 2025-03-19 16:54:29
Score: 3.5
Natty:
Report link

It's very annoying. I created this script to automate most things (except IP) on MacOS

https://gist.github.com/woutervanwijk/71c9d36cf38544c99f4b5399ca80fea3

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

79520862

Date: 2025-03-19 16:53:29
Score: 0.5
Natty:
Report link

It is entirely possible that messages with differing group id's will exist in a single batch.

There are three rules governing the order of messages leaving a FIFO queue, to help understand the processing behavior:

  1. Return the oldest message where no other message with the same MessageGroupId is in flight.

  2. Return as many messages with the same MessageGroupId as possible.

  3. If a message batch is still not full, go back to the first rule. As a result, it’s possible for a single batch to contain messages from multiple MessageGroupIds.

See https://aws.amazon.com/blogs/compute/new-for-aws-lambda-sqs-fifo-as-an-event-source/ for more information.

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

79520860

Date: 2025-03-19 16:53:29
Score: 1
Natty:
Report link

Thanks for your help. This worked after I changed the source dataset; SQL database. I think there is some weird behavior with Oracle database.

The preceding copy activity was against an Oracle database so I kept the log activity against the same source. When I changed the source to a SQL database it worked

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-0.5): Thanks for your help
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Swati Vishwanathan

79520855

Date: 2025-03-19 16:48:28
Score: 1
Natty:
Report link
On my side i had this trouble and was able to solve it by using a lamda expression to call my method  like this.

vscode.workspace.onDidCloseTextDocument((x)=>this.extensionCloseDocument(x));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vincent Roy

79520853

Date: 2025-03-19 16:47:28
Score: 2.5
Natty:
Report link

I would try tying it to onBlur which will trigger the input value to be saved to state when the input box loses focus.

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

79520848

Date: 2025-03-19 16:44:27
Score: 4.5
Natty: 4
Report link

This question is exactly something I'm thinking about but I want to go a step further. Once we have all the "raw data" indices of the incorrectly labeled data: what do we do? What sort of things can be done to analyze WHY something got labeled incorrectly?

There is LOTS of information on how to score the model performance, but what is the next level of troubleshooting? How do we start to analyze WHY things are being mislabeled?

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: TallGibbs

79520835

Date: 2025-03-19 16:39:26
Score: 0.5
Natty:
Report link

I got this error, too. I, also, did have a button that was linked to a procedure which was named like the module it was in. After i renamed the module, the error occurred. I had a version before my changes so tried some things.

What finally worked was:

I hope this helps!

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Charon

79520832

Date: 2025-03-19 16:39:26
Score: 0.5
Natty:
Report link

Recently I found how to disable suggestion list in C# and F# completely even after special characters like "." are typed. This is possible in Visual Studio 2022.

There is a checkbox in Options. Path to the checkbox: Options -> Text Editor -> All languages -> Auto list members. Uncheck this checkbox and after that completion list will not popup after "." automatically.

enter image description here

If you want to disable completion list to popup automatically after part of the statement already input in C#/F# you need to uncheck another checkbox in options. Path To the checkbox: Options -> Text Editor -> C# (F#) -> Show completion list after a chracter is typed.

enter image description here

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

79520822

Date: 2025-03-19 16:33:25
Score: 1.5
Natty:
Report link

This also happened to me, however for me it was because I had moved my overrides(which I saved on my desktop) folder earlier that day to clean up my desktop. Moved my folder back and it worked again.

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

79520817

Date: 2025-03-19 16:32:24
Score: 1.5
Natty:
Report link

If you still looking for the solution,
adding secretmanager.googleapis.com to both no_proxy and NO_PROXY does work.
make sure to source it.
If you have done it and its not working in you IDE, then make sure you kill the IDE and restart IDE again. This gets a new session for your IDE with updated env.

Reasons:
  • Blacklisted phrase (1): its not working
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: vineeth

79520810

Date: 2025-03-19 16:30:24
Score: 4.5
Natty:
Report link

I proposed an answer for a very similar question here: https://stackoverflow.com/a/79520750/5552507

It relies on plotly without html.

enter image description here

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

79520799

Date: 2025-03-19 16:24:22
Score: 3
Natty:
Report link

The semi-colon terminates the inner block, telling the parser that whatever comes next belongs to the outer block.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Allan K. Koech

79520795

Date: 2025-03-19 16:23:20
Score: 6 🚩
Natty:
Report link

How did you install the dotnet SDK? and how did you start your dotnet project?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How did you in
  • Low reputation (1):
Posted by: Gebz

79520789

Date: 2025-03-19 16:21:19
Score: 2.5
Natty:
Report link

In case anyone stumbles upon something similar in C#, here is the syntax for matching all kind of dashes: \p{Pd}

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

79520780

Date: 2025-03-19 16:17:18
Score: 2
Natty:
Report link

Well I realized yesterday the stupid thing I did that was causing a lot of my confusion. I thought I was supposed to create a page at /saml/acs to handle the response from the idP. Once I renamed that page to something else, the HttpModule handled everything for me and parsed/validated the response. It also authenticates the user using "Federated" cookie authentication, which I am not familiar with.

So now my question is, is there some way for me to simply get notified that the Saml validation was successful and let me handle the authentication using the normal ASP.NET "Forms" authentication? Basically I just need to look at the NameID coming from the Saml packet and use that to look up the corresponding user in my database and authenticate them.

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

79520772

Date: 2025-03-19 16:15:18
Score: 1
Natty:
Report link

All you have to do is:

  1. Drag the Interaction Use to the sequence diagram
  2. Click on the Interaction Use placed in the diagram
  3. In the menu located in the lower right corner of StarUml called "Editors", in the properties group, in the refersTo field, click on the magnifying glass and select the other sequence diagram in your project. But in fact, you will not select the sequence diagram you want itself, you will select the element immediately above the sequence diagram you want to reference, which is represented by an orange icon with two arrows, one pointing to the right and the other to the left, which comes with the default name called "Interaction1"
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Daniel Schiavo

79520770

Date: 2025-03-19 16:14:17
Score: 1.5
Natty:
Report link

I think most of the answers provided here are not working with Pandas 2.2.3 and Instead of saving the Series as CSV and loading back, I have saved the pandas object as pickle using df.to_pickle() and read it back using pd.read_pickle().

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

79520763

Date: 2025-03-19 16:13:17
Score: 1.5
Natty:
Report link
If your goal is to migrate from WSO2 IS 5.7.0 to 7.0.0, and you're using the same user store, you will need to migrate the existing database schema from the old version (5.7.0) to the new schema used by 7.0.0.
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ng Alicia

79520762

Date: 2025-03-19 16:13:17
Score: 0.5
Natty:
Report link

My webpack.config.js

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const webpack = require('webpack');

module.exports = {
  mode: 'development',
  devtool: 'source-map' ,
  context: path.resolve(__dirname, ''),
  entry: './src/camera.js',
  output: {
    path: path.resolve(__dirname, 'dist'),
    filename: 'bundle.js',
    clean:true,
  },
  devServer: {
    static: path.resolve(__dirname, ''),
    port: 3000,
    open: true,
    hot: true,
    //compress: true,
    historyApiFallback: true
  },
  plugins: 
  [
    new HtmlWebpackPlugin({
      template: './html/camera.html',
    }),
    new CleanWebpackPlugin(),
  ],
};
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Руслан Шигимага

79520759

Date: 2025-03-19 16:12:16
Score: 4
Natty:
Report link

consider reducing the batch size

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

79520757

Date: 2025-03-19 16:11:16
Score: 1
Natty:
Report link
<groupId>com.xebialabs.xldeploy</groupId>
<artifactId>xldeploy-maven-plugin</artifactId>
<version>23.1.0</version>

JDK17 to SOLVE API COMPATABILITY issue. use above version
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: uma mahesh

79520756

Date: 2025-03-19 16:11:16
Score: 1
Natty:
Report link

Yes, this is expected.

Angular applies it to inline scripts as well, as part of its effort to ensure that both inline scripts and styles are handled consistently when enforcing a CSP.

This behavior ensures that Angular works in environments where a CSP is enabled, and it prevents inline scripts and styles from being blocked

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

79520739

Date: 2025-03-19 16:04:14
Score: 4
Natty:
Report link

This issue should be fixed, see here:

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

79520736

Date: 2025-03-19 16:03:14
Score: 4
Natty:
Report link

In the end the issue was that i had more than one @ConfigInitializer within my test class hierarchy. This lead to different contexts.

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

79520726

Date: 2025-03-19 16:00:13
Score: 1.5
Natty:
Report link

I had a similar problem on libsoup 3.0 and linuxmint/cjs and this worked for me. It's been 10 years but I'm leaving this here in case someone will have the same problem and find this useful.

message.connect("accept-certificate", function () {
    return true
})
Reasons:
  • Whitelisted phrase (-1): this worked for me
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): have the same problem
  • Low reputation (1):
Posted by: PBnc

79520722

Date: 2025-03-19 15:58:13
Score: 2
Natty:
Report link

Try:

- Uninstalling and reinstalling Turbo C++
- Ensure you are installing the newest version.

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

79520718

Date: 2025-03-19 15:55:12
Score: 0.5
Natty:
Report link

Translated translation units and instantiation units are combined as follows:

The separate translation units of a program communicate by (for example) calls to functions whose identifiers have

Some or all of these translated translation units and instantiation units may be supplied from a library. Required instantiations may include instantiations which have been explicitly requested. It is implementation-defined whether the source of the translation units containing these definitions of the required templates are located is required to be available. Translation units can be separately translated and then later linked to produce an executable program.

Thus Instantiation units are similar to translated translation units, but contain no references to un-instantiated templates and no template definitions.

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

79520716

Date: 2025-03-19 15:54:12
Score: 4.5
Natty: 4
Report link

Given I'm doing this in C++, is it possible to define the function like this: int find(int &x): to save on memory use?

Reasons:
  • Blacklisted phrase (1): is it possible to
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: dominik findeisen

79520706

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

The site has shut down. While the developer has not given a official statement, it does seem that they are no longer upkeeping the servers, hence it is shut down.

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

79520705

Date: 2025-03-19 15:51:10
Score: 2
Natty:
Report link

the flag has been renamed "Insecure origins treated as secure"

and now has an input box to safelist your self-signed certificate domain names

enter image description here

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

79520702

Date: 2025-03-19 15:50:10
Score: 3
Natty:
Report link

readAsBinaryString() is deprecated but I wasn't able to make it work without it.

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

79520693

Date: 2025-03-19 15:47:10
Score: 3
Natty:
Report link

Your un-caught exception is coming from the finally block where you try to remove the job. This happens regardless of the success in your try block.

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

79520690

Date: 2025-03-19 15:46:09
Score: 1.5
Natty:
Report link

How can we use typmod if the TYPMOD_IN function parses and returns the correct typmod, but the INPUT function always gets -1 from:

Node * coerce_type(ParseState *pstate, Node *node, Oid inputTypeId, Oid targetTypeId, int32 targetTypeMod, CoercionContext ccontext, CoercionForm cformat, int location)
which says:

        /*
         * For most types we pass typmod -1 to the input routine, because
         * existing input routines follow implicit-coercion semantics for
         * length checks, which is not always what we want here.  Any length
         * constraint will be applied later by our caller.  An exception
         * however is the INTERVAL type, for which we *must* pass the typmod
         * or it won't be able to obey the bizarre SQL-spec input rules. (Ugly
         * as sin, but so is this part of the spec...)
         */
        if (baseTypeId == INTERVALOID)
            inputTypeMod = baseTypeMod;
        else
            inputTypeMod = -1;
Reasons:
  • Blacklisted phrase (1): How can we
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): How can we use
  • Low reputation (1):
Posted by: chernia

79520688

Date: 2025-03-19 15:45:09
Score: 2
Natty:
Report link

if you already have enabled AJAX under WooCommerce > Settings > Products "Enable AJAX add to cart buttons on archives," Then I would suspect a plugin conflict or perhaps cache.

Ensure cache both from the website and server, is flushed and test in Incognito mode to see if the reload is gone.

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

79520687

Date: 2025-03-19 15:45:09
Score: 3
Natty:
Report link

Thanks - this helped me as well for a project I am doing. Indeed I also beleave AppScript has a bug with a PositionedImage, if the the PositionedImage is inserted at the very last paragraph, it seems to duplicate the image. Adding this buffer paragraph has resolved the issue for me

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

79520674

Date: 2025-03-19 15:38:07
Score: 1.5
Natty:
Report link

I found a solution. In my case not connected cargo - homebrew So was not found openssl.

export LIBRARY_PATH="$LIBRARY_PATH:$(brew --prefix)/lib" This command is connect cargo - homebrew.

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

79520672

Date: 2025-03-19 15:37:07
Score: 1.5
Natty:
Report link

Possible, but a bit harder than you might expect. Let me give an example in a moment.

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

79520671

Date: 2025-03-19 15:37:07
Score: 1
Natty:
Report link

Voximplant iOS SDK is distributed as pre-built frameworks without debug symbols in cocoapods as well as in SPM.

It does not block an iOS app distribution to AppStore/TestFlight. The "Upload Symbols Failed" message is just a warning and the app build should be uploaded successfully.

If you face with any crashes related to Voximplant SDK, feel free to contact Voximplant team.

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

79520664

Date: 2025-03-19 15:34:06
Score: 1.5
Natty:
Report link

Including the {C special character is not working because that is the FNC1 code for the Epson printer. The special character for encoding CODE C is actually {1.

Code128 Special Character Encoding

Also, as Terry Warwick alluded to, the font setting does not affect the printed barcode. I believe what you mean by Font A, Font B, and Font C are actually Subset A, Subset B, and Subset C which you indicate you would like to use by adding the appropriate special character above. When switching subsets within a barcode string, you should also include the Shift character, {S.

Try {APQR123X{S{11122331807110011223344

Can anyone point to documentation that unravels how Epson do font-switching in Code 128?

https://files.support.epson.com/pdf/pos/bulk/tm-i_epos-print_um_en_revk.pdf

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

79520651

Date: 2025-03-19 15:29:06
Score: 1.5
Natty:
Report link

Vertex AI requires: A health endpoint (e.g., /health) that returns a 200 OK status when the model is ready. and A prediction endpoint (e.g., /predict) that handles inference requests.

Add /health (returns 200 OK when ready) and /predict endpoints to your FastAPI app. Update your gcloud ai models upload with --container-health-route=/health --container-predict-route=/predict --container-ports=8080. Redeploy and check Cloud Logging for errors.

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

79520649

Date: 2025-03-19 15:29:06
Score: 3.5
Natty:
Report link

So i get down to the problem.
I installed Fiddler to see what happened.
My first Problem is, i get from Fiddler a different error as i get from .NET Framework.
Fiddler told me, that the Problem is the verfication of the Server certificate from the server i called.
To verify this, I added the following line of code and tested whether it works:

ServicePointManager.ServerCertificateValidationCallback += (o, c, ch, er) => true;

That worked. That means the problem is that we don't trust the authority's root certificate, or rather, the certificate isn't present in the trusted Root store.

When installing the cert into the root, the problem is solved.

Thanks for the answers.

Edit: For somebody who maybe have the same Problem - Do not use this in prod enviroment.
Just for testcase, but delete it afterwards!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): have the same Problem
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: BummzuaBua