79640628

Date: 2025-05-27 14:00:28
Score: 4
Natty: 4.5
Report link

Easier solution nowadays is to switch to sounddevice. Example: https://python-sounddevice.readthedocs.io/en/0.5.1/api/platform-specific-settings.html#sounddevice.WasapiSettings

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

79640619

Date: 2025-05-27 13:54:26
Score: 1
Natty:
Report link

Answering my own question. One workaround is to clone and temporarily insert the dragged element into the DOM, and then set that as the drag image on the event data transfer object. This also has the benefit of the drag image being positioned correctly when specifying the X and Y coordinates, unlike the natively inserted drag image, which doesn't take the transform of the ancestor into account.

Here's an updated Codepen example. https://codepen.io/Veikko-Lehmuskorpi/pen/oggKRZv

const source = document.querySelector(".item");
let ghostEl;

source.addEventListener("dragstart", (event) => {
  ghostEl = event.target.cloneNode(true);
  ghostEl.classList.add("ghost");
  document.body.appendChild(ghostEl);
  event.dataTransfer.setDragImage(ghostEl, event.offsetX, event.offsetY);
});

source.addEventListener("dragend", () => {
  ghostEl.remove();
});
body {
  margin: 0;
}

.container {
  width: 100vw;
  height: 100vh;
  background: #ccc;

  /* This breaks dragging the child item on Safari, unless a custom drag image is set */
  transform: scale(0.5);
}

.item {
  background: #ddd;
  width: 300px;
  height: 150px;
  font-size: 72px;
}

.ghost {
  position: absolute;
  top: -99999px;
  left: -99999px;
}
<div class="container">
  <div class="item" draggable="true">
    draggable
  </div>
</div>

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

79640616

Date: 2025-05-27 13:53:25
Score: 2
Natty:
Report link

It's a little bit buried, but I found that: attr(model[["cov.scaled"]], "min_cluster_size") gets the job done!

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

79640613

Date: 2025-05-27 13:52:25
Score: 1
Natty:
Report link

We found a workaround for updating the index status. We added the following storage configuration specifically for re-indexing purposes in the JanusGraph property:

storage.cql.use-external-locking=true

https://docs.janusgraph.org/v0.4/basics/configuration-reference/. Once the re-indexing is complete, please remember to turn it off.

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

79640612

Date: 2025-05-27 13:52:25
Score: 1.5
Natty:
Report link

As of today, their official download link is broken and it is unclear to what degree the support for youtube-dl is continued. You should instead follow their fork yt-dlp to install the downloader. The usage is very similar and the installation instructions you can get from the youtube-dl as its a plain download and exec permissions set up.

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

79640607

Date: 2025-05-27 13:49:24
Score: 1
Natty:
Report link
plugins {
    id 'com.android.library' // NOT just 'java-library'
}
android {
    compileSdkVersion 33

    defaultConfig {
        minSdkVersion 23 // Make sure this is 21+ or the same as the failing transform
    }
}

flutter clean

flutter pub get

flutter build apk

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

79640605

Date: 2025-05-27 13:47:23
Score: 7
Natty: 7
Report link

How do I adapt the vba macro in cases where I want to auto x-refer multiple sub-paragraphs but not include the main clause number - i.e., paragraph (a)(ii) of Clause 1.2 - if I just want to link (a) and (ii) as one x-ref without it showing as 1.2(a)(ii) when I choose "paragraph number (full context)"?

Reasons:
  • Blacklisted phrase (1): How do I
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How do I
  • Low reputation (1):
Posted by: Debbie Button

79640597

Date: 2025-05-27 13:44:23
Score: 1
Natty:
Report link

I'm told from other forums that the deprecation of basic authentication WILL effect this method of authentication.

https://learn.microsoft.com/en-us/answers/questions/2278336/sharepoint-basic-auth-authentication-effect-sharep

----

SharePointOnlineCredentials supports Kerberos, Ntlm and basic authentication. So it will not work with SharePoint online after basic support is dropped. For SharePoint online you should be switching to access tokens.

With access tokens you call the azure ad to get the token. If you want a user token, then a web browser is used to login to ad and get the token. You can also use an application clientid and secret (know as password flow) to login as an application (not a user) without a browser.

see docs

https://learn.microsoft.com/en-us/sharepoint/dev/sp-add-ins/using-csom-for-dotnet-standard

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

79640591

Date: 2025-05-27 13:41:21
Score: 3.5
Natty:
Report link

I found a substitute for sqlite3 called apsw. With this the query is working as expected. Still it would be good to understand what am I missing with the sqlite3 query.

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

79640590

Date: 2025-05-27 13:41:21
Score: 0.5
Natty:
Report link

It looks like the errors you’re seeing are due to version mismatches or incorrect imports in your project. Specifically, the modules like ./walletConnect and ./connectors/walletConnectLegacy seem to be missing in the installed versions of @wagmi/connectors and @wagmi/core.

Here’s how you can resolve this:

yarn add wagmi@latest @wagmi/core @wagmi/connectors @web3modal/ethereum

or specify versions that are compatible with each other.

import { WalletConnectConnector } from '@wagmi/core/connectors/walletConnect';

But in newer versions, the import path or package structure might have changed.

rm -rf node_modules/.vite yarn install yarn vite --force

If after this you still face issues, consider sharing your package.json dependencies and relevant import code so we can diagnose further.

Key points

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

79640585

Date: 2025-05-27 13:37:20
Score: 1.5
Natty:
Report link
 @@-moz-document url-prefix() {
        .jqx-widget-content {
            z-index: 5600 !important;
        }
    }

It was about css and a large z-index solved it.

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

79640580

Date: 2025-05-27 13:35:19
Score: 1
Natty:
Report link

Late to the party, but at least on git version 2.48.1, the following outputs a valid ISO 8601 timestamp:

git log --pretty=format:'%cI' -n1 --date=iso-strict

On macOS, -d is not a valid option for date, as pointed in another answer.

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

79640573

Date: 2025-05-27 13:23:16
Score: 1.5
Natty:
Report link

I think beforeunload also works when the user refreshes the page not just when they close the page or navigate away. You can try storing the organizationIdentifier in localStorage when the user first opens the website. Then create an if condition to compare the current organization using (window.location.pathname) with the one stored in localStorage. If they’re not the same call sessionStorage.clear() and then update the value in localStorage. Hope it will work for u !

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

79640570

Date: 2025-05-27 13:22:15
Score: 7 🚩
Natty: 5.5
Report link

Is there a way to make this work with SSMS 21 too?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is there a
  • Low reputation (1):
Posted by: aferende

79640568

Date: 2025-05-27 13:21:15
Score: 3.5
Natty:
Report link

I face this error and i found that database indexes needed to be fixed.

Run DBCC CHECKDB ([CATALOG]) to check if it happen.

Reasons:
  • RegEx Blacklisted phrase (1): I face this error
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Christos K.

79640562

Date: 2025-05-27 13:17:13
Score: 2.5
Natty:
Report link

You need to install this.

rm -rf ios/Pods ios/Podfile.lock

cd ios

pod install --repo-update

cd ..

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

79640559

Date: 2025-05-27 13:15:13
Score: 3
Natty:
Report link

When configuring Google Cloud Data Loss Prevention Python client behind an SSL proxy, set the environment variables HTTPS_PROXY and HTTP_PROXY with the URL of your proxy. Make sure your proxy supports SSL and configure your network accordingly.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Pelorus Technologies

79640557

Date: 2025-05-27 13:14:12
Score: 2
Natty:
Report link

if you are little familiar of the python, I have created MQTT client for same purpose to troubleshoot my localhost broker. https://github.com/harshaldosh/MQTT-Streamlit-Client/tree/main.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Harshal Doshi Jain

79640555

Date: 2025-05-27 13:13:12
Score: 1.5
Natty:
Report link

you need to install this package:

pip install google-genai
# Then from the same package do
client = genai.Client(api_key='YOUR-GOOGLE-API-KEY')

This solved the problem for me.

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

79640554

Date: 2025-05-27 13:12:12
Score: 3
Natty:
Report link

It is so helpful . After using group by the increment is happening.

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jiten

79640545

Date: 2025-05-27 13:09:11
Score: 1.5
Natty:
Report link

Modulo Property::
(A-B)%C = (A%C - B%C +C ) % C

Here what we have given;

A%M = B%M

so;
A%M - B%M = 0

let add M to both sides;

A%M - B%M + M = M

let apply modulo to both sides;

(A%M- B%M + M)% M = (M%M) = 0

so at the end we got Modulo Property::
(A-B)%M = 0

So simply do (A-B)
find All the factors of it
and the Max factor is the ans.

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

79640540

Date: 2025-05-27 13:07:10
Score: 1.5
Natty:
Report link

You cannot write to UserDefaults in ShieldConfigurationExtension - From this extension, it is read only.
ShieldActionExtension: Read & Write
ShieldConfigurationExtension: Only Read
I experienced the same issue.

There are other shenanigans aswell, for instance, the localized display name is invisible outside the SCE. https://developer.apple.com/documentation/managedsettings/application/localizeddisplayname
Apple is great at introducing hidden stuff like this.

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

79640535

Date: 2025-05-27 13:04:09
Score: 3.5
Natty:
Report link

I am finally able to solve the issue by myself. The issue is because of the configuration file associated with the EXE. The config file was somehow edited and was blank. So I replaced it with the new copy of the config file, and after that the EXE is normally opening. Thank you

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

79640530

Date: 2025-05-27 13:02:08
Score: 4.5
Natty: 5
Report link

Thank you this is really helpful

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

79640528

Date: 2025-05-27 13:01:08
Score: 2
Natty:
Report link

At least for now, the geometry and the transformation matrix is not available through Data Exchange GraphQL API. The Data Exchange GraphQL API is still in beta and you have the chance to push for this feature by submitting a 3-5 minute feedback survey and suggest on Data Exchange Forum in what form you would like to receive this kind of information.

On the other hand, keep in mind that through Data Exchange .Net SDK you can get both, the geometry (in STL or Mesh format) as well as the transformation matrix for each element. For more info check this tutorial.

Reasons:
  • Blacklisted phrase (1): this tutorial
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: denis-grigor

79640526

Date: 2025-05-27 13:00:07
Score: 5
Natty:
Report link

I can confirm the answer by @utshabsaha

Reasons:
  • Low length (2):
  • No code block (0.5):
  • User mentioned (1): @utshabsaha
  • Single line (0.5):
  • Low reputation (1):
Posted by: TheUncleRemus

79640498

Date: 2025-05-27 12:44:02
Score: 1.5
Natty:
Report link

For Angular v.19 use this:

ng serve --disable-host-check

This open Angular's server to any external connection.

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

79640497

Date: 2025-05-27 12:44:02
Score: 4
Natty: 5
Report link

Here for the same issue 7 years later anyone who can help me implement this in kotlin Jetpack compose for my Status Saver App

Reasons:
  • Blacklisted phrase (1): help me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MICAH ATEMBA

79640495

Date: 2025-05-27 12:44:02
Score: 0.5
Natty:
Report link

The spring-cloud-azure-starter-active-directory library is mainly used for things like logging in users with Azure AD, Access other resources like Microsoft Graph or Azure services from a resource server or securing REST APIs. If you want to get information about your app’s client secret like when it expires, you need to use the Microsoft Graph API. But it doesn't let you retrieve the application's own client secret metadata like expiry date.

to retrieve client secret expiry data, you can call REST API https://graph.microsoft.com/v1.0/applications/passwordCredentials

enter image description here

POST https://login.microsoftonline.com/TenantID/oauth2/v2.0/token

client_id: ClientID

client_secret: Secret

scope: https://graph.microsoft.com/.default

grant_type:client_credentials

enter image description here

enter image description here

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

79640486

Date: 2025-05-27 12:36:00
Score: 1.5
Natty:
Report link

I am using Git Bash on Windows 10. This is the same method suggested by @friism and @Samuel Matos, but uses a bash function instead of an alias.

In my .bash_aliases file I have defined the following function that simply calls the .exe file.

 function docker-start { /c/Program\ Files/Docker/Docker/Docker\ Desktop; } 

The thing to watch out for is the windows file paths.

This works in a non-privileged shell.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @friism
  • User mentioned (0): @Samuel
  • Low reputation (1):
Posted by: Kevin Boyle

79640470

Date: 2025-05-27 12:24:56
Score: 3
Natty:
Report link

after executing above commands the expired certificate is still present in the list of keycredentials. II'm using MS Graph version 2.25. So it doesn't works for me.

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

79640465

Date: 2025-05-27 12:23:56
Score: 8
Natty: 7.5
Report link

Could you please share what is the solution?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you please share what
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ярослав Орёл

79640459

Date: 2025-05-27 12:20:55
Score: 0.5
Natty:
Report link

I've tried both commands, DROP and REJECT, and both worked as expected: the web server becomes inaccessible.

Your browser probably cached the webpage, try pressing F5 or use incognito mode.

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

79640456

Date: 2025-05-27 12:19:54
Score: 0.5
Natty:
Report link

Please use the Maven plugin that comes with install4j instead.

https://www.ej-technologies.com/resources/install4j/help/doc/cli/maven.html

It's mostly a drop-in replacement for the old sonatype plugin.

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

79640454

Date: 2025-05-27 12:17:53
Score: 4
Natty: 5
Report link

It has been released meanwhile, so for anybody who's still looking for the ES8 connector in Flink, I found it here: https://central.sonatype.com/artifact/org.apache.flink/flink-connector-elasticsearch8/4.0.0-2.0

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

79640443

Date: 2025-05-27 12:10:52
Score: 1
Natty:
Report link
I’ve finished wiring Google Analytics (GA 4) into a React‑based site (deployed on Vercel).
Before declaring victory I need to **prove that every page view and custom event really reaches GA**.

From Googling and reading Stack Overflow I see quite a few “verification” options:

1. **[Chrome DevTools – Network tab](https://developer.chrome.com/docs/devtools/network/)**  
   Look for `/collect` (UA) or `collect?v=2` (GA4) requests.

2. **[Google Analytics Debugger Chrome extension](https://chrome.google.com/webstore/detail/google-analytics-debugger/jnkmfdileelhofjcijamephohjechhna)**  
   Console shows events; handy in local dev.

3. **[Google Tag Assistant (legacy)](https://support.google.com/tagassistant/answer/10044221)** *(or the new [Tag Assistant Companion](https://support.google.com/tagassistant/answer/10125983))*  
   Badge lights up when a tag fires; can record sessions.

4. **[GTM Preview / Debug mode](https://developers.google.com/tag-manager/preview-debug)**  
   Shows all tags, triggers, and data‑layer pushes.

5. **GA4 UI tools**  
   • **[Debug View](https://support.google.com/analytics/answer/7201382)**  
   • **[Real‑time report](https://support.google.com/analytics/answer/9264745)**  
   Built‑in UI; latency sometimes masks problems.

6. **[Trackingplan](https://trackingplan.com/)**  
   Third‑party QA platform that automatically crawls pages, captures events, and reports schema mismatches or missing events across environments.

What I’ve tried so far
----------------------

* DevTools confirms `collect?v=2&t=page_view` on route changes.  
* GA4 Debug View sometimes shows nothing for ~20 seconds, which makes me wonder if I’m missing hits.  
* Tag Assistant recording shows the events but I don’t know if that **guarantees** they reached GA servers.  
* I haven’t set up Trackingplan yet—curious whether it adds value beyond the above.

What confuses me
----------------

* Are **some methods better suited to staging vs. production**?  
* Does GA4 sample or delay real‑time data enough to give false negatives?  
* Can Trackingplan (or similar) catch issues the free Google tools miss—e.g., missing parameters, wrong event names, consent‑mode quirks?

**Question**

> For day‑to‑day QA of GA4 instrumentation, which of the approaches above (or others I missed) provide the most *reliable* signal that events are truly stored in GA?  
> *What are the trade‑offs (latency, sampling, cost, ease of use) and when would you choose one over another?*

Any guidance or war‑stories appreciated!
Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: David Pombar

79640439

Date: 2025-05-27 12:07:50
Score: 2
Natty:
Report link

This pkg is recommended. https://github.com/funnyfactor/mimetype

The standard library's mimetype db is very small, but this third-party library's db is very comprehensive.

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

79640438

Date: 2025-05-27 12:07:50
Score: 7.5 🚩
Natty: 6.5
Report link

Did you find your solution? I am looking to do the same thing using a raspberry5. Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (3): Did you find your solution
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find you
  • Low reputation (1):
Posted by: Sébastien

79640424

Date: 2025-05-27 11:55:47
Score: 3
Natty:
Report link

It looks like you're on the right track by deploying your Safe contracts locally and trying to enable modules via delegatecall during the Safe setup. The error you’re encountering:

Error: Transaction reverted without reason string

usually indicates that something in the transaction execution failed silently.

Here are some suggestions to help you troubleshoot and fix the issue:

Check Delegatecall Context: The enableModules function relies on being called via delegatecall from the Safe itself (address(this) is the Safe). Make sure that during the initialization call, the context is indeed the Safe proxy and not your SafeModuleSetup contract directly.

ABI Encoding & Data: Verify that the data field you pass to the Safe setup function is properly encoded. The to and data parameters should correspond exactly to a call on your SafeModuleSetup contract that will be executed in delegatecall context by the Safe.

Module Addresses: Double-check that the module addresses you pass are valid and deployed. Trying to enable non-existent or zero addresses will cause revert.

Gas Limit & Fees: Since you are on Hardhat local network, ensure your gas settings are sufficient. Sometimes low gas or fee configurations cause unexpected reverts.

Debugging with Events or Logs: Add events or use console.log (via Hardhat console.sol) inside your enableModules function to trace execution and see which module enables fail.

Minimal Reproducible Setup: Try enabling just one known working module initially to isolate whether the problem is with specific modules or the overall setup process.

Safe Version Compatibility: Make sure your contracts and protocol kit versions are compatible with each other (you use Safe v1.4.1).

If you want, here is a checklist for your setup:

Deploy all modules before creating the safe. Encode the call data to enableModules correctly with deployed module addresses. Pass this data as data param in Safe’s setup to call pointing to your SafeModuleSetup. Confirm that delegatecall during setup executes on your SafeModuleSetup code but in Safe proxy context. Monitor revert reasons by adding events or try/catch error handling. If none of this helps, please share exact transaction calldata and deployment steps, so we can pinpoint the issue better.

Good luck! You’re very close to a working local sandbox for module-enabled Safes. Keep going! 🚀

Reasons:
  • RegEx Blacklisted phrase (2.5): please share
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: MOHD SAYEEDUDDIN AHMED

79640420

Date: 2025-05-27 11:53:46
Score: 2
Natty:
Report link

I got this error when I tried to save to C:\Windows\system32. Just put the .pem file in a different directory (Downloads worked for me).

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

79640403

Date: 2025-05-27 11:42:43
Score: 1
Natty:
Report link

Try curling with -H "Host: your.dns.name.com" http://ec-instance-ip-address/

if the ec2 instance response contains a valid body, then your application is configured to drop connections for requests with missing host headers. Configure your web server to respond with 200 for /health regardless of the value of the host header.

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

79640402

Date: 2025-05-27 11:41:43
Score: 2.5
Natty:
Report link

You can just click on cell with only nuber in it and there will appear in the bottom right corner blue square, you can drag it in needed direction and it will increment your value one by one in each cell.

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

79640400

Date: 2025-05-27 11:40:42
Score: 2.5
Natty:
Report link

If anyone is this looking for the answer please find it here:

https://stackoverflow.com/a/75969804/17659484

All credit to Zenik. Thank you bro, life saver.

ANSWER

So, I have managed to find the root cause.

The issue was not in the import or aliases as initially thought. The problem was that I was using @svgr/webpack to convert .svg files into the react components.

These, however, are not JSX components, which were throwing an error in tests as Jest did not know how to resolve svg imports.

For anyone having a similar problem, here is the fix.

Create a mock svg that you want to use. In my case, I have created folder __mocks__/svg.tsx with the below code.

import React, { SVGProps } from 'react';

const SvgrMock = React.forwardRef<SVGSVGElement, SVGProps<SVGSVGElement>>(
  (props, ref) => <svg ref={ref} {...props} />
);

export const ReactComponent = SvgrMock;
export default SvgrMock;

Add the config to jest.config.mjs

moduleNameMapper: {
 '^.+\\.(svg)$': '<rootDir>/__mocks__/svg.tsx',   
}, 

This config resolves imports to the mock svg if there are any in components for jest so you can test the functionality.

I hope it helps anyone running into a similar problem.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1): hope it helps
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): having a similar problem
  • Low reputation (1):
Posted by: Herlander Tavares

79640399

Date: 2025-05-27 11:39:42
Score: 1
Natty:
Report link

@JulianT Adding your comment as an answer

The problem was solved by a more specific selection path and changing the position to fixed (or relative):

@media screen and (max-width: 620px) {
#mobile-navigation > div > ul, #mobile-navigation-jquery > div > ul {position: fixed;}
#mobile-navigation-jquery.target > div > ul {width: 100%;}
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @JulianT
  • Low reputation (0.5):
Posted by: Himanshu Khanna

79640386

Date: 2025-05-27 11:34:40
Score: 2
Natty:
Report link

"we want component name from customer" Does that mean it is based on input selected by customer which component you want to render?

If so, then try this change:

use @api to store the component name to render

@api componentName = "c/dynamicRenderLWC";

then, render LWC component like this:

const ctor = `c/${this.componentName}`;

Reasons:
  • Whitelisted phrase (-1): try this
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @api
  • User mentioned (0): @api
  • Low reputation (1):
Posted by: Umang Verma

79640378

Date: 2025-05-27 11:30:39
Score: 2
Natty:
Report link

Check the java version you are using. The recommended one is Eclipse Adoptium\jdk-17.0.15.6-hotspot and don't forget to add it to your system environment variable and adapt each file in your code so that gradle uses this same version of jdk. I had this error because I am using a very recent version of jdk (23)

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

79640372

Date: 2025-05-27 11:27:37
Score: 1
Natty:
Report link

Check whether policy attached to the role of the provider has an ability to create token. Example

path "auth/token/create" {
    capabilities = ["update"]
}

in the policy attached to the role.

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

79640370

Date: 2025-05-27 11:26:37
Score: 1
Natty:
Report link

You can now do:

SearchAnchor(
    shrinkWrap: true,
....
);

and the search view will shrink-wrap its contents.

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

79640364

Date: 2025-05-27 11:24:36
Score: 1.5
Natty:
Report link

Open Start Menu -> View Advanced System Settings -> Environment Variables -> System Variables

Click "New"
Variable Name : MAVEN_HOME
Variable Value: C:\apache-maven-3.6.0
Click "Ok"

Next Add PATH in Same System Variables.

Click "New"
Variable Name : Path
Add a new value by clicking 'New' button in top right corner.
Variable Value : %MAVEN_HOME%\bin
Click "Ok"

Then Open CMD, then run

mvn -version

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

79640359

Date: 2025-05-27 11:20:35
Score: 2.5
Natty:
Report link

C:\Users\mikework\Desktop\Tailwind>npm run dev npm error Missing script: "dev" npm error npm error To see a list of scripts, run: npm error npm run npm error A complete log of this run can be found in: C:\Users\mikework\AppData\Local\npm-cache_logs\2025-05-27T11_09_29_262Z-debug-0.log

This is my result and it's not helping what could be the error or mistake i'm making

Reasons:
  • Blacklisted phrase (1): what could be
  • No code block (0.5):
  • Low reputation (1):
Posted by: Adekoya Oluwaseun

79640345

Date: 2025-05-27 11:14:28
Score: 6 🚩
Natty: 6
Report link

Bhai koi kuch acha suggest karo sab timepass kr rhe comment m

Reasons:
  • RegEx Blacklisted phrase (2): Bhai
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: stone21cold

79640344

Date: 2025-05-27 11:14:27
Score: 10 🚩
Natty: 5
Report link

did you find answer for this?.

Reasons:
  • RegEx Blacklisted phrase (3): did you find answer
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you find answer for this
  • Low reputation (1):
Posted by: Ajay

79640342

Date: 2025-05-27 11:12:26
Score: 3.5
Natty:
Report link

The Vladislav answer works, there is one small mistake - it must be sudo chmod 777 ...

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

79640338

Date: 2025-05-27 11:09:25
Score: 3.5
Natty:
Report link

I have the same issue here, what I made:

Go to %AppData%\Microsoft\VisualStudio\16.0_<id>\Team Explorer or %AppData%\Microsoft\VisualStudio\17.0_<id>\Team Explorer file, can be some permissions issue with the file.

Rename the file to the VS think the file doesn't exist, and then the Visual Studio will create a new one after starting.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (0.5):
Posted by: Guilherme Bley

79640336

Date: 2025-05-27 11:08:25
Score: 1.5
Natty:
Report link

"Stick War Legacy" is a popular real-time strategy game known for its engaging gameplay and unique mechanics. In this game, players control their army and defeat their enemies. In the normal version, you have to manage units and resources to defeat your opponents.

However, when you use the Stick War Legacy Mod APK, you get several extra features that make the game even more entertaining. The mod version provides perks like unlimited gems, skins, and powerful troops. These benefits help you easily overcome the game’s challenging levels and upgrade your army to make it stronger.

Key Features:

  1. Unlimited Gems: You get endless gems, allowing you to upgrade your units and structures without any limitations.

  2. Unlock Skins: You can unlock various skins and characters that aren't available in the normal version.

  3. Powerful Troops: You can make your troops much stronger, making the gameplay even more exciting.

  4. No Ads: In the mod version, you won’t face interruptions from ads, making the game more enjoyable.

However, when using mod versions, always ensure you download them from trusted sources to avoid any security risks to your device. This version provides extra features, but it does not receive official updates or security patches.

If you want to make your experience with Stick War Legacy more fun and easier, the Stick War Legacy Mod APK might be the perfect option for you."

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Stick War Legacy

79640334

Date: 2025-05-27 11:07:24
Score: 4
Natty:
Report link

Make sure that the installed version of react-native-gesture-handler is compatible with your react-native version, check the link below:

https://docs.swmansion.com/react-native-gesture-handler/docs/fundamentals/installation

enter image description here

Reasons:
  • Blacklisted phrase (1): the link below
  • RegEx Blacklisted phrase (1): check the link
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sherif Samir

79640332

Date: 2025-05-27 11:02:23
Score: 0.5
Natty:
Report link
const parsedValue = parseInt(value, 5); // convert string to int with base 5 

 
setTanksData((prev) => ({ ...prev, "tank":{...prev["tank"], [name]: : isNaN(parsedValue) ? 0 : parsedValue } })); // instead of 0 change to different default number
          console.log(tanksData)
        }
    
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Biggy Poopa

79640325

Date: 2025-05-27 10:59:22
Score: 3.5
Natty:
Report link

There are two solutions:

#if SWIFT_PACKAGE
        return Bundle.module
#else
        return Bundle(for: self)
#endif

Check this link:
How to define Bundle as internal For Pod Lib and SPM that handles both of them For using package images

Reasons:
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): Check this link
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
Posted by: Maziar Saadatfar

79640324

Date: 2025-05-27 10:58:21
Score: 3
Natty:
Report link

Whitelabel Error Page

WITH BIJLI E MITRA

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

79640320

Date: 2025-05-27 10:56:21
Score: 0.5
Natty:
Report link

You need to use an IF statement as part of your formula to check if the value in column D is blank

The below would be the formula to be added into column H. The if(D2=closed, "" is checking if D2 equals Closed and if it does, is entering a blank value.

=IF(D2="Closed","",(TODAY()-G2)&" "&"Days")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: A.Steer

79640313

Date: 2025-05-27 10:50:19
Score: 1
Natty:
Report link

In a MongoDB sharded cluster, the balancer thread runs on the config server primary and is responsible for performing chunk migrations to ensure an even distribution of data across shards. The goal is to have each shard own approximately the same amount of data for a given sharded collection.

Prior to MongoDB 6.1, the balancer focused solely on distributing chunks, not the actual data size. This meant that if chunks were unevenly sized, the cluster could appear balanced in terms of chunk count, while the underlying data distribution remained skewed.

Starting with MongoDB 6.1 (and backported to 6.0.3 with the Feature Compatibility Version (FCV) set to "6.0"), the balancer now distributes data based on data size rather than the number of chunks. This change coincides with the removal of the chunk auto-splitter, leading to more accurate and efficient data distribution across shards in sharded clusters.

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

79640306

Date: 2025-05-27 10:46:18
Score: 3.5
Natty:
Report link

Athena does not support inserting into bucketed tables.

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

79640300

Date: 2025-05-27 10:42:17
Score: 3
Natty:
Report link

My goal is to only allow authenticated users from my Azure AD tenant to access the API and keep below setting

Even I have tried to use both Allow authenticated users from Azure AD tenant to access the API and the Require authentication option in Azure Web App but getting the same error.

Easy Auth generates a token, and we are also manually generating a token using AddMicrosoftIdentityWebApi and [Authorize]. These two tokens might be causing a conflict.

So, you can choose either one of the Authentication methods Easy Auth or Azure AD Authentication.

If you use Easy Auth, to access api/controller endpoint, follow below steps:

enter image description here

enter image description here

enter image description here

If you want full control over authentication inside your ASP. NET app use Azure Ad Authentication.

Reasons:
  • RegEx Blacklisted phrase (2): Even I have
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): getting the same error
Posted by: Aslesha Kantamsetti

79640297

Date: 2025-05-27 10:39:16
Score: 0.5
Natty:
Report link

You can use std::shared_mutex and std::shared_lock to lock only when writing, allowing reading from multiple threads simultaneously [Shared mutex][Shared lock] .

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: PredaWnia

79640296

Date: 2025-05-27 10:39:16
Score: 1
Natty:
Report link

So the thing I found out is that the footer had to be included for this to work, I suspect this is due to the page loading to fast and not picking up the script, or it may be due to the footer being mandatory I am not sure.

Adding this to any page that didn't have the footer solves the issue:

{% block footer %}
<div class="d-none">
  {% include "footer.html" %}
</div>
{% endblock %}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: TheMorningStar

79640294

Date: 2025-05-27 10:37:15
Score: 4
Natty:
Report link

@Surya answer helped me. I enered it without storeEval, just

"${LastGroup}".split(" ")[0]
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • User mentioned (1): @Surya
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Jevanđel Đurić

79640282

Date: 2025-05-27 10:32:13
Score: 1
Natty:
Report link

I'd like to make mention of the useful "jsonrepair" npm library. It solves a number of issues with unparsable JSON, including control characters as presented in this issue:

import { jsonrepair } from 'jsonrepair';

let s = '{"adf":"asdf\tasdfdaf"}';
JSON.parse(jsonrepair(s));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: weaponforge

79640261

Date: 2025-05-27 10:19:09
Score: 1.5
Natty:
Report link
const { randomUUID } = require(‘crypto’);
console.log(randomUUID());
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Aliday K

79640243

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

error: could not receive data from server: Socket is not connected (0x00002749/10057) or this type of issue.

solution : firewall or anti virus blocking the port 5432. You can change the port no in which is unblock.

Disable anti virus if you can.

In my case my organisation use custom firewall i requested the head to inform the firewall team to unblock the some ports including 5432 port on developer IP . every one facing this issue for long time even my head facing the issue when i discus then it come in knowledge.

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

79640241

Date: 2025-05-27 10:07:05
Score: 1
Natty:
Report link

I ran into a similar issue with Android Studio 2024.2.1 and fixed it by pointing Flutter to JDK 11 manually. This command solved the problem for me:

flutter config --jdk-dir "C:\Program Files\Java\jdk-11"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mohamed ali Adweni

79640237

Date: 2025-05-27 10:04:04
Score: 0.5
Natty:
Report link

AFAIK, the approach of removing the group from the IAM permissions on the Redis resource to restrict access to the Redis console is correct.

If you want to restrict a user, service principal or managed identity from executing specific commands in the Redis Cache Console, you can create a custom data access policy that limits allowed commands (e.g., +get, +set, +cluster|info).

To create a custom access policy, open your Redis Cache instance in the Azure portal, go to Data Access Configuration, click on New access policy, and specify the permissions according to your requirements.

enter image description here

I have assigned a read-only custom access policy to the user with the following permissions: +@read +@connection +cluster|info +cluster|nodes +cluster|slots ~*. enter image description here

After that, I assigned the created custom access policy to the user.

enter image description here

Reference: learn.microsoft.com/en-us/azure/azure-cache-for-redis/…

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

79640236

Date: 2025-05-27 10:04:04
Score: 3
Natty:
Report link

try this, maybe this website will help you

https://hubpanel.net/blog/receive-emails-and-forward-them-to-rest-apis-with-email-webhooks

Reasons:
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: K0il

79640223

Date: 2025-05-27 09:56:02
Score: 2.5
Natty:
Report link

use react-native-fast-image and use FastImage component to preload image it will reduce the flickering issue and improve Ui UX

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

79640217

Date: 2025-05-27 09:54:01
Score: 1
Natty:
Report link

Sneaky issue: if you have a file named chatterbot.py you also see this issue. Had the same issue, found the solution on Github.

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

79640214

Date: 2025-05-27 09:52:00
Score: 2.5
Natty:
Report link

I found that I can use decorators to archive partially what I'm looking for.

Using a solution similar to this answer (https://stackoverflow.com/a/2575999/), I can show in Sphinx docs the values instead of the variable names.

def fixdocstring(func):
  
    constants_value = [..., constants.WIDTH, ...]

    for i in range(len(constants_name)):
        func.__doc__ = func.__doc__.replace("constants."+constants_name[i],str(constants_value[i]))

And use it in the functions that I want to change.

@fixdocstring
def train_network(...)
"""
...

Args:
    width (int):
        Width of the network from which the images will be processed. Must be a multiple of 32. The default is constants.WIDTH.
"""

In Sphinx docs: Result

Unfortunately, this is not recognized by Intellisense in VSCode.

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

79640211

Date: 2025-05-27 09:51:00
Score: 3
Natty:
Report link

Try to type Colaboratory in the search bar at the Connect more apps step:

enter image description here

then connect the Colaboratory app to google drive

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

79640196

Date: 2025-05-27 09:42:57
Score: 2
Natty:
Report link

It can't be done, Because it need AccessDatabase 32-bit but now AccessDatabase 2016 only avalible with 64-bit without 32-bit.

My Solution to your problem Don't extract source file from Excel, Turn it into csv format and extract this data by using flat file source. It will Run.

Best of Luck

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

79640187

Date: 2025-05-27 09:36:56
Score: 2.5
Natty:
Report link

This will do the trick:

  <Tabs.Screen
      name="your/route/to/hide"
      options={{
          href: null,
      }}
  />

https://docs.expo.dev/router/advanced/tabs/#advanced

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

79640186

Date: 2025-05-27 09:35:56
Score: 2
Natty:
Report link

For Android, Kotlin is the best choice right now since it’s Google’s official modern language ,cleaner and easier than Java, but you can still use Java if needed. If you want to build apps for both Android and iOS, you might also consider learning Flutter (Dart) or React Native (JavaScript), which let you create apps for both platforms with one codebase. But if you want to focus solely on Android, Kotlin is the way to go

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

79640180

Date: 2025-05-27 09:31:51
Score: 8 🚩
Natty:
Report link

As of now I have got this much of the details on this topic, @jems I do not have Red Hat account does this required subscription or something?

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @jems
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: D_J

79640178

Date: 2025-05-27 09:31:51
Score: 0.5
Natty:
Report link

Try decorating your controller actions with EndpointSummary attribute.

Because using Route attribute actually changes the route, and it is not to change the label on Swagger (or Scalar in my case). The URLs for your actions also change according to Route attribute.

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

79640177

Date: 2025-05-27 09:31:51
Score: 3
Natty:
Report link

The --release flag is only supported starting from JDK 9. You're using the JDK 8 variant of the Maven Docker image

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

79640169

Date: 2025-05-27 09:26:49
Score: 0.5
Natty:
Report link

Hi use this it should resolve your error.

@rx.event
def confirm(self):
    self.did_confirm = True
    import json
    with open("x.json", mode='w') as h:
        h.write(json.dumps({
            "word1": StateA.value.get_value(),
            "word2": StateB.value.get_value(),
        }))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: mani

79640167

Date: 2025-05-27 09:26:49
Score: 1
Natty:
Report link

Your code is working fine. Just need simple modification.

def cashflow_series(ch1=1, ch2=2):
    return {0: ch1, 0.5: ch2, 1: 7, 2: 8, 3: 9}

df = df.assign(cashflows=lambda x: x.apply(lambda row: cashflow_series(ch1=row['Characteristic1'], ch2=row['Characteristic3']), axis=1))

print(df.to_string())
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Muideen

79640165

Date: 2025-05-27 09:25:49
Score: 0.5
Natty:
Report link

The TYPO3 extension "TYPO3-Backend-Cookies" has a v11 branch: https://github.com/AOEpeople/TYPO3-Backend-Cookies/tree/TYPO3-11

It's a successor to the "Backend cookies" extension that was available for TYPO3v4.

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

79640156

Date: 2025-05-27 09:15:46
Score: 4
Natty: 5.5
Report link

I might be misunderstanding what exactly an autocomplete suggestion is, but Daniel's answer unfortunately did not work for me. For me, removing the up and down arrows from triggering "selectNextSuggestion" and "selectPrevSuggestion" works.

Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jakub

79640155

Date: 2025-05-27 09:14:46
Score: 2
Natty:
Report link

Since PECL ssh2 1.0 there is now a command ssh2_disconnect() that closes the connection.

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

79640154

Date: 2025-05-27 09:14:46
Score: 2
Natty:
Report link

In case anyone was using ipython, make sure to pip install ipython and make sure it is up-to-date before executing import commands with psycopg

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

79640152

Date: 2025-05-27 09:11:45
Score: 1.5
Natty:
Report link
I have found the solution. The interface is defined via conf.iface. So thats now the correct code: 

ip = IPv6(src=localIpv6 , dst = dstIpv6)
tcp = TCP(sport = localPort, dport = port, flags = "S")
raw = Raw(b"x" * size)
packet = ip / tcp / raw
conf.iface = "eth0"

send(packet, verbose = True) 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: IceLove

79640151

Date: 2025-05-27 09:11:45
Score: 0.5
Natty:
Report link

my code is:

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.support.ui import WebDriverWait, Select
from selenium.webdriver.support import expected_conditions as EC
import time
url = 'https://www.nepremicnine.net/'
options = webdriver.ChromeOptions() 
service = Service() #Service('path/to/chromedriver') #Service()  # Optional: 
driver = webdriver.Chrome(service=service)
driver.get(url)
btn1 = driver.find_element(By.ID, "CybotCookiebotDialogBodyButtonAccept")
btn1.click()
all_cookies = driver.get_cookies()
for cookie in all_cookies:
    print(f"Name: {cookie['name']}, Value: {cookie['value']}")

time.sleep(5)
src_btn = WebDriverWait(driver,10).until(EC.element_to_be_clickable((By.XPATH, "//a[@class='gumb potrdi']")))
src_btn.click()

time.sleep(200)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rok Golob

79640122

Date: 2025-05-27 08:52:40
Score: 0.5
Natty:
Report link

Partially possible, use flutter_local_notifications to schedule or update notifications based on a timer.

For background updates on Android, use workmanager or android_alarm_manager_plus

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

79640117

Date: 2025-05-27 08:50:39
Score: 4.5
Natty: 8
Report link

THIS IS A GENERAL QUESTIONS REGARDING PYTHON VERSION VISE VERSA ....

WHY WE NEED TO UPDATE THE REQUIREMENTS EVERYTIME CAN'T WE DEFINE THE VERSION NOS.. AND CAN PROCEEED WITH THE SAME WHAT WE DID IN OLDER VERSION??

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: CHANDAN TIWARY

79640112

Date: 2025-05-27 08:46:38
Score: 0.5
Natty:
Report link

Not sure if this is the problem in your case, but I've seen this error when debugging in Visual Studio Code on Windows 11. It hits the error when importing python libraries. I found copies of the libraries were installed in the visual studio extensions folders: "C:\Users\[username]\.vscode\extensions\". I just deleted all files under this folder. When I opened Visual Studio Code it prompted me to reinstall the deleted Python extensions, which I did, and the problem was resolved. A clean un-install and re-install of the Python extensions would probably work too.

Reasons:
  • Whitelisted phrase (-1): in your case
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lucas Smith

79640109

Date: 2025-05-27 08:45:36
Score: 6 🚩
Natty: 5.5
Report link

Any chance with this issue please ?

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

79640107

Date: 2025-05-27 08:44:36
Score: 0.5
Natty:
Report link

I have solved a similar request by cross blending the data source with itself and adding 2 fields for comparision:

  1. textDate (table 1)  = TODATE(date,"%Y-%m-%d","%Y-%m-%d")
    
  2. maxDate (table 2) = TODATE(MAX(date),"%Y-%m-%d","%Y-%m-%d")
    
    

    then to get the balance for the latest date:

  3. SUM(IF(textDate = maxDate, balance,0))
    

enter image description here
enter image description here
enter image description here
enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-2): I have solved
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Steve Gulloni

79640100

Date: 2025-05-27 08:39:35
Score: 0.5
Natty:
Report link

If you are streaming data into BigQuery using the Java `insertAll` method, it should be available almost immediately after insertion. You might run into some lag when trying to access the data through queries. This is likely because of consistency delays or other factors related to how your table is set up and partitioned.

In cases where your table is partitioned by ingestion time (_PARTITIONTIME), new rows may not be visible when applying a filter for specific dates. This is particularly true for fresh data. Even though BigQuery streaming inserts have low latency, brief periods can still occur before data can be queried.

Here's what you can do:

  1. Verify that your table is partitioned and that you are querying the correct partition.

  2. Consider running your query without the partition filter to check whether or not the data is there.

  3. Make sure you use the INFORMATION_SCHEMA views to check for latency associated with the streaming buffer.

  4. Review your inserting logic to confirm that there are no errors being surfaced (your logic is alright at the moment).

If you are looking for seamless and effortless data streaming as well as integration with BigQuery, you can take a look at the Windsor.ai ETL platform.

Here are the benefits that come with Windsor:

Reach out to me if you need help with this!

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

79640093

Date: 2025-05-27 08:33:32
Score: 2
Natty:
Report link

I can't see the Dom given your snippet for only the webpage , but i believe you're using .click() on the xpath and there must be an iframe which you need to switch to first and then click using the xpath.

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

79640091

Date: 2025-05-27 08:32:32
Score: 3
Natty:
Report link

If you want a draggable and resizable feature on shape by Adorner, you can try nuget pack:
https://www.nuget.org/packages/Hexagram.WPF.Transform/

and the source code could be found here:
https://git.ourdark.org/ourdark/hexagram.wpf.transform#

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

79640090

Date: 2025-05-27 08:32:32
Score: 1.5
Natty:
Report link

Just type the following in a command prompt:

pip uninstall numpy

Pip might ask you:

Proceed (y/n)?

You just type y, and it will uninstall. Then you type:

pip install numpy

It should work, as pip fetches the latest version of a package.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: A. Singh

79640087

Date: 2025-05-27 08:31:31
Score: 0.5
Natty:
Report link

With postgres 18+:

INSERT INTO chats ("user", "contact", "name") 
           VALUES ($1, $2, $3), 
                  ($2, $1, NULL) 
ON CONFLICT("user", "contact") DO NOTHING
RETURNING old.id;
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: milan