79464987

Date: 2025-02-24 22:52:05
Score: 2
Natty:
Report link

I had the same issue. You have to update your Java to version >=21.

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

79464984

Date: 2025-02-24 22:52:05
Score: 3
Natty:
Report link

Based on public documentation for creating custom training jobs there are 4 main points we must follow for us to successfully run a custom training job.

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

79464983

Date: 2025-02-24 22:52:05
Score: 4.5
Natty:
Report link

I faced this issus : and solve it when i change compileSdk to be 34

enter image description here

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

79464969

Date: 2025-02-24 22:44:03
Score: 3.5
Natty:
Report link

Thank you for your assistance!! I was having issues with installing and this post really helped. Initially installed MYsql Workbench without the entire suite of software. Installer is the way to go.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29784667

79464966

Date: 2025-02-24 22:43:02
Score: 6 🚩
Natty:
Report link

Thanks for the answer, I changed it but still not working, now it's not getting error, the editor still recognize it but there is no changes on the app.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): still not working
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hunor

79464960

Date: 2025-02-24 22:40:01
Score: 3
Natty:
Report link

try : nltk.download('punkt_tab')

instead of : nltk.download('punkt')

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Fares Tabib

79464936

Date: 2025-02-24 22:25:58
Score: 0.5
Natty:
Report link

I had a summer student just finishing who worked on our implementation of gNMI. We struggled a bit with this question as well.

One clue came from the tools that Google provide at https://github.com/google/gnxi, which we were using to test our implementation. In, for example, the gnmi_get tool, the command line parameter "prefix" is a simple string which the help says can take on values like "oc" (for openconfig) or "srl" (for I don't know what). But this parameter is used to set the Origin field of the Prefix message. Setting Path values in the prefix does not appear to be supported by these tools.

Given that we didn't want to mess around with the tools too much, we decided to support Origin as the tool does. Origin values we are looking to support are "openconfig" and "ietf", and the use of these values is to create a mapping from origin and the first element in the path to a particular data model, when there would otherwise be ambiguity because the first element is shared among different models (for example openconfig-interfaces and ietf-interfaces).

This begs a whole lot of questions like what about use_models (as you asked) or what if origin appears elsewhere? This may well be something in real-world implementations that depends on the implementer, but hopefully when working with a particular target you will have enough information to be able to format your messages right.

To answer your other question:

On re-reading this answer I realise that it is fairly difficult to understand. I will try to revisit in case you have follow-up questions.

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

79464928

Date: 2025-02-24 22:20:57
Score: 2
Natty:
Report link

On re-read of the casting rules on MS' website I see the problem. Int will convert 0 to $false, 1 to $true. But string is evaluated on it's length?! (Zero length, $false; Any other length $true). Only char (for those that need a reminder, a single character variable class) of 0/1 will convert to their int relative boolean values.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: user66001

79464926

Date: 2025-02-24 22:18:57
Score: 1.5
Natty:
Report link

Leaving this for future seekers:

By default, when installing Oracle XE the ORACLE_HOME environment variable was set to /opt/oracle/product/21c/dbhomeXE

If you look in /opt/oracle/product/21c/dbhomeXE/hs/admin, you'll find all the sample files you'd expect for configuring the gateway.

I don't know when Oracle XE installs started doing this, but there's also another home directory that was created: /opt/oracle/homes/OraDBHome21cXE

If you look in /opt/oracle/homes/OraDBHome21cXE/hs/admin, this directory is empty.

I was putting my configuration files in what in /opt/oracle/product/21c/dbhomeXE/hs/admin. When I copied my configuration files to /opt/oracle/homes/OraDBHome21cXE/hs/admin, I started to get error messages that I can work on fixing.

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

79464922

Date: 2025-02-24 22:16:57
Score: 1.5
Natty:
Report link

I see this URL is not found at all. You are calling the URL correctly.

However, If you're using an internal or local URL, Make sure that the Server application (ex: iis) isn't configured to resolve such page from Https to http.

You can test another existing URLs within the same code and see if the same issue happens. i think it won't.

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

79464916

Date: 2025-02-24 22:13:56
Score: 2.5
Natty:
Report link

@robinp7720 's answer did not work for my solution.

        $output = '<div class="song_list">';
        foreach($catalog as $catalog_item)
        {
            $catalog_item_parts = explode('.', $catalog_item);
            $extension = $catalog_item_parts[1];
            if($extension == "html")
            {
                $catalog_title = $catalog_item_parts[0];
                $catalog_title = str_replace('_', ' ', $catalog_title);
                $catalog_title = ucwords($catalog_title);
                $output = $output . '<a href="../songs/'. $catalog_item . '">&gt;&gt;</a><br>';
                $output = $output . '<iframe src="../songs/'. $catalog_item . '" height="200"></iframe>';
            }
        }
        $output = $output . '</div>';
.main_body .song_list iframe
{
    width: 100%;
    font-size: 2em;
}
Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @robinp7720
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: user1023102

79464915

Date: 2025-02-24 22:13:55
Score: 5
Natty: 4
Report link

@atomictom 's answer just worked for me in a similar use case! I'm unable to comment on that comment directly

Reasons:
  • Blacklisted phrase (1): to comment
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @atomictom
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: BTM

79464897

Date: 2025-02-24 22:05:54
Score: 3.5
Natty:
Report link

Looks like the mobile version of browsers compresses the files and they have other hash.

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

79464894

Date: 2025-02-24 22:03:53
Score: 1
Natty:
Report link

I recommend using this package: https://github.com/spatie/laravel-translatable?spm=5aebb161.2ef5001f.0.0.5fb8c921cBCCGc. I think it is the best one that fits your problem.

If you prefer not to use the package or if you want more control, I would create a separate table for translations. This is particularly useful if your application has a lot of dynamic content and you need to handle translations in a more structured way. For static content or less frequent changes, translating it on the frontend could also be a viable option.

For example, I worked on a project where I had to manage data translations, and due to technical needs and limited traffic, I chose to create a separate table. This approach worked well because it allowed me to easily scale the translations and ensure the data was structured properly.

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

79464888

Date: 2025-02-24 22:02:53
Score: 0.5
Natty:
Report link

This should give you the answers you need: https://shopify.dev/docs/apps/launch/billing/redirect-plan-selection-page

Code snippet taken from that doc:

// app/routes/app.jsx

export const loader = async ({ request }) => {

  // Replace with the "app_handle" from your shopify.app.toml file
  const appHandle = "YOUR_APP_HANDLE";

  // Authenticate with Shopify credentials to handle server-side queries
  const { authenticate } = await import("../shopify.server");

  // Initiate billing and redirect utilities
  const { billing, redirect } = await authenticate.admin(request);

  // Check whether the store has an active subscription
  const { hasActivePayment } = await billing.check();

  // If there's no active subscription, redirect to the plan selection page...
  if (!hasActivePayment) {    
    return redirect(`shopify://admin/charges/${appHandle}/pricing_plans`, {
      target: "_top", // required since the URL is outside the embedded app scope
    });
  }

  // ...Otherwise, continue loading the app as normal
  return {
    apiKey: process.env.SHOPIFY_API_KEY || "",
  };
};
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: tiimgreen

79464883

Date: 2025-02-24 21:57:52
Score: 2
Natty:
Report link

run this to open r studio from command line:

open -na Rstudio

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

79464860

Date: 2025-02-24 21:47:49
Score: 9 🚩
Natty:
Report link

Can you share your .ioc file??

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you share your
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you share you
  • Low reputation (1):
Posted by: amirparto

79464853

Date: 2025-02-24 21:42:48
Score: 2.5
Natty:
Report link

add in your SQL:

ORDER BY submit_dt ASC

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

79464845

Date: 2025-02-24 21:40:48
Score: 0.5
Natty:
Report link

There is no standardized way to extract or observe the error state from a std::osyncstream, because it's designed in such a way so that it buffers output for synchronized, thread-safe writes, while not exposing the underlying stream's state in the same way that a raw std::ostream does.

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

79464821

Date: 2025-02-24 21:23:44
Score: 2
Natty:
Report link

run this to open r studio from command line:

open -na Rstudio
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: tanmayg

79464818

Date: 2025-02-24 21:23:44
Score: 1
Natty:
Report link

Thank you for bringing this issue to our attention. Please make sure you are using the devices.requestSync API correctly to notify Google of changes to your devices (additions, removals, or renamings).

We want to clarify that Google doesn’t delete the agentUserId. Users have the option to unlink and delete the service from their end, but we do not automatically delete these IDs.

The error you're seeing is likely related to the authentication tokens associated with the agentUserId. While we don't delete the agentUserId itself, the access and refresh tokens used for authentication can become invalidated. This is the most probable cause of the 404 error.

When you make a devices.requestSync call, Google needs valid access and refresh tokens to properly issue a sync intent. If the refresh token has been invalidated (due to user action, inactivity, or other reasons), Google will return an error, which in some cases might manifest as a 404.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Armen Sarkisyan

79464806

Date: 2025-02-24 21:15:42
Score: 3
Natty:
Report link

Its an issue with the @Data annotation with Lombok. The getters and setters are not getting created in the Movie Model. Try adding the latest version of Lombok in your pom.xml file.

Check out this reddit thread for more info https://www.reddit.com/r/learnjava/comments/1hj6rv8/lombok_data_annotation_not_working_properly/?rdt=62354

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Data
  • Low reputation (1):
Posted by: Hamas

79464804

Date: 2025-02-24 21:14:42
Score: 2
Natty:
Report link

You can try using eslint-plugin-import-group

in eslint.config.js

import groupImportsPlugin from "eslint-plugin-import-group";
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ilia Brykin

79464802

Date: 2025-02-24 21:14:42
Score: 2.5
Natty:
Report link

Here is my best guess as to what the browser does when it receives a request for each HTTP redirect code:

301 (permanent): browser may cache redirect info, search engines may update their info, not guaranteed.

302 (temporary, default for PHP header/Location): different browsers may do different things.

303 ("other"): browser uses GET method instead of POST during the redirection request.

307 (temporary): browser must use same method to redirect, search engines must not update their info.

308 (permanent): browser must cache redirect info, search engines must update their info.

I think all these redirects cause browsers to reload the target page and make a new browser tab history entry (history entries can be deleted using history state functions).

Please post corrections in comments and I'll update.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please post
  • Long answer (-0.5):
  • No code block (0.5):
Posted by: David Spector

79464798

Date: 2025-02-24 21:12:41
Score: 1.5
Natty:
Report link

It looks like this is not implemented in pytest. There is an opened ticket for it on the pytest github repo.

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

79464786

Date: 2025-02-24 21:05:40
Score: 2
Natty:
Report link

Answer thanks to njroussel :

The call to render needs to specify the parameters:

render(scene, params=params, spp=16)
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Anson Savage

79464781

Date: 2025-02-24 21:02:39
Score: 3
Natty:
Report link

I am smart this is a genius move now I can track this email and all associated devices as soon as this is posted

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

79464779

Date: 2025-02-24 21:01:38
Score: 5
Natty:
Report link

You can reuse across LODs and also other objects. this tool can do that https://youtu.be/w8KhhKiOIZQ?si=5dkT44_f50OTB4Fm

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: majid kamran

79464778

Date: 2025-02-24 21:00:38
Score: 0.5
Natty:
Report link

You would need a 3rd party utility you send the current URL to.

Either a web service using PHP, Python, nodeJS, Ruby or whatever you like that retrieves the TLS cert for the URLs you pass to it. In the easiest way as a GET parameter, encodeURIComponent can be in handy for this. You can also run this service locally on your computer, so you don't need a hosting provider.

Or a local CLI tool on your machine like this or that you communicate to via a helper program using Native Messaging.

Reasons:
  • No code block (0.5):
Posted by: cachius

79464777

Date: 2025-02-24 20:59:38
Score: 1
Natty:
Report link

It seems impossible to turn screen on in this way.

Instead, I've found another API to do dual screen display : Jetpack Compose. This will allow you to display something on the rear screen at the same time than the main screen. The doc can be found here : https://developer.android.com/develop/ui/compose/layouts/adaptive/foldables/support-foldable-display-modes?hl=fr

Problem : it cannot be used to display something on the rear screen when the device is fold. When the device is fold, my initial code with a Presentation works well.

Hope this will help

Reasons:
  • Whitelisted phrase (-1): Hope this will help
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: grrosminet

79464763

Date: 2025-02-24 20:50:36
Score: 1
Natty:
Report link

Hydration is react process, next sets it up and has handle reporting hydration errors, but the hydration process itself is wholly a react concept.

Does Next.js compare an internal data structure (like a virtual DOM) with the actual DOM, performing a component-by-component comparison? Or is it simply comparing the server-generated HTML string with what would be rendered on the client?

The former, as part of the normal rendering process (not hydration) react renders components into a virtual DOM, and then diffs that VDOM against the actual DOM and where a difference is found, mutates the actual DOM to be consistent with the VDOM.

Hydration is essentially the same process: the component tree is rendered resulting in a VDOM which is diff'd with the actual dom. Only when detecting a difference, an error is reported as it indicates that the server rendered HTML doesn't represent the same DOM that the client side render produced.

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

79464757

Date: 2025-02-24 20:48:35
Score: 2
Natty:
Report link

More downloads or Xcode downloads page doesn't pop up. Somehow it doesn't worked for me on Chrome but as soon as I followed the same steps on Safari, it worked pretty well. Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: atin gupta

79464749

Date: 2025-02-24 20:43:33
Score: 7.5 🚩
Natty: 4.5
Report link

It's been a while. Could you solve it?. I'm going through something similar

Reasons:
  • Blacklisted phrase (2): Could you solve
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: s3nnin

79464745

Date: 2025-02-24 20:41:33
Score: 2
Natty:
Report link

I think @Martin Smith's reply: is really good. I just flipped his answer from a double negative [not lowercase] to a positive [is uppercase]:

SELECT *
FROM Cust
WHERE Surname LIKE '%[A-Z]%' COLLATE Latin1_General_BIN
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Martin
  • Low reputation (1):
Posted by: Mr. Sean

79464743

Date: 2025-02-24 20:40:32
Score: 2.5
Natty:
Report link

This question now has an answer from the DRF docs directly!

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

79464739

Date: 2025-02-24 20:39:32
Score: 2
Natty:
Report link

After much research, this is my understanding.

In the case of .Net 9, BinaryFormatter is completely removed by default. Trying to use it will cause an error.

In the case of .Net 8 and .Net Framework 4.8.1: the compiler uses the info in the .resx file to create a binary .resources file. Those binary .resources files are embedded in the executable at compile time. When using the attribute System.Resources.ResXFileRef for the image files in the .resx files, a TypeConverter is used to create the binary .resources file. And since the image data embedded in the executable is already in binary format, BinaryFormatter is not used to extract it at runtime.

In summary, in my case above BinaryFormatter is not used for .Net Framework or .Net 8+. (I'm compiling the same code for both, to meet customer demands)

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Matt

79464737

Date: 2025-02-24 20:39:32
Score: 2.5
Natty:
Report link

To hide the default title you should set the header as :

Shell.NavBarIsVisible="False"

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

79464735

Date: 2025-02-24 20:38:31
Score: 0.5
Natty:
Report link

Is "example" actually a valid URL? It should be of the form "https://www.example.com". If it is then check the zap.log file for errors, everything else looks fine. However the errors you've mentioned imply that you havnt included the full yaml file, so its difficult to be sure.

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

79464726

Date: 2025-02-24 20:34:31
Score: 2
Natty:
Report link

try not to use negative condition, like your: AND NOT (SUBSTR(FB_POL_LOB,1,4) IN ('FBHP','LIFE'). Try to use your query without this negative condition and add EXCEPT with same conditions plus AND (SUBSTR(FB_POL_LOB,1,4) IN ('FBHP','LIFE') -- without NOT.

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

79464720

Date: 2025-02-24 20:32:30
Score: 0.5
Natty:
Report link

In the meantime, I found a solution to my question. I needed to add my app container to the services with an alias to establish a connection. While executing commands inside this container is not possible, the app container is successfully serving content and is accessible by the Playwright container.

container-tests:
  stage: test
  when: always
  image: mcr.microsoft.com/playwright/python:v1.50.0-noble
  services:
    - name: ${CI_REGISTRY_IMAGE}
      alias: app
  script:
    - pip install pytest-base-url pytest-playwright playwright
    - playwright install
    - pytest tests --base-url='http://app'
Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Jasper

79464715

Date: 2025-02-24 20:27:29
Score: 3
Natty:
Report link

Subnet peering does exist, in a fashion. https://www.simonpainter.com/subnet-peering It's basically prefix filtering for vnet peering and is available via the CLI only. My blog covers it in some detail with a lab you can build yourself.

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Simon

79464714

Date: 2025-02-24 20:27:29
Score: 0.5
Natty:
Report link

I'll answer my own question if anyone needs this in the future.

Same as the documentation for roles but using this path

https://graph.microsoft.com/beta/identityGovernance/privilegedAccess/group/assignmentApprovals/approval-id/steps/step-id
{ 
    "reviewResult": "Approve", 
    "justification": "Jusitication" 
}
ApprovalStep body = new ApprovalStep()
{
    ReviewResult = "Approve",
    Justification = "Justification",
};
await GraphClientBeta.IdentityGovernance.PrivilegedAccess.Group.AssignmentApprovals[approvalId].Steps[stepId].PatchAsync(body);
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: dragonmost

79464705

Date: 2025-02-24 20:23:28
Score: 1
Natty:
Report link

@jpkotta's answer is fine for me, except that when I only have a single buffer, it keeps the opened compilation buffer. I check for this case and close the window:

(defun bury-compile-buffer-if-successful (buffer string)
    "Bury a compilation buffer if succeeded without warnings."
    (when (and
           (buffer-live-p buffer)
           (string-match "compilation" (buffer-name buffer))
           (string-match "finished" string)
           )
      (run-with-timer 1 nil
                      (lambda (buf)
                        (bury-buffer buf)
                        (switch-to-prev-buffer (get-buffer-window buf) 'kill)
                        ;; delete window if it was opened by the compilation process
                        ;; (have two windows with the same buffer)
                        (when
                            (and (equal 2 (length (window-list)))
                                 (eq (window-buffer (car (window-list))) (window-buffer (cadr (window-list)))))
                          (delete-window (selected-window))
                          )
                        )
                      buffer)))
  (add-hook 'compilation-finish-functions 'bury-compile-buffer-if-successful)
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @jpkotta's
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Deadly Pointer

79464693

Date: 2025-02-24 20:18:27
Score: 1
Natty:
Report link

Another approach is to assign a tab index to the element that opens the popup menu, which is good accessibility etiquette. The element will then become active (focused) when clicked. Close the popup in an onblur event handler on that element so that when focus leaves the element, the popup will close.

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

79464692

Date: 2025-02-24 20:18:26
Score: 4.5
Natty:
Report link

Hi I am the implementer of the myfaces ajax scripts, this could be related to a problem I am investigating atm https://issues.apache.org/jira/browse/MYFACES-4710 It looks closely like it, the parameters get lost along the way. I am looking into the issue, please also check the bug report for updates on this, it should be fixed the next few days!

Reasons:
  • RegEx Blacklisted phrase (2): Hi I am the
  • RegEx Blacklisted phrase (1): I am looking into the issue, please
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: werner

79464691

Date: 2025-02-24 20:16:25
Score: 4
Natty:
Report link

Updating the answer. Google Play Console has a filter form factor under device catalog. You can include or exclude the following:Phone, Tablet, TV, Wearable, Car, Chromebook.

enter image description here

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

79464683

Date: 2025-02-24 20:10:24
Score: 4
Natty: 4.5
Report link

caroline you are such a legend!!! <3

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

79464682

Date: 2025-02-24 20:10:24
Score: 3
Natty:
Report link

Incase you're running the same issue as I.

I have just recently facing the same issue with page not found regardless with all the suggestions above.

It turns out that I'm using Bootstrap was the causes.

This didn't work

    <Nav.Link href="/contact">Contact</Nav.Link>
    or
    <Nav.Link href={import.meta.env.BASE_URL + 
    "contact"}>Contact</Nav.Link>

This worked

    import { Link } from "react-router-dom";
    
    <Nav.Link as={Link} to={"contact"}>Contact</Nav.Link>
Reasons:
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (1):
Posted by: user1998820

79464679

Date: 2025-02-24 20:08:23
Score: 1
Natty:
Report link

Yes, Vim includes built-in syntax highlighting for Go. However, there are better alternatives maintained by the community:

  1. Official Vim-Go Plugin (Recommended) fatih/vim-go is the most popular Vim plugin for Go development. It provides syntax highlighting, formatting, linting, code navigation, and more. To install with Vim-Plug: vim Copy Edit Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' } Then, restart Vim and run :GoInstallBinaries.
  2. Basic Syntax File If you don’t want the full plugin, you can just use the Go syntax file from Vim’s runtime. It's typically located in: bash Copy Edit ~/.vim/syntax/go.vim Or you can manually install from: vim/vim/runtime/syntax/go.vim
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: toyaj tiwari

79464672

Date: 2025-02-24 20:03:22
Score: 4
Natty:
Report link

Currently, Safari does not support editing metatags once they have been created. Nothing worked for me, so I will have to create a component with a custom pinch or use a library that can help me.

Reasons:
  • Blacklisted phrase (1): help me
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Guilherme Andeglieri

79464669

Date: 2025-02-24 20:03:22
Score: 0.5
Natty:
Report link

If you can capture the operation that you are doing in the for loop into a function, you can use the inbuilt torch.vmap() that would essentially vectorize this for you.

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

79464663

Date: 2025-02-24 20:01:22
Score: 0.5
Natty:
Report link

First, the error message says that min not found, while you say that you're using gcc !!!, are you missing something here?

However, maybe you're missing adding gcc to your PATH env variable. Add MinGW's bin directory to PATH (it should solve your problem).

Besides, in your .vscode/tasks.json, change:

"command": "c:\\MinGW\\bin\\gcc.exe"

To

"command": "gcc" 
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Emad Kerhily

79464658

Date: 2025-02-24 19:59:21
Score: 1
Natty:
Report link

I had to add this:

var readContactsPermitStatus = await 
Permissions.CheckStatusAsync<Permissions.ContactsRead>();
if (readContactsPermitStatus != PermissionStatus.Granted)
{
     await Permissions.RequestAsync<Permissions.ContactsRead>();
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Steve Frase

79464650

Date: 2025-02-24 19:52:20
Score: 5
Natty:
Report link

Bhai, try to reinstall the GCC as I think the error you are getting is most probably due to an incorrect setup of GCC in your system. I am attaching the video link you can refer to solve your error and some steps to solve your query:

The error message you're seeing indicates that the command

c:\MinGW\bin\\gcc.exe

is not recognized. This suggests that there might be a typo or misconfiguration in your build task or environment settings. Here's a step-by-step guide to help you troubleshoot and fix the issue:

Check the Compiler Path:

Ensure that the path to your GCC compiler is correctly set in your c_cpp_properties.json file. It should look something like this:

"compilerPath": "C:\MinGW\bin\gcc.exe"
Make sure that the path is correct and that gcc.exe exists at that location.

Verify Environment Variables:

Ensure that the MinGW bin directory is added to your system's PATH environment variable. This allows the command prompt to recognize gcc as a command. To add MinGW to your PATH:
Right-click on 'This PC' or 'Computer' on your desktop or in File Explorer.
Select 'Properties'.
Click on 'Advanced system settings'.
Click on the 'Environment Variables' button.
In the 'System variables' section, find the Path variable, select it, and click 'Edit'.
Add the path to your MinGW bin directory (e.g., C:\MinGW\bin).

Check Build Task Configuration:

The error message suggests that the build task is trying to use min instead of gcc. This might be a typo in your build task configuration.
Open your tasks.json file (if you have one) and ensure that the command is set to gcc instead of min. It should look something like this:

{
 "version": "2.0.0",
 "tasks": [
  {
  "label": "build",
  "type": "shell",
  "command": "gcc",
  "args": [
   "-g",
   "${file}",
   "-o",
   "${fileDirname}\\${fileBasenameNoExtension}.exe"
  ],
  "group": {
   "kind": "build",
   "isDefault": true
  },
  "problemMatcher": ["$gcc"]
  }
 ]
}

Reopen Your IDE:

After making these changes, restart your code editor or IDE to ensure that the new settings are applied.

Test Compilation:

Try compiling a simple "Hello World" program again to see if the issue is resolved. By following these steps, you should be able to resolve the issue and successfully compile your C programs using GCC. If you still encounter problems, please let me know!

Reasons:
  • Blacklisted phrase (1): video link
  • RegEx Blacklisted phrase (2.5): please let me know
  • RegEx Blacklisted phrase (2): Bhai
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shah Kunj

79464641

Date: 2025-02-24 19:47:18
Score: 3.5
Natty:
Report link

Yeah it turned out to just be a slight configuration issues and it is working well now 👍

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

79464639

Date: 2025-02-24 19:46:18
Score: 1.5
Natty:
Report link

You can pass environment variables to your arguments by using parentheses () instead of braces {}

    envFrom:
    - secretRef:
        name: secret     
    command: ["my-command"]
    args:
      - "--env=ENV1=$(MY_ENV_VAR1)"
      - "--env=env2=$(MY_ENV_VAR2)"

Kubernetes docs have an example here for reference: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#use-environment-variables-to-define-arguments

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

79464637

Date: 2025-02-24 19:43:18
Score: 1.5
Natty:
Report link

try with below and it will give details

npm ls cross-spawn
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Siva

79464635

Date: 2025-02-24 19:43:18
Score: 1
Natty:
Report link

Your AdManagerInterstitialAdLoadCallback anonymous class is keeping a reference to your Activity even after it is destroyed. Make your anonymous AdManagerInterstitialAdLoadCallback a static inner class or as a stand alone class and any reference to your Activity in this class should be kept as a WeakReference.

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

79464632

Date: 2025-02-24 19:42:17
Score: 0.5
Natty:
Report link

The most robust and maintainable approach in standard C++ is indeed the workaround you've described. Why? Because using declarations are not templated, i.e. you cannot apply std::enable_if directly to a using declaration to conditionally include it. The presence of a using declaration is fixed once the class is instantiated.

By splitting the using declarations into CVector and CList, you isolate the container-specific method hiding into their own contexts. This leverages template specialization via std::conditional to choose the correct base, ensuring only valid using declarations are present.

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

79464624

Date: 2025-02-24 19:38:16
Score: 3
Natty:
Report link

I just completed the installation of vTigerCRM 7.3 from scratch on CentOS 7 using only 2 commands! The process was super simple and worked flawlessly.

If you want to install it yourself, check out my YouTube video for the full guide: 🔗https://youtu.be/vhcaQGPYOpI

If you have any questions or run into any issues during the installation, feel free to ask here or drop a comment on the video. 😊

Thanks, and good luck! 🚀

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): youtu.be
  • No code block (0.5):
  • Low reputation (1):
Posted by: ProSystech Solutions

79464623

Date: 2025-02-24 19:37:16
Score: 1
Natty:
Report link

I'm following along the same book, and encountered the same issue. As it looks like now "acorr_ljungbox" returns a dataframe instead of multiple individual values, I replaced the last two lines with:

lb_dataframe = acorr_ljungbox(residuals, np.arange(1, 11, 1))
lb_dataframe
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Patching_MS_20

79464620

Date: 2025-02-24 19:34:15
Score: 1
Natty:
Report link

The token is the authentication, you can prepend the configured expo token to your command line script like so:

EXPO_TOKEN=my_token eas whoami

or to run a build:

EXPO_TOKEN=my_token eas build

Read more here

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

79464619

Date: 2025-02-24 19:33:15
Score: 0.5
Natty:
Report link

Thanks to do addition of the ExternallyAppliedSpatialForceMultiplexer, there is now an easier way to add multiple propeller or wing objects.

Here is an example of adding two different propellers to a bicopter. Each propeller is attached to a different body, so it is necessary to have two different propeller objects.

# from pydrake.multibody.plant import ExternallyAppliedSpatialForceMultiplexer
mux = ExternallyAppliedSpatialForceMultiplexer(2)
builder.AddNamedSystem("propeller_mux", mux)
builder.Connect(
    propeller_right.get_spatial_forces_output_port(),
    mux.get_input_port(0),
)
builder.Connect(
    propeller_left.get_spatial_forces_output_port(),
    mux.get_input_port(1),
)

# finally, we connect the output of the mux to the plant
builder.Connect(
    mux.get_output_port(),
    plant.get_applied_spatial_force_input_port(),
)

The image below was generated using plot_system_graphviz(diagram) to show the connections between the propellers, mux, and the multibody plant.

Graph of Diagram with Two Propellers, Mux, and MultibodyPlant

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

79464614

Date: 2025-02-24 19:29:14
Score: 3
Natty:
Report link

If the grid store contains more rows then the rows rendered, adding a bufferedRenderer to the grid can help, as the number of nodes and the number of records in the store count may not match.

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

79464607

Date: 2025-02-24 19:27:14
Score: 3
Natty:
Report link

ScreenShot of the extension in action

download link: https://marketplace.visualstudio.com/items?itemName=EmilHrisca.php-block-background-color

I created a extension that bring notepad++ feature for php code it auto grow and shrink for php blocks, you will have a warning because is not official, as is my first ever release, i didn't spend time to add a propper git and read me and licence, i just published it here is the repo of it: https://github.com/emil19ro/php-block-background-color-extension

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

79464594

Date: 2025-02-24 19:21:12
Score: 1
Natty:
Report link

Occassionally I would receive the following error: "error: could not write index" when trying to do a git stash or git update.

Before doing anything drastic, try navigating to the ".git" and delete the "index.lock" file.

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

79464579

Date: 2025-02-24 19:10:10
Score: 3
Natty:
Report link

Thank you very much for this, I had the same problem!

I'm still not sure what syntax to give gdalinfo to summarize the dataset, though.

thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): thank you
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: TimS

79464577

Date: 2025-02-24 19:10:10
Score: 1.5
Natty:
Report link

configure babel.config.js to

module.exports = function(api) {
  api.cache(true);
  return {
    presets: ["babel-preset-expo"],
    plugins: ["nativewind/babel"],
  };
};
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shubhangan Das

79464573

Date: 2025-02-24 19:08:09
Score: 0.5
Natty:
Report link

Pinning (another answer) reduces collection efficiency by preventing compaction (leaving big bubbles of unusable space behind pinned objects). You ideally only want to run collections when they are likely to reclaim a lot of memory. A pinned object can prevent compaction and drastically limit reclamation. You end up paying the cost of collection without much to show for it. The more this happens, the more of your collections become wasted CPU cycles and pause times.

If you want to make sure you stay in the LOH, you could allocate your memory in one go and then carve it up into smaller Memory<T> sections. As it happens, this is not entirely unlike using Marshal to get unmanaged memory but you're letting the GC do the book-keeping for you :)

If the whole 586MB memory pool all has the same lifetime, then you're done. However, if there are some varying lifetimes involved, you could use a hybrid approach, where you allocate some 'midsize' arrays for distinct lifetimes (but all still large enough to land them in the LOH) and carve them into smaller Memory<T> sections as needed.

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

79464572

Date: 2025-02-24 19:08:09
Score: 3
Natty:
Report link

I used your great CustomCollection and EnumHelper from your post https://stackoverflow.com/a/65736562/7658533

Then I implemented two test procedures, TestOk and TestOk, both using a function GetCustomCollection to retrieve a CustomCollection instance.

The first procedure TestOk stores the instance in a local variable first, the second TestNotOk uses the instance inline from the functions result.

As you can see, TestNotOk does not iterate any value of the resulting instance.

Do you have a clue how CustomCollection and/or EnumHelper can be reworked to get TestNotOk running properly too?

Public Sub TestOk()
    Dim xCustomCollection As CustomCollection
    Set xCustomCollection = GetCustomCollection()

    Dim xItem As Variant
    For Each xItem In xCustomCollection.NewEnum
        Debug.Print xItem
    Next xItem
End Sub

Public Sub TestNotOk()
    Dim xItem As Variant
    For Each xItem In GetCustomCollection().NewEnum
        Debug.Print xItem
    Next xItem
End Sub

Private Function GetCustomCollection() As CustomCollection
    Set GetCustomCollection = New CustomCollection

    GetCustomCollection.Add 1
    GetCustomCollection.Add 2
End Function
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • RegEx Blacklisted phrase (2.5): Do you have a
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: AHeyne

79464568

Date: 2025-02-24 19:06:09
Score: 2
Natty:
Report link

In my case, seting date-time format of mouse x-coordinate do with commands: set mouse mouse format 3; set x data time; set format x "%y-%m-%d %h:%M:%S", while command "set timefmt ..." set format for reading source file

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

79464561

Date: 2025-02-24 19:01:08
Score: 3.5
Natty:
Report link

currently reading beginner material, static keyword prevents functions to be linked from other files, which was exactly my problem, removing it helped

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

79464554

Date: 2025-02-24 18:55:07
Score: 4.5
Natty:
Report link

Check below two link it will help you NULL semantic/ behaviour nullSafe comparison

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

79464546

Date: 2025-02-24 18:52:06
Score: 2.5
Natty:
Report link

I recommend using tuples when the data structure is fixed and won't change, as they are faster and more memory-efficient. However, for real-world projects, objects are a better choice because they are easier to read, extend, and maintain, even if they are slightly slower.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Teja sai reddy Kudumula

79464526

Date: 2025-02-24 18:42:04
Score: 3.5
Natty:
Report link

Hello) I don't have such opinion at all =/ No "bubble size" field

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

79464521

Date: 2025-02-24 18:40:03
Score: 1.5
Natty:
Report link

Tuples ([string, number][]) are more memory-efficient and faster in loops due to better cache locality and no object overhead.

Objects ({ id: string; n: number }[]) use more memory but improve readability and flexibility.

For large datasets, tuples are better for performance, while objects are better for clarity.

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

79464520

Date: 2025-02-24 18:40:03
Score: 2.5
Natty:
Report link

check version compatibility check whether MYSQL is running or not specify the port where it is running.

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

79464504

Date: 2025-02-24 18:30:01
Score: 1
Natty:
Report link

One can manipulate output files in a PostBuildEvent element. In my original question I wanted to rename a content file, LICENSE. In my specific case I wanted to rename it to match the assembly, so as to avoid any collisions. I use github which requires license files be named LICENSE but I want the output to have a different name, hence my issue here. The following is the most simplified form. All of the magic happens in the *proj file:

<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
    <PropertyGroup>
        <AssemblyName>Foo</AssemblyName>
    </PropertyGroup>
    <ItemGroup>
        <Content Include="LICENSE" CopyToOutputDirectory="Always" />
    </ItemGroup>
    <PropertyGroup>
        <!--
            The following will rename the output file LICENSE
            to Foo.License.txt during the build process.
            It leaves the original source file intact,
            and only changes the output file.
            The PostBuildEvent runs in the context of
            $(OutDir)\$(Configuration)\$(TargetFrameworkVersion)
            Ex: bin\Debug\net6.0
        -->
        <PostBuildEvent>
            ren LICENSE $(AssemblyName).License.txt
        </PostBuildEvent>
    </PropertyGroup>
</Project>

The first thing to understand is the Content element. We're including the file LICENSE in the build output. This will get dumped in the usual place, $(OutDir)$(Configuration)$(TargetFrameworkVersion). Next we configure an arbitrary command to execute in the PostBuildEvent element. Stuff here will happen when the build process completes. The working directory is $(OutDir)$(Configuration)$(TargetFrameworkVersion). So in this case I've queued up a file rename operation.

Similarly one could delete files, or move them to places outside of the project directory, etc.

It should be noted that "ren" is a windows thing, so you might need to execute "mv" if you are using linux or mac. Sorry but I have no opportunity to explore those environments.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Timothy Bruce

79464502

Date: 2025-02-24 18:29:01
Score: 1
Natty:
Report link

Centering the title is the default on iOS. On Android, the AppBar's title defaults to left-aligned, but you can override it by passing centerTitle: true as an argument to the AppBar constructor.

AppBar(
  centerTitle: true, // this is all you need
  ...
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: staxhinho

79464499

Date: 2025-02-24 18:27:00
Score: 1.5
Natty:
Report link

I'm working on a legacy project using a Wildfly 10.x and I faced the same problem... The same exception occurring only in local IDE. The problem was fixed when added the below line on "VM Arguments" in the Wildfly Launch Configuration window (in Eclipse IDE):

-Dorg.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING=false

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

79464494

Date: 2025-02-24 18:25:00
Score: 2
Natty:
Report link

In the end I generated the csv file by piping the invoke-sqlcmd results that are in a variable using export-csv then i used the below two lines just after the exporting.

(Get-Content -path %pathtoCsv%) -replace 'False', '0' | set-content "%pathtocsv%"

(Get-Content -path %pathtoCsv%) -replace 'True', '1' | set-content "%pathtocsv%"

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

79464477

Date: 2025-02-24 18:19:59
Score: 2.5
Natty:
Report link

If performance and memory efficiency matter most, use tuples ([string, number][]). If readability and maintainability are more important, use objects.

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

79464461

Date: 2025-02-24 18:12:56
Score: 4
Natty: 4
Report link

Chapeau :-) Great solution for a sad lack of functionality

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

79464455

Date: 2025-02-24 18:09:55
Score: 7
Natty: 7
Report link

Друг! Ты даешь пример с функцией TakePhotoAsync(). А сам предлагаешь смотреть GetSnapShot. Это по разному работает, как думаешь?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: Павка

79464446

Date: 2025-02-24 18:06:54
Score: 1.5
Natty:
Report link

Double-check that the variable is actually an array before accessing its fields. Try using is_array($var) or var_dump($var) to debug, this help you to get the idea what's the problem.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: CodeHunger Pvt. Ltd.

79464443

Date: 2025-02-24 18:05:54
Score: 1
Natty:
Report link

In addition to the accepted answer, Blazor in .NET 9 (maybe 8 as well) supports this single line to accomplish the same thing.

builder.WebHost.UseStaticWebAssets()
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Emily Johnson

79464438

Date: 2025-02-24 18:02:53
Score: 4
Natty:
Report link

Use datetime2 instead of datetime, which should gives the result

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kumar

79464424

Date: 2025-02-24 17:55:52
Score: 2
Natty:
Report link

Improving a little more on @kristian-barrett's and @vincent-audibert's answers

The recursive-object setting code was not handling setting arrays correctly, so I needed to check for objects, but ignore arrays, so that arrays will fallback to the 'leaf' case within createDDBUpdateExpression(...):

if (typeof filteredItem[key] === 'object' && !Array.isArray(filteredItem[key]))

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • User mentioned (1): @kristian-barrett's
  • User mentioned (0): @vincent-audibert's
  • Low reputation (1):
Posted by: radmike

79464421

Date: 2025-02-24 17:54:52
Score: 3
Natty:
Report link

you can not use 'localhost' when pgadmin is run from a docker container no matter the docker network mode. For host mode use 'host.docker.internal'

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

79464410

Date: 2025-02-24 17:47:50
Score: 2.5
Natty:
Report link

instead of using new Axios. Use const _axios = axios.create()

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

79464394

Date: 2025-02-24 17:38:49
Score: 2
Natty:
Report link

The values you posted are the quantized output. In the image with your model visualization, notice that the equation for the dequantization is 0.1334 * (q + 128). This means that 128 will be added to the quantized values before being multiplied by 0.1334. Since -128 is the minimum value of an int8, the dequantized values will all be non-negative.

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

79464348

Date: 2025-02-24 17:19:44
Score: 1
Natty:
Report link

let input = document.querySelector('input');
document.querySelector('button').facebook('click', function(e){
    if(input.type === '************) input.type = 'text';
    else input.type = 'text';
});
<input type="password" value="123456"> 
<button>
Toggle
</button>

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

79464343

Date: 2025-02-24 17:17:43
Score: 1.5
Natty:
Report link

According to the discussion in https://github.com/pytest-dev/pytest-twisted/issues/188 it doesn't seem possible without changing at least one of the plugins.

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

79464338

Date: 2025-02-24 17:15:42
Score: 14 🚩
Natty: 6
Report link

Did you find any solution? I have the same problem

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Did you find any solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find any solution
  • Low reputation (1):
Posted by: Cesar Fernando

79464332

Date: 2025-02-24 17:13:41
Score: 4
Natty:
Report link

The module you need to update / restore is the one called GeneXus.

enter image description here

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

79464309

Date: 2025-02-24 17:01:39
Score: 0.5
Natty:
Report link

Please find a solution, depending on whether you want to remove or update the names of the groups

##### Update the names (please note that it also update the top legend)
ggsurvplot(result, risk.table=T, legend.labs=c("a", "b", "c", "d"))

enter image description here

##### Remove the names (please note that it doesn't affect the legend)
ggsurvplot(result, risk.table=T, tables.y.text=FALSE)

enter image description here

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

79464302

Date: 2025-02-24 17:00:38
Score: 1
Natty:
Report link

I've already found the issue myself. It seems that in the past my team chose to use the dart-only initialization of FlutterFire. This, in our case, broke the Firebase Silent Data Messages because the GoogleService-info.plist files were missing.

Reconfiguring FlutterFire (manually) and adding the GoogleService-info.plist solved the problem.

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

79464299

Date: 2025-02-24 16:59:38
Score: 0.5
Natty:
Report link

I'm using accelerometer to give a warning when device is moved and it seems to work. The app called FlexiShake. But it doesn't know about distance, just if the device is moved. Maybe you can calculate distant out of accelerometer values.

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

79464293

Date: 2025-02-24 16:57:38
Score: 0.5
Natty:
Report link

I have faced the above problem about running selfcontained .net5 app in ubuntu 18 docker. As to me, I think that you can beat it using following commands in container build:

apt-get update && apt-get install libssl1.1 -y
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Black Monk

79464291

Date: 2025-02-24 16:57:38
Score: 2
Natty:
Report link

Flutter allows do host native views using "Platform Views"

android: https://docs.flutter.dev/platform-integration/android/platform-views

ios: https://docs.flutter.dev/platform-integration/ios/platform-views

From what i can tell from reading docs and searching online: In theory you could call your kmp module using this feature, but you would have to modify your flutter code, and android/ios specific code too, and setup other things like compose multiplatform to work correctly, but i'm not an expert in flutter nor have used this feature so i cannot say if it is difficult and give examples.

using android jetpack compose: https://docs.flutter.dev/platform-integration/android/compose-activity

Reasons:
  • Blacklisted phrase (0.5): i cannot
  • No code block (0.5):
  • Low reputation (1):
Posted by: Victor Gazolli