79817162

Date: 2025-11-11 21:55:25
Score: 2
Natty:
Report link

Hash Function will be your friend.

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

79817151

Date: 2025-11-11 21:46:23
Score: 2.5
Natty:
Report link

You can do this by building a native layer for the C# and consuming it with the JNI. You must also deploy the Mono runtime onto your device.

https://github.com/AaronRobinsonMSFT/DNNE/issues/179

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

79817148

Date: 2025-11-11 21:43:21
Score: 1
Natty:
Report link
def xor(x, y):
    return bytes(a^b for a,b in zip(x, y))

cipher = bytes.fromhex("0e0b213f26041e480b26217f27342e175d0e070a3c5b103e2526217f27342e175d0e077e263451150104")

print(xor(cipher, b"myXORkeymyXORkeymyXORkeymyXORkeymyXORkeymyXORkey"))

    

i was also stuck at this but i solve by repeat the key :)

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

79817144

Date: 2025-11-11 21:40:20
Score: 1
Natty:
Report link

You can do that with this order:

plot(as.dendrogram(hc_sbd_1), nodePar = list(lab.cex = 0.5, pch = NA))

If you also need to make the lines thiner, use this order:

plot(as.dendrogram(hc_sbd_1), nodePa r= list(lab.cex = 0.25, pch = NA), edgePar = list(lwd = 0.5))

I you also want to change the y axis, use these orders:

plot(as.dendrogram(hc_sbd_1), nodePar = list(lab.cex = 0.25, pch = NA), edgePar = list(lwd = 0.5), axes = F)

axis(2, lwd = 0.3, cex.axis = 0.3)

And, finally, if you have a very large number of elements in the dendrogram, use these orders (they wirthe the dendrogram as a pdf file; you can change it to EMF or other output you want):

par(cex = 0.5)

pdf("hc_sbd_1.pdf", width = 20, height = 20)

plot(as.dendrogram(hc_sbd_1), nodePar = list(lab.cex = 0.05, pch = NA), edgePar = list(lwd = 0.5), axes = F)

axis(2, lwd = 0.3, cex.axis = 0.3)

dev.off()

You can adapt these orders according to the size of the dendrogram. lab.cex always refer to the size of the characters and lwd the width of the dendrogram lines.

par(cex = 1)

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jaume B i G

79817138

Date: 2025-11-11 21:33:18
Score: 3
Natty:
Report link

I was investigating why arch linux also does not show this hint.
debian (and so also ubuntu) adds a custom patch set over openssh-portable which adds this nice hint

https://sources.debian.org/data/main/o/openssh/1:10.2p1-2/debian/patches/mention-ssh-keygen-on-keychange.patch

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

79817131

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

Hope I don't break any rules but I am developing a pure Python DataGridView with killer performance.

Take a look here :

pyDataGridView

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

79817125

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

The following solution ensures the pipeline is aborted only if not on master:

def isMasterBuild = env.BRANCH_NAME == 'master'

pipeline {
    agent any
    options {
        disableConcurrentBuilds(abortPrevious: !isMasterBuild)
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Wladimir Safonov

79817120

Date: 2025-11-11 21:11:11
Score: 4
Natty:
Report link

I stumbled across a tutorial on the internet which clarified things for me, and backed up what you said.
https://github.com/Basel-Dawoud/Recipes-Examples-BootlinTutorial?tab=readme-ov-file#src_uri

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

79817112

Date: 2025-11-11 21:05:09
Score: 1
Natty:
Report link
Just remove the runtime parameter:

@tool("foo_tool", description="test tool")
def foo_tool() -> Command:
    return Command(update={"called_tool": True})


This will run perfectly with the pre-built ToolNode.
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: inevitable

79817111

Date: 2025-11-11 21:03:09
Score: 3
Natty:
Report link

Indeed! I off loaded all of the computation onto a web app script and only took information from the spreadsheet, instead of using formulas. It can now deal with multiple inputs from different users simultaneously.

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

79817106

Date: 2025-11-11 20:58:06
Score: 6.5 🚩
Natty: 5.5
Report link

could you please share the solution

Reasons:
  • RegEx Blacklisted phrase (2.5): could you please share the solution
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Eng.Aldhamdy

79817093

Date: 2025-11-11 20:41:01
Score: 4.5
Natty:
Report link

You release is so old and unsupported since 2019, that the official docs don't even mention the available Python packages for Version 12: Available Python versions - Ubuntu for Developers

Python 3 was added to Ubuntu only at version 14.10 - Python/3 - Ubuntu Wiki

Is there a good reason to remain on that version, considering hundreds of exploitable security vulnerabilites - Canonical Ubuntu Linux 12.04 security vulnerabilities, CVEs?

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: orbanbalage

79817091

Date: 2025-11-11 20:32:59
Score: 2.5
Natty:
Report link

If you are getting an integrity error it's likely that your business has not passed the verification. That also means that your phone number should pass the display name check. You should try again until you clear the "in progress" status from the flow builder.

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

79817087

Date: 2025-11-11 20:25:58
Score: 3.5
Natty:
Report link

they are evil. do not drink the fruit punch at the cult.

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

79817081

Date: 2025-11-11 20:20:55
Score: 1
Natty:
Report link

If the values are all different then you could use this formula in B2 where your values are in A1:D1

=LET(r,A1:D1,r>=LARGE(r,2))

You could also do this with conditional formatting rather than formulas on the worksheet

....but what do you want to do if you have duplicate values?

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: barry houdini

79817074

Date: 2025-11-11 20:12:53
Score: 2.5
Natty:
Report link

For scenarios where you need to update multiple things on a page, I think the recommended mechanism is https://htmx.org/attributes/hx-swap-oob/, which allows updating an arbitrary number of elements on the page without reloading the entire page or needing multiple requests to the server.

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

79817062

Date: 2025-11-11 19:51:47
Score: 0.5
Natty:
Report link

Thanks for your reply. I didn't think my use case was that unusual but I'm beginning to realize that it is. What I'm trying to do is control the python version and sys.path that is utilized by vim. To me, the reason is self evident: the scripts that I'm executing with vim's python module require me to control the python environment (i.e. sys.path). This is exactly why virtual environments exist in the first place.

I typically use gvim for python development and launch vim from a virtual environment. I use Vim's terminal to launch python apps inside of a virtual environment. I also utilize a number of custom python tools that I execute from within vim with: py3, py3eval .. etc.

Vim DOES honor these options:

set pythonthreehome=C:\Python314
set pythonthreedll=C:\Python314\python314.dll

And vim's python sys.path DOES follow with the version of Python, it is also is modified, so for my configuration vim's python sys.path is

c:\python314\python314.zip
c:\python314\dlls
c:\python314\lib
c:\apps\vim\vim91
c:\python314
c:\python314\lib\site-packages
_vim_path_

Evidently, vim is modifying it's python environment to add:

c:\apps\vim\vim91
_vim_path_

My desire is to change this behavior so that vim's sys.path matches the virtual environment that it was launched but also keep the capability to

import vim

I think I now have enough information to write some vimscript to modify the sys.path as I need. Thanks for your help.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-0.5): Thanks for your help
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: NW_BlackDog

79817061

Date: 2025-11-11 19:49:46
Score: 2
Natty:
Report link

It is an NP-hard problem. The best you can hope for is an approximation algorithm.
To find the actual maximum, maybe by restricting the family of graphs that you use, with some extra conditions.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Alma Arévalo

79817057

Date: 2025-11-11 19:45:45
Score: 0.5
Natty:
Report link

Sadly, this is not possible (anymore). I had such a test in my service as well and now, incrementing the Quarkus version to LTS 3.27.0, it is broken.

The test class cited in the answer from Holly Cummins (thanks for the link) is still present: QuarkusTestNestedWithTestProfileTestCase

However, there is a slight but important difference by now:

@Nested
@TestProfile(QuarkusTestNestedWithTestProfileTestCase.ModernEnglishProfile.class)
@Disabled("With the current test classloading design, test profiles on nested inner classes are too hard, because nested classes should run with the same classloader as the parent, but a test profile involves a new application, which involves a new classloader.")
class ModernEnglishCase {

    @Test
    void testProfileFromNested() {
        RestAssured.when()
                .get("/greeting/Stu")
                .then()
                .statusCode(200)
                .body(is("Hey Stu"));
    }
}

So bad luck here.

Executing my old and previously working test results in the following exception:

org.junit.jupiter.api.extension.TestInstantiationException: @Nested tests may not contain @TestProfile annotations.
    at io.quarkus.test.junit.QuarkusTestExtension.ensureStarted(QuarkusTestExtension.java:598)
    at io.quarkus.test.junit.QuarkusTestExtension.beforeAll(QuarkusTestExtension.java:687)
    at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)

The behavior is as well documented here.

  1. Nested Tests

JUnit 5 @Nested tests are useful for structuring more complex test scenarios. However, note that it is not possible to assign different test profiles or resources to nested tests within the same parent class.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Nested
  • Low reputation (0.5):
Posted by: MichaelCkr

79817049

Date: 2025-11-11 19:33:41
Score: 2.5
Natty:
Report link

If someone encounters this issue and nothing seems to help, take a look at Logcat. In my case, the problem wasn’t in the package that Flutter logs were pointing to at all. It was resolved by adding the proper ProGuard rules.

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

79817039

Date: 2025-11-11 19:16:35
Score: 4
Natty: 5
Report link

Thank you so much for sharing this.

Is there a way to modify this snippet to hide all Custom Attributes from view? We only want to display the global attributes on the product pages.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): Is there a way
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Acquamarinna

79817032

Date: 2025-11-11 19:04:31
Score: 1
Natty:
Report link

@Display Name asked about using SortOptionsDescriptor instead of just SortOptions. There is another parameter for sort that takes an

 Action<SortOptionsDescriptor<TDocument>>[] 

for sort options.

You can then just create something like this and pass it to the Sort of a search

Action<SortOptionsDescriptor<TDocument>>[] sortoptions =
[
    sd => sd
        .Field("_score", SortOrder.Desc)
    , sd => sd
          .Field(f => f.Counter, SortOrder.Desc)
];
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Display
  • Low reputation (0.5):
Posted by: JMIII

79817029

Date: 2025-11-11 19:02:31
Score: 1
Natty:
Report link
  1. In the Power BI service, go to the workspace that contains the dataset.

  2. Click on the dataset and then on the settings.

  3. Check the 'Data source credentials' and make sure they are configured correctly.

  4. If the credentials are set, try updating them (re-enter the password) and test again.

  5. If the dataset uses a live connection to an Azure Analysis Services model, then check the AAS model permissions.

  6. If the dataset is imported (not live), then check the gateway and the data source permissions.

  7. If the issue persists, consider changing the authentication method to one that is more universally accessible, such as OAuth2.

  8. Also, check if the custom visual is using a direct query and if the user has the necessary permissions for the underlying data source...✨

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

79817024

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

data:application/pdf;base64,JVBERi0xLjMKMyAwIG9iago8PC9UeXBlIC9QYWdlCi9QYXJlbnQgMSAwIFIKL1Jlc291cmNlcyAyIDAgUgovQ29udGVudHMgNCAwIFI+PgplbmRvYmoKNCAwIG9iago8PC9GaWx0ZXIgL0ZsYXRlRGVjb2RlIC9MZW5ndGggNjM5Pj4Kc3RyZWFtCnicnVTLbtswELznK/aYAAkr6mFJxzRpihYpUBQCesmFllc2U5E0SCqu+/VdUrZrQwaK2AfDJrizszOzTOHrVcKKEjZXHxv48MSBpyxJoOngUxOOMs54DWVdsLKEZgHXX9RatB4X8E3ohZwPvbDQrKSlAxN+38FDL7VsRQ9PKPxg0d2Gu2KJCrW/BSqDn/c/4FlqdDfQvJ52ymqWjJ3u/vuZVvOElVmsfsSOaHhp9OTWrEpZVr2zR8JmaQ3N5gimyFmSHYlCvUA66ITsaWwwHQjwxvgVfQPaYe1BavopvQNtrCKJ1sbJsU6DXyEs

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: shankar saini

79817021

Date: 2025-11-11 18:59:29
Score: 3
Natty:
Report link

Thanks JosefZ. That worked! Couldn't get /wait to work starting Windows Media Player - Cmd Processor just plowed on ahead without waiting for Player window to close. After I added a "Title" to the Start cmd, voila, I got the expected/intended results. It didn't display the title in the window but I didn't care about that, the Wait is what I was after. Peculiar indeed. (This was on Windows 11 Home V24H2)

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: BSN

79817011

Date: 2025-11-11 18:44:24
Score: 4.5
Natty:
Report link

I wrote a Custom Progressbar Component for FMX, check this link: https://github.com/dani36652/Delphi-FMX-CustomProgressBar

You can set Fill, X and YRadius and other options.

Reasons:
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): check this link
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Daniel Rodriguez

79817009

Date: 2025-11-11 18:42:23
Score: 1
Natty:
Report link

Add the following to a property group in your .csproj:

<InterceptorsNamespaces>$(InterceptorsNamespaces);Microsoft.AspNetCore.OpenApi.Generated</InterceptorsNamespaces>   

That's what the error message directs you to do and it fixed the issue for me

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

79817001

Date: 2025-11-11 18:32:20
Score: 0.5
Natty:
Report link

CancellationToken should be implemented across the entire chain of methods. In this case, the entire chain of endpoints.

From a blog post from MS DevBlogs, describing Recommended patterns for CancellationToken:

Propagate your CancellationToken to all the methods you call that accept one, except after the “point of no cancellation” referred to in the previous point. In fact if your method mostly orchestrates calls to other methods that themselves take CancellationTokens, you may find that you don’t personally have to call CancellationToken.ThrowIfCancellationRequested() at all, since the async methods you’re calling will generally do it for you.

https://devblogs.microsoft.com/premier-developer/recommended-patterns-for-cancellationtoken/

Let's say that an user on the frontend begins an operation and then requests its cancellation.

  1. ApiServer 1 endpoint's CancellationToken will change IsCancellationRequested property to `true`, which will propagate to inner calls that use this same CancellationToken; in this case, to Api Server 2. At the same time, the ApiServer 1 endpoint call will cease execution.

  2. ApiServer 2 endpoint's CancellationToken will change IsCancellationRequested to `true`, which will propagate to inner calls; in this case, to the database. Due to the database principle of Atomicity (ACID principles)*, if the database transaction is ongoing**, then it will be completely cancelled and reverted. Also, at the same time, the ApiServer 2 endpoint call will cease execution.

* Considering the database follows ACID principles.

** If the database finished the transaction, but didn't finish communicating it to the caller, then the CancellationToken will have no effect.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Starts with a question (0.5): Can
  • Low reputation (0.5):
Posted by: Alexandre

79816997

Date: 2025-11-11 18:30:19
Score: 3
Natty:
Report link

You can use `add_extension` now.

https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#method.add_extension

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ctrlshiftm

79816990

Date: 2025-11-11 18:20:15
Score: 2.5
Natty:
Report link

You can also cycle through them by pressing F8.

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

79816988

Date: 2025-11-11 18:17:14
Score: 1
Natty:
Report link
trendmobi/
  public/
    logo.svg
  src/
    components/
      Header.js
      Footer.js
      ProductList.js
      Cart.js
      Checkout.js
    pages/
      Home.js
      Shop.js
    App.js
    index.js
  package.json
  README.md
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Khin Medals

79816973

Date: 2025-11-11 18:00:08
Score: 1
Natty:
Report link

Magento 2.4.7 actually supports MariaDB 11, if you came here like me looking for a fix, try adding

<item name="MariaDB-11.4" xsi:type="string">^11\.4\.</item>

Around line 1886 of your di.xml file where the other DB are named

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

79816954

Date: 2025-11-11 17:33:00
Score: 1.5
Natty:
Report link

I have many tables that begin with "cir_" and for me, the MySQL command to select all of them is:

show tables like "cir%";

I took the above answers and modified them and it worked! Woohoo!

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Peri Saner

79816953

Date: 2025-11-11 17:31:59
Score: 2
Natty:
Report link

It could be because of following reasons:

- Please check your hostname in your connection string is that correct?

- Please check is there any network traffic blockage on specific DSN you are dealing with?

- Please confirm are you using correct connection string?

for your reference please see following link official documentation of Azure AI foundry it could be helpful for you

https://ai.azure.com/doc/azure/ai-foundry/how-to/develop/sdk-overview?tid=6dba51f8-a494-49aa-8bdc-109e51dc0052

May be following code could solve your issue:

var connectionString = Environment.GetEnvironmentVariable("PROJECT_CONNECTION_STRING");
var parts = connectionString.Split(';');
if (parts.Length != 4)
    throw new InvalidOperationException("Connection string format invalid.");
var host = parts[0];
System.Net.Dns.GetHostEntry(host);  

Hopefully it may solve your issue . cheers!

Reasons:
  • Blacklisted phrase (1): cheers
  • Blacklisted phrase (1): is there any
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: ISK

79816951

Date: 2025-11-11 17:25:58
Score: 1
Natty:
Report link

Using the literate key seems to be a sensible, non-hackish approach.

\begin{lstlisting}[literate={£}{\pounds}{1}]
Lorem ipsum 3£
\end{lstlisting}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Simon Willerton

79816946

Date: 2025-11-11 17:21:56
Score: 1.5
Natty:
Report link

# Source - https://stackoverflow.com/q

# Posted by TheFlappy

# Retrieved 2025-11-11, License - CC BY-SA 4.0

async def on_startup(bot: Bot) -> None:

await bot.set_webhook(f"{BASE_WEBHOOK_URL}{WEBHOOK_PATH}")

def main():

bot = Bot(TOKEN, parse_mode='HTML')

dp = Dispatcher()

dp.startup.register(on_startup)

app = web.Application()

webhook_requests_handler = SimpleRequestHandler(

    dispatcher=dp,

    bot=bot

)

webhook_requests_handler.register(app, path=WEBHOOK_PATH)

setup_application(app, dp, bot=bot)

web.run_app(app, host=WEB_SERVER_HOST, port=WEB_SERVER_PORT)

if _name_ == "_main_":

main()
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Mohamed Abdulle

79816943

Date: 2025-11-11 17:18:54
Score: 8.5 🚩
Natty: 6.5
Report link

Is the issue resolved ? please provide the comment

Reasons:
  • RegEx Blacklisted phrase (2.5): please provide
  • RegEx Blacklisted phrase (1.5): resolved ?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is the is
  • Low reputation (1):
Posted by: jeeva.S

79816941

Date: 2025-11-11 17:12:51
Score: 5.5
Natty: 5
Report link

When you changed the path, did you change the user path or the system path? Did you check the other path too?

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

79816925

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

This post really highlights what a pain it is to hunt down those vulnerable Log4j versions, especially when they're buried deep in other JARs. It’s a classic software supply chain headache. It makes you think, a tool like ZAST.AI that's built for software supply chain security could probably make finding and fixing this stuff much more automatic.

Reasons:
  • Contains signature (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: ZAST.AI

79816916

Date: 2025-11-11 16:53:44
Score: 3
Natty:
Report link

Probably not relevant anymore, but this might help someone who runs into the same issue.
There’s likely better tooling out there by now, but for what it’s worth:

I recently built a library that solves this exact problem.
It’s called JDAE (Java Dynamic Annotation Expansion), an open source metaprogramming library that lets you expand (process and replace) annotations dynamically at build time.
You can check it out here: https://github.com/Relism/JDAE

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Contains signature (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Relism

79816914

Date: 2025-11-11 16:52:44
Score: 2
Natty:
Report link

There would be a difference in output here between using commonJS versus using ESM in your project. ES modules are promise-based so, promise microtask queue is exhausted first in this case. Whereas commonJS has the traditional Node.js execution environment and nextTick takes priority here as mentioned in the Node.js docs.

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

79816894

Date: 2025-11-11 16:33:37
Score: 1.5
Natty:
Report link

In python for loop, you should be aware that the function inside should be indented or else the for loop wont run

for lat,lon in zip(df['latitude'],df['longitude']): # go through two columns at once
        school_location.append([lat,lon])
        for schools in school_location:
                distance_apart = (distance.distance(your_location ,schools)).miles
                Distance.append(distance_apart)

This would fix the looping function the next problem would be the variable name distance_apart as your function name is also distance_apart this can shadows the function name and make it confusing.

Hope this helps and please give the error message next time

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • RegEx Blacklisted phrase (2.5): please give
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jovinto Ferdinand Kusniawan

79816892

Date: 2025-11-11 16:32:36
Score: 1
Natty:
Report link

I have used the .groovy format despite never programmed in it. For the nested IFs, ISNUMBER, ISBLAND, OR and AND, the highlighting worked.

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

79816891

Date: 2025-11-11 16:31:36
Score: 2.5
Natty:
Report link

Problem in node ‘PartialExecutionToolExecutor‘

Error executing tool: Got error from serpAPI: Missing query `q` parameter.

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

79816888

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

Check this out:

@export_range(0, 100) var height

Docs: https://docs.godotengine.org/en/stable/tutorials/scripting/gdscript/gdscript_exports.html#limiting-editor-input-ranges

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

79816870

Date: 2025-11-11 16:15:30
Score: 1.5
Natty:
Report link

I had the same issue. I updated the installed Microsoft packages that were updatable (among which was the package with vulnerabilities), and the issue is now gone.

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

79816868

Date: 2025-11-11 16:14:30
Score: 2
Natty:
Report link

Had the same problem. All the above solution did not work.

Solved is through setting $xyx='/mnt/c/Program Files' in single inverted quotes
export $xyx='/mnt/c/Program Files'

And then accessing the variable through double inverted quotes cd "$xyz"

Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Naman

79816867

Date: 2025-11-11 16:14:29
Score: 4
Natty:
Report link

Can you share your vite.config.js file?
If you are using inject:

import inject from '@rollup/plugin-inject';
export default defineConfig({
    plugins: [
        inject({ // This should be first under plugins array
            $: 'jquery',
            jQuery: 'jquery',
        }),
        ...

Remove it!

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you share your
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you share you
  • Low reputation (0.5):
Posted by: Omar Alkattan

79816866

Date: 2025-11-11 16:14:29
Score: 3
Natty:
Report link

I tried ctrl alt M but it's not working, but then I pressed ctrl alt N one more time and it actually stops the code!

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

79816862

Date: 2025-11-11 16:11:28
Score: 1.5
Natty:
Report link

It's been a while since this post received any responses, but I'd like to contribute something valuable to the discussion.

- Tagged frames keep their VLAN ID as they enter a trunk port, and the switch forwards them only if that VLAN is allowed on that port.

- If the VLAN isn’t allowed, the frame is dropped; if it is allowed, the switch forwards it to ports that are members of the same VLAN.

- Access ports only belong to a single VLAN and remove the tag before sending the frame out.

https://community.cisco.com/t5/networking-knowledge-base/vlans/ta-p/3114286
https://pingmynetwork.com/network/concepts/vlan-fundamentals

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

79816860

Date: 2025-11-11 16:11:28
Score: 1.5
Natty:
Report link

It sounds like you want the active navigation item to have a custom background color, while keeping the text and icon readable. The problem is caused by the opacity property in you bg-active class.

The property reduces the entire elements opacity, including all its children. Try setting the opacity to 1 or removing it completely.

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

79816851

Date: 2025-11-11 15:59:25
Score: 2
Natty:
Report link

Updating the SDK and tools is done through android studio. Trying to 'reinstall parts' of it is only going to cause version conflicts. If you cannot update them through gradle, or manually as described in this link, you may have to delete the current platform and start again. (Which is not as painful as it sounds).

https://developer.android.com/studio/intro/update

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

79816849

Date: 2025-11-11 15:58:25
Score: 3
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Susip Rah

79816847

Date: 2025-11-11 15:55:24
Score: 2.5
Natty:
Report link

Thx to @shingo: Using TypeNameHandling = TypeNameHandling.Auto (TypeNameHandling.All is also possible) solved my issue. And there is no need to write custom converter at all.

Reasons:
  • Blacklisted phrase (1): Thx
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @shingo
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: bairog

79816838

Date: 2025-11-11 15:44:21
Score: 0.5
Natty:
Report link

I'm executing the our test EXE from the command line and needed to use the -html C:\Folder\File.html format for this to work

Tests.exe -html C:\Folder\File.html
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: pwhe23

79816831

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

I don't quite understand "the distance between a quadratic function and R".

If you are looking for the distance between a point and an n-sphere centered at c (i.e. $$(x - c)^{T}(x - c) \le r^{2})$$) you will want the convex program $$\min_x |x - p| \quad \text{subject to} \quad (x - c)^{T}(x - c) \le r^{2}$$

Notice that this cost is not going to be a polynomial since it needs to be 0 on the entire inside of the n-sphere.

As for the claim that $$|p^{T}p + b^{T}p + c - R|_{2}$$ is convex — this is not true in general. Draw the plot of $$|p^{2} - 1|$$ and you'll see the non-convexity.

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

79816830

Date: 2025-11-11 15:37:18
Score: 2
Natty:
Report link

This error comes if u have invalid imports at the top of ur file suppore ur importing use App\Jobs\SendSmsNotificationToUsersJob;

yet in reality it was already deleted so first sort out all your imports and remove unused

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

79816827

Date: 2025-11-11 15:35:17
Score: 1
Natty:
Report link

WebXR on Meta Quest currently supports immersive VR sessions but not immersive AR. That’s why your app remains confined to a browser window, even when sideloaded as an APK. The passthrough camera and spatial tracking required for immersive AR are not exposed to web technologies on Quest.

To build a fully immersive AR experience, you’ll need to use native tools like Unity with the Meta XR SDK. These provide access to the device’s passthrough and spatial APIs, enabling marker detection and real-world overlays. Meta’s Spatial Framework is another option, though it also requires Unity.

In short: immersive AR on Quest isn’t possible with just WebXR and PWA. Native development is currently the only viable path.

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

79816826

Date: 2025-11-11 15:35:17
Score: 1
Natty:
Report link

After some researching, I found the example https://api.flutter.dev/flutter/widgets/BuildOwner-class.html#widgets.BuildOwner.1.

With it, I am able to calculate the width that the ReorderableListView should have, as follows:

import 'package:flutter/rendering.dart';
import 'package:flutter/widgets.dart';

Size measureWidget(Widget widget) {
    final pipelineOwner = PipelineOwner();
    final rootView = pipelineOwner.rootNode = MeasurementView();
    final buildOwner = BuildOwner(focusManager: FocusManager());
    final element = RenderObjectToWidgetAdapter<RenderBox>(
        container: rootView,
        debugShortDescription: '[root]',
        child: widget,
    ).attachToRenderTree(buildOwner);
    try {
        rootView.scheduleInitialLayout();
        pipelineOwner.flushLayout();
        return rootView.size;
    } finally {
        element.update(RenderObjectToWidgetAdapter<RenderBox>(container: rootView));
        buildOwner.finalizeTree();
    }
}

class MeasurementView extends RenderBox with RenderObjectWithChildMixin<RenderBox> {
    @override
    void performLayout() {
        assert(child != null);
        child!.layout(const BoxContraints(), parentUsesSize: true);
        size = child!.size;
    }

    @override
    void debugAssertDoesMeetContraints() => true;
}
Card.outlined(
    margin: const EdgeInsets.all(8),
    child: LayoutBuilder(
        builder: (context, contraints) {
            final itemPrototypeSize = measureWidget(
                Directionality(child: listItemPrototype, textDirection: Directionality.of(context)),
            );
            return SizedBox(
                width: itemPrototypeSize.width,
                child: ReorderableListView.builder(
                    itemCount: _objects.length,
                    buildDefaultDragHandles: false,
                    prototypeItem: listItemPrototype,
                    itemBuilder: (context, index) => _buildListItem(
                        context: context,
                        key: ValueKey(index),
                        index: index,
                        objectType: _objects[index],
                    ),
                    onReorder: (oldIndex, newIndex) {
                        final insertionIndex = (oldIndex < newIndex ? newIndex - 1 : newIndex);
                        final object = _objects.removeAt(oldIndex);
                        _objects.insert(insertionIndex, object);
                        setState(() {});
                    },
                ),
            );
        },
    ),
),
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user31112632

79816824

Date: 2025-11-11 15:33:16
Score: 5
Natty:
Report link

You thought right, it's an "experiment" the company behind the site does: Opinion-based questions alpha experiment on Stack Overflow

I'm happy to help you with any questions, but the answer will be buried in the discussion, instead of up voted to the top, like you're used to from stackoverflow. So it's not as useful for future users...

Do you have a concrete recipe where it's not clear?

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • RegEx Blacklisted phrase (2.5): Do you have a
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Mo_

79816823

Date: 2025-11-11 15:31:16
Score: 3
Natty:
Report link

I try to paint the pixels on a hbitmap, and then copy the hbitmap to the hdc on WM_PAINT message but it change nothing.....

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

79816781

Date: 2025-11-11 14:56:07
Score: 0.5
Natty:
Report link

Thom
You brought up interesting points I hadn't thought about.
I don't see there will be a time when aggregating all the data is needed. Each client is treated separately. And there's no replication of data between us and the clients. I haven't seen the output that goes to the client yet, but from what I've seen so far it's text files and Excel.

I do agree archiving the data is questionable and was an after thought. The thought behind this is that the end of the contract, maybe 6mo or so, move the data to archive to hold in case they decide to come back. At the end of 2 years, it all gets dumped. The data is stale and can be rebuilt with fresh data. Technically, the data could be dumped once the contract is over. But my company did have clients return after a year or so.

Client retention is a problem. Once their system is tweaked, we're no longer needed. The way we keep the clients is by doing all the custom reporting. I don't see the clients remaining beyond 5 years. That is an interesting point what is the current client retention. As for growth, would like at least 5 new clients per month. The current process allows 2-3 per year. The limiting factor is the PM who works directly with the clients. They can do only so much in a day.

As for the DDL, as little as possible. There will be adjustments because of different ERPs the client uses and adjusting our own processes to make improvements. So far we're working with extracts from 5 different ERPs and they flow into a common table structure. When a new one comes along, adjustments have to be made.

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

79816778

Date: 2025-11-11 14:52:06
Score: 1
Natty:
Report link

If anybody comes to this, i will answer the question how it was solved.

Because iteration (#each loop) of the pages happens after the summary page in terms of lifecycle, the actual pages are put at the end.

In the actual code, i was getting an error which lead me to wrong conclusion that the each didnt render the pages. It actually did, but the wizard navigation didnt work because of the yet another form issue.

In any case, example in the REPL works fine, but still, i couldnt fix it that the order is kept (first pages coming from api, then the page manually added after them). #key directive didnt help

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

79816768

Date: 2025-11-11 14:36:03
Score: 3.5
Natty:
Report link

'NT AUTHORITY\SYSTEM' is able to impersonate 'NT Service\MSSQLSERVER'. So i suppose that this is the trick...

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

79816766

Date: 2025-11-11 14:34:02
Score: 1
Natty:
Report link

Isn't the hashCode itself suffiecient for your needs? Actually, since you want a number from 0..1, Math.abs(((float) hashCode()) / Integer.MAX_VALUE)?

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

79816765

Date: 2025-11-11 14:33:02
Score: 3.5
Natty:
Report link

See also:

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Clemens

79816762

Date: 2025-11-11 14:28:01
Score: 0.5
Natty:
Report link

I am not sure your analysis of the error is correct, there seems to be many reasons for that error code from the Credential Manager.

Regardless, when there is a size limit, the solution would be to generate a random encryption key, perhaps an AES-128 key, and encrypt the long data with it. Store the encrypted long data somewhere without that size restriction, typically the file system. Then store the encryption key instead in an appropriate way in the keyring.

To retrieve, get the key from the keyring and decrypt the long data as needed.

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

79816761

Date: 2025-11-11 14:28:01
Score: 1
Natty:
Report link

this is very specific to my case but I had installed a custom root certificate for an mitm tool I use.
deleting/regenerating that certificate from the cetmgr panel fixed the issue for me

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

79816759

Date: 2025-11-11 14:28:01
Score: 1.5
Natty:
Report link

try adding width to your Y axis

yAxis={[{ label: "Some Label", width: 80 }]}
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Witold

79816757

Date: 2025-11-11 14:26:00
Score: 2.5
Natty:
Report link

Go to Tools -> Project Settings

Step 2 - Click General then Migration

Then adjust Batch size to 20,000 or 50,000

Increase Timeout minutes to 1000 minutes

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

79816750

Date: 2025-11-11 14:15:58
Score: 1.5
Natty:
Report link

The deploy command is for local templates only.
If your CloudFormation template is already stored in S3,
use create-stack or update-stack with the --template-url option instead

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

79816749

Date: 2025-11-11 14:15:58
Score: 0.5
Natty:
Report link

ConfigureAwait(true) does functionally nothing other than explicitly stating that you are purposefully not using ConfigureAwait(false)

Source: https://devblogs.microsoft.com/dotnet/configureawait-faq/#why-would-i-want-to-use-configureawait(true)

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

79816748

Date: 2025-11-11 14:13:58
Score: 2.5
Natty:
Report link

This is the response from Acumatica support:

"To enabling the editing, please change UI in the Site Map for all graphs showing the error to the Classic (from Default)"

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

79816741

Date: 2025-11-11 14:07:57
Score: 1
Natty:
Report link

Seems like you could create one Random instance and setSeed with the hashcode as often as required.

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

79816740

Date: 2025-11-11 14:06:56
Score: 4.5
Natty:
Report link

I think you need to remove the @Configuration annotation.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Configuration
  • Single line (0.5):
  • Low reputation (1):
Posted by: ferenc

79816738

Date: 2025-11-11 14:05:55
Score: 1
Natty:
Report link

You can try:

namedLogger := logger.Named("[TEST-NAME]")

namedLogger.Infof("log message")

And you'll see:

2025-11-11T14:54:52.092+0100    info    [TEST-NAME] log message
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Florin

79816737

Date: 2025-11-11 14:05:55
Score: 2
Natty:
Report link

I often struggle with this thought. Unlike the others, the fn key does not send the signal to the operating system, but to the keyboard firmware, which then sends it to the operating system, so this cannot be simulated with pyautogui or the keyboard library with the "send("fn"+"5") command, because these cannot communicate with the keyboard, only with the operating system.

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

79816733

Date: 2025-11-11 14:01:54
Score: 0.5
Natty:
Report link

You need:

overflow:hidden;

Also in the parent and ancestor components which are flex, until the ancestor which sets the width.

https://jsfiddle.net/1pfq364b/2/

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

79816726

Date: 2025-11-11 13:56:53
Score: 0.5
Natty:
Report link

I had gulp-cli globally installed in a different node version managed by nvm. So I needed to switch to this node version (nvm use) and globally uninstall the gulp-cli version there.
You can of course also update it there, but I wanted to have it in my new node environment, so I uninstalled, switched node version, installed gulp-cli again.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: timlg07

79816707

Date: 2025-11-11 13:44:50
Score: 1.5
Natty:
Report link

Unblock your FW as in FireWall or ask a system administrative group.

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

79816704

Date: 2025-11-11 13:39:49
Score: 2
Natty:
Report link

If this error is occurring in 25R2, this is the response from Acumatica support:

"To enabling the editing, please change UI in the Site Map for all graphs showing the error to the Classic (from Default)"

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

79816699

Date: 2025-11-11 13:36:48
Score: 0.5
Natty:
Report link

A solution has been found. Not quite straight, but clean. Instead of connecting via ODBC, you need to connect via ADODB and the settings for the column header work there.

$conn = new \COM("ADODB.Connection");

$file = 'C:\123.xlsx';
$sheet = 'Sheet1';


$conn->Open("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=$file;Extended Properties=\"Excel 12.0;HDR=No;IMEX=1\"");

$query = "
SELECT
    *
FROM [{$sheet}$]
";

$rs = $conn->Execute($query);
$num_columns = $rs->Fields->Count();

for ($i=0; $i < $num_columns; $i++) {
    $fld[$i] = $rs->Fields($i)->Value();
}

var_dump($fld);
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Виктор Виктор

79816694

Date: 2025-11-11 13:31:47
Score: 0.5
Natty:
Report link

Considering the SECR Book, or perhaps ipsecr simulation, which chapter(s) would we be fruitfully reading? It is unclear if this is capture/recapture of tagged contestants or merely capture within a given season from the description above. None caught in a given area/season but can be modelled sounds like adjusting a line of code for a given parameter within that area/season. Rats are always present in the sugar cane fields suggests a floor with captures perhaps indicating better and worse areas to raise one's family.

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

79816690

Date: 2025-11-11 13:26:45
Score: 0.5
Natty:
Report link

Docker-compose and named volume permission denied suggests that, if you RUN mkdir /xxx && chown "$APP_UID" /xxx the directory in the Dockerfile, then when Docker creates the named volume, it will inherit the mount point's permissions. Does that setup work for you here too?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: David Maze

79816682

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

On the Build Settings tab under the heading Packaging, there is a setting "Info.plist File". It should show <projectname>/Info.plist, where you have to replace <projectname> with your project name.

When manually adding Info.plist, Xcode may automatically add it to Build Phases "Copy Bundle Resources".

So you need to:

Regarding the error still showing after you removed Info.plist, it may help to do Product -> Clear All Issues, then Build.

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

79816680

Date: 2025-11-11 13:18:43
Score: 5
Natty:
Report link

Thank you GuiFalourd,

This is part of a large terraform infrastructure deployment, so the state file already has a lot of resource blocks to handle. So, for this isolated scheduled apply and destruction, in this case of an Azure Bastion Host, is there another method that won't cause state file issues?

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Coco

79816676

Date: 2025-11-11 13:13:41
Score: 1.5
Natty:
Report link

from PIL import Image, ImageOps

# Load your cake image

img = Image.open("IMG_8181.jpeg")

# Create a white A4 background (A4 at 300 DPI: 2480 x 3508 pixels)

a4_bg = Image.new("RGB", (2480, 3508), "white")

# Resize the cake image to fit nicely on the A4

img.thumbnail((2000, 2000))

# Paste the image roughly in the center

img_w, img_h = img.size

a4_bg.paste(img, ((2480 - img_w)//2, 100))

# Save the final A4 sheet

a4_bg.save("saja_boys_A4_sheet.png")

print("A4 sheet created successfully!")

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

79816673

Date: 2025-11-11 13:10:41
Score: 2.5
Natty:
Report link

Thanks a lot for your post !
I had the same problem and couldn't understand ... As you, I commented the line "After" and it works ...
Why ? By now, I don't know ... multi-user.target means that the systemd-service will start when the system reach runlevel 2 ... I don't know why this line is here ...

After=network.agent should make sense , but I don't even need to put it
Multi-user .. I don't understand why it should be necessary ???

Anyay, it works ... 😊

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): ???
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user31857906

79816671

Date: 2025-11-11 13:08:40
Score: 1.5
Natty:
Report link
<!doctype html>
<meta charset="utf-8">
<title>Alerta</title>
<style>
  body{background:#000;color:#f00;font-family:monospace;text-align:center;margin-top:10%}
  h1{font-size:3em;animation:blink 1s infinite}
  @keyframes blink{50%{opacity:0}}
  button{background:#f00;color:#fff;border:0;padding:12px;cursor:pointer}
</style>
<h1>⚠️ ¡VIRUS DETECTADO! ⚠️</h1>
<p>Tu sistema ha sido comprometido. Eliminando archivos en 3... 2... 1...</p>
<button onclick="alert('😅 Tranquilo, es solo una broma. No hay ningún virus.');document.body.style.backgroundColor='#0a0';document.body.innerHTML='<h1>✅ Todo está bien 😎</h1><p>Era solo un simulador de virus falso.</p>'">Detener virus</button>
<script>
  setInterval(()=>{document.title='⚠️ VIRUS DETECTADO ⚠️ '+Math.random().toString(36).slice(2,7)},300)
</script>
Reasons:
  • Blacklisted phrase (1): está
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31857968

79816668

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

just add width to your Y axis (for X axis one may add height)

yAxis={[{ label: "Lorem Ipsum", width: 80 }]}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Witold

79816661

Date: 2025-11-11 13:00:37
Score: 1
Natty:
Report link

You should likely implement a null object pattern.

so "static string[]" and not "static string[]?"

If you need a collection that can expand, then use List<string>

But most important, if something can be null at an interface to any external interface, wrap the handling logic in a nullObject pattern, and then let the program "do nothing" rather than send "nullable" values around. Likely the best option you have.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Morten Bork

79816659

Date: 2025-11-11 12:59:37
Score: 3.5
Natty:
Report link

I wanted to know how to get table data from data verse to databricks

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

79816658

Date: 2025-11-11 12:59:37
Score: 3
Natty:
Report link

Apparently this is a recent issue with the newest SDK version, reverting to 2.41.1 fixes it.

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

79816656

Date: 2025-11-11 12:55:36
Score: 0.5
Natty:
Report link

If you want ListView to act like Column if scrolling is not needed, meaning drag gestures are not occupied unnecessarily:

ListView(
  physics: const ScrollPhysics(),
),

This works (or it does not work by default), because the default scroll physics is AlwaysScrollableScrollPhysics for the primary and vertical ScrollViews.

This is the condition in the Flutter source code:

physics =
    physics ??
    ((primary ?? false) ||
            (primary == null &&
                controller == null &&
                identical(scrollDirection, Axis.vertical))
        ? const AlwaysScrollableScrollPhysics()
        : null);

https://github.com/flutter/flutter/blob/2981516d74bc2b3307a7386e7be906602b65cf22/packages/flutter/lib/src/widgets/scroll_view.dart#L135-L142

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

79816654

Date: 2025-11-11 12:53:35
Score: 7.5 🚩
Natty: 4
Report link

I've maybe a follow up question. Currently, the default OpenMP version in GCC 15.2.0 is still 201511 ... i.e. 4.5. Is there a way to change that?
LLVM allows for the flag -fopenm-version=60 for switching to OpenMP version 6.0. Despite ChatGPT's claim, gcc does not accept this command-line option.

Do you know how this can be accomplished in GCC? Does one have to change something in the sources and rebuild GCC? I've tried setting _OPENMP to 202111 e.g. in different places, and rebuild GCC. But without success, yet.

Any idea is very welcome.

Cheers, Martin

Reasons:
  • Blacklisted phrase (1): Cheers
  • Blacklisted phrase (1): Is there a way
  • RegEx Blacklisted phrase (2.5): Do you know how
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Martin

79816653

Date: 2025-11-11 12:52:34
Score: 2.5
Natty:
Report link

You're reading freed memory, so the behavior is undefined and you can't rely on the contents at all. Also, glibc has a known bug with M_PERTURB causing an off-by-sizeof(size_t) overwrite, so the expected pattern won't fully appear.

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

79816651

Date: 2025-11-11 12:51:34
Score: 2.5
Natty:
Report link

You need to issue a certificate that includes

subjectAltName=DNS:localhost (or your domain)

Modern browsers ignore CN and look in

subjectAltName

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

79816648

Date: 2025-11-11 12:46:32
Score: 4.5
Natty: 4.5
Report link

This cookie-button stuff is annoying, I developed a generalized popup-closer. have a look at the closepopup-routines

https://github.com/dornech/utils-seleniumxp/blob/main/src/utils_seleniumxp/webdriver_addon.py

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

79816643

Date: 2025-11-11 12:43:27
Score: 6 🚩
Natty:
Report link

is there a way to let multiple boards feed into a bigger one? For example the screenshot of Fabio where there is a "dev boards" and a "produto boards" that you can combine in a bigger board? Where tasks or epics from dev and produto are shown in the same board?

Reasons:
  • Blacklisted phrase (1): is there a way
  • Low length (0.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: Yuri de Ridder

79816637

Date: 2025-11-11 12:37:25
Score: 1
Natty:
Report link

Apparently, Apple changed the API in favour of a new isEnabled parameter: tabViewBottomAccessory(isEnabled:content:).
In contrast to the documentation I couldn't find the new overload in iOS 26.1 SDK, but it seems to be available from iOS 26.2 Beta.

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