79598989

Date: 2025-04-29 18:34:23
Score: 2
Natty:
Report link
<?php
exec('taskkill /f /im node.exe');
?>
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user2419119

79598984

Date: 2025-04-29 18:30:22
Score: 4
Natty: 4.5
Report link

Try https://dlldump.com/download-dll-files_new.php/dllfiles/G/GDIPLUS.DLL/5.1.3097.0/download.html

This worked fine for me, i have win2k in Oracle VirtualBox :-)

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

79598982

Date: 2025-04-29 18:29:21
Score: 1.5
Natty:
Report link
 minWidth: MediaQuery.of(context).size.width * 0.5,
 maxWidth: MediaQuery.of(context).size.width * 0.7,
//use minwidth looks great for the text of short messages 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Aditya Verma

79598981

Date: 2025-04-29 18:29:21
Score: 3
Natty:
Report link

We made a chome extension for easy visualisation of FIX messages in your browser. Have a look here. FIX Message Toolkit

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

79598978

Date: 2025-04-29 18:28:21
Score: 1
Natty:
Report link

I think you’re right — radio buttons feel more appropriate, since the user is choosing one option from a set. Tabs are for navigating between views or sections, not for making a selection.

For the dynamic content, you can still show or hide it based on which radio is selected. Just update the visible content with JavaScript and if accessibility is a concern, consider using aria-live="polite" so screen readers announce the change.

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

79598977

Date: 2025-04-29 18:28:21
Score: 0.5
Natty:
Report link

While the other answers here are correct, I just wanted to add that you can define thenot(X) function like so:

not(X) :- \+ X.

Then you can evaluate things like not(true) or not(1 = 2) or not(male(X)) just like you wanted to do in your original question.

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

79598971

Date: 2025-04-29 18:24:20
Score: 1
Natty:
Report link

The problem in your code is that you're not returning the result from your function. In Python, a function that doesn't explicitly return a value will return None by default.

def add_numbers(a, b):
    result = a + b
    return result  # Add this

print(add_numbers(3, 5))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abdellah Abnoune

79598970

Date: 2025-04-29 18:24:20
Score: 1
Natty:
Report link

This code works thansk to ESRI developer helping solve it.

var rows = $ ("#roomUseTable").jqxGrid ("getrows");

    for (var i = 0; i < rows.length; i++) {
        // if value of field 'OBJECTID' is in roomsAssignedData array
        if (roomsAssignedData.includes (rows[i].OBJECTID)) {
            // add row to selection
            $ ('#roomUseTable').jqxGrid ('selectrow', i);
        }
    }
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: MrKirkwood

79598966

Date: 2025-04-29 18:21:19
Score: 1.5
Natty:
Report link

you need to do return:

def add_numbers(a, b):
    return a + b

print(add_numbers(3, 5))
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tinyfold

79598957

Date: 2025-04-29 18:10:17
Score: 1.5
Natty:
Report link

It can be done utilizing an SVG, as shown in this answer: How to make spiral text in html using css or javascript

or you can play with the concept in this pen: https://codepen.io/geoffgraham/pen/NgwWBj

<svg viewBox="0 0 500 500">
<path id="curve" d="M73.2,148.6c4-6.1,65.5-96.8,178.6-95.6c111.3,1.2,170.8,90.3,175.1,97" />
<text width="500">
  <textPath xlink:href="#curve">
    Dangerous Curves Ahead
  </textPath>
</text>
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Squishy

79598955

Date: 2025-04-29 18:10:17
Score: 0.5
Natty:
Report link

I am doing a binomial not neg binomial but I would think this section from the documentation can help. I have site and individuals and ended up trying to nest but it looks like it gives the same effect as doing (1 |site) + (1|AnimalID).

"specify a model for the random effects, in the notation that is common

to the nlme and lme4 packages. Random effects are specified as x|g,

where x is an effect and g is a grouping factor (which must be a factor

variable, or a nesting of/interaction among factor variables). For example,

the formula would be 1|block for a random-intercept model or

time|block for a model with random variation in slopes through time

across groups specified by block. A model of nested random effects

(block within site) could be 1|site/block if block labels are reused

across multiple sites, or (1|site)+ (1|block) if the nesting structure

is explicit in the data and each level of block only occurs within one

site. A model of crossed random effects (block and year) would be

(1|block)+(1|year)."

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

79598953

Date: 2025-04-29 18:09:16
Score: 0.5
Natty:
Report link

I had a similar issue where the MaterialToolbar title and navigation/menu icons appeared misaligned or not centered properly. After some investigation, I found that the problem was caused by the app theme.

If you're using:

<style name="Base.Theme.YourApp" parent="Theme.Material3.DayNight.NoActionBar" />

You might experience layout inconsistencies with MaterialToolbar, since Material3 (Material You) components aren't fully compatible with some of the older MaterialComponents views like MaterialToolbar.

Change your app theme to use MaterialComponents instead of Material3:

<style name="Base.Theme.YourApp" parent="Theme.MaterialComponents.DayNight.NoActionBar" />

After switching to MaterialComponents, the toolbar title and icons were properly aligned.

override fun onCreate(savedInstanceState: Bundle?) {
    enableEdgeToEdge()
    super.onCreate(savedInstanceState)

    [...]

    ViewCompat.setOnApplyWindowInsetsListener(binding.topAppBar) { view, windowInsets ->
        val insets = windowInsets.getInsets(WindowInsetsCompat.Type.systemBars())
        view.updatePadding(
            top = insets.top,
            left = insets.left,
            right = insets.right
        )
        WindowInsetsCompat.CONSUMED
    }

    setSupportActionBar(binding.topAppBar)
    // other setup code...
}

Hope this helps someone facing the same issue!

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (0.5):
Posted by: Alessandro Krasota

79598951

Date: 2025-04-29 18:07:15
Score: 2
Natty:
Report link

In Power Automate, do the following:

  1. Go to My Flows

  2. Create a new automated cloud flow

  3. Search for Power BI triggers -> Select When a data driven alert is triggered

As for updating the excel file, I would need more information. What is the data source of your report?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
Posted by: iBeMeltin

79598948

Date: 2025-04-29 18:06:15
Score: 3.5
Natty:
Report link

follow up question - where do you see this trigger in the UI? or is it just available via SQL query

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

79598947

Date: 2025-04-29 18:06:15
Score: 4
Natty: 4
Report link

It's a group box in WinForms or frame control in ActiveX. See Group Boxes in the Win32 UX Guide or GroupBox in System.Windows.Forms.

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

79598933

Date: 2025-04-29 17:55:12
Score: 1
Natty:
Report link

As @errordeveloper answered in a comment, I found very helpful the tutorial documentation here Configure C++ Toolchains. The point is that cross compilation in Bazel works at several levels, iiuc to let developers maximum flexibility.

  1. Platforms describe the execution architecture of "something". That could intentionally mean different things, like the host, execution, and target machine. It is mainly a collection of constraints.

  2. Toolchains describe the set of programs to use to perform the build actions, and they are coupled with the platforms, meaning that some toolchains can be used for certain platforms. For instance, you can tell Bazel to use the toolchain X for all ARM targets, independently from the specific ARM version.

In Bazel's cc_* rules, the toolchains are generally not downloaded automatically for every target, except some few cases, like iiuc the host machine one. While specifying new platforms is generally easy, specifying new toolchains requires touching multiple files, but it's not terrible. Usually you have to specify the toolchain in a BUILD file, coupled with a .bzl one to provide the implementation, and register the toolchain in the MODULE file. Follow the linked documentation, and if you want this blog post covers basically the same.

Reasons:
  • Blacklisted phrase (1): this blog
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @errordeveloper
  • Low reputation (0.5):
Posted by: Alessandro Bertulli

79598921

Date: 2025-04-29 17:47:10
Score: 2
Natty:
Report link

For anyone finding this, the solution turned out to be relocating the commons-text and commons-lang3 dependencies in the geomesa-hbase-distributed-runtime shaded jar, i.e. here.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Emilio Lahr-Vivaz

79598918

Date: 2025-04-29 17:44:09
Score: 3.5
Natty:
Report link

check if mongoose is installed properly and run again

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

79598906

Date: 2025-04-29 17:37:07
Score: 2.5
Natty:
Report link

One line of vertical-align: middle;

Solved the problem of inconsistent spacing between the top and bottom of textarea

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

79598903

Date: 2025-04-29 17:35:07
Score: 1.5
Natty:
Report link

Update your database URI in the Flask configuration to include the correct password.

If the root user does not have a password (not recommended for production), make sure your Mysql is set to allow root connections without a password. You can still write the URI as you did, but this practice is discouraged.

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

79598895

Date: 2025-04-29 17:28:05
Score: 2.5
Natty:
Report link

If you have an old Mac, just copy /System/Library/Fonts/Times.ttc /System/Library/Fonts/TimesLTMM into your $HOME/Library/Fonts/ .

I my case, High-Sierra, Catalina --(rsync or scp -p)---> Sequoia will successfully enable the font available.

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

79598892

Date: 2025-04-29 17:26:04
Score: 4
Natty:
Report link

you should use position: static

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

79598879

Date: 2025-04-29 17:20:03
Score: 1
Natty:
Report link

I have used tinyfiledialogs in my OpenCalphad software for 10 years and it has worked well

with gfortran on my Windows DELL. Usually I have to buy a new DELL every 3 years but the

most recent one got exhausted after a year and developed a crack on the keyboard so I am now

trying to adopt tinyfiledialogs to work on my new Mac. My knowledge of C is zero but

with some patience trial and errors usually works.

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

79598878

Date: 2025-04-29 17:20:03
Score: 0.5
Natty:
Report link

I stumbled across a couple of posts FAILED_PRECONDITION - Gmail API which provided an answer that worked for my case:

This line from the google code sample:

credentials = ServiceAccountCredentials.fromStream(stream).createScoped(GmailScopes.GMAIL_SEND);

needs to change to this:

ServiceAccountCredentials.fromStream(stream).createScoped(GmailScopes.GMAIL_SEND).createDelegated(workspaceEmailAddress);

The .createDelegate(workspaceEmailAddress) apparently ensures that the impersonation is happening at the right place.

Also for a bonus, to send an HTML formatted email, we need to change this line from the google sample code:

email.setText(htmlBodyText);

to this:

email.setContent(htmlBodyText, "text/html");
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: jn4

79598875

Date: 2025-04-29 17:17:02
Score: 1.5
Natty:
Report link

You can't.

This is not supported functionality https://github.com/spring-projects/spring-framework/issues/34834#issuecomment-2839387755

You can use 'redirect' but you cannot 'forward'

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

79598873

Date: 2025-04-29 17:17:02
Score: 3.5
Natty:
Report link

I am facing the same issue with v19. I was using v19.2.1 I never experienced this issue. But when I updated my global cli to v19.2.9 I created a new application using ng new I started experiencing this error message on every component that I can only use imports on a component unless it's standalone. I had to explicitly declare standalone:true in order to silent this error. Which does not make sense to me. It seems like an accidental bug from the Angular team

Reasons:
  • Has code block (-0.5):
  • Me too answer (2.5): I am facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Arekhandia Harry

79598870

Date: 2025-04-29 17:14:01
Score: 2.5
Natty:
Report link

IF using Wordpress why custom coding? But I am also confusd about it.

I want to develop a website for Clash of Clans players. From where players can Copy the new and best COC Bases with links. I need to know about which plateform should be best. Custom coding or Wordpress.
Actually, there are different levels of the Townhalls and Builderhalls in the game and players can copy the design according to their level. So we have to create categorized. If player has Clash of Clans Level 9 Townhall then players can Copy COC TH9 Bases with links for their Townhall level 9 Base. If player has Level 10 of Townhall then players can Copy the Best TH10 Bases with links for their Townhall level 10 Base.
These are the main functionalities that should be focused. Clash of Clans is famous game of Supercell.
There are many levels like TH11 Base Layouts, TH16 Base layouts and many others.

I tried different approaches. I have created website using Wordpress and it is easy to manage. But from the last two months I tried to design website by custom coding. I used HTML, CSS, Bootstrap5 and Javascript for the Front end. I used PHP and Mysqli for backend. I used Chatgpt to write the code. But I faced many issues in coding because website is complex.

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Michaelj

79598866

Date: 2025-04-29 17:11:01
Score: 2
Natty:
Report link

maybe utilize puts something like

int puts(const char *);
puts(msg);
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Isaac

79598859

Date: 2025-04-29 17:01:58
Score: 0.5
Natty:
Report link

You must use the same account to access the user interface as the account you used to create the access token.

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

79598857

Date: 2025-04-29 17:00:58
Score: 1.5
Natty:
Report link

The problem was the fill = as.character(type). Once I replaced it with just fill = type, it worked properly.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: melbez

79598855

Date: 2025-04-29 16:55:57
Score: 5
Natty: 5.5
Report link

To color a region in an image in Python, what is more efficient: looping pixel by pixel or using numpy functions with masks and the like?

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

79598852

Date: 2025-04-29 16:55:57
Score: 5
Natty:
Report link

Isn't there just something we can install to get the JavaDocs to work?
Instead of all these machinations to try to bypass it?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Isn't there
  • Low reputation (1):
Posted by: Carl Ponder

79598849

Date: 2025-04-29 16:53:56
Score: 3
Natty:
Report link

V3 is different to V2.

I think you got the answers and for extra I can share you the buy code for uniswapv2, v3, pancakeswapv2,v3 and solana buying script.

https://github.com/GritBillionare0408/Multichain_Buy_Script

Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: JordanGrit0408

79598846

Date: 2025-04-29 16:50:55
Score: 1
Natty:
Report link

To curb the issue i set a delay like this and seemed like a better solution than what was left by DuckDuckGo on their browser:

 override fun onResume() {
        super.onResume()

        loadingBar.visibility = View.VISIBLE
        loadingLogo.visibility = View.VISIBLE

        loadingContainer.visibility = View.VISIBLE
        webView.visibility = View.INVISIBLE

        // You can also start a fade-in or animation if desired

        // Optional delay (1 second) before hiding logo and showing WebView
        Handler(Looper.getMainLooper()).postDelayed({
            loadingContainer.visibility = View.GONE
            loadingBar.visibility = View.INVISIBLE
            loadingLogo.visibility = View.INVISIBLE
            webView.visibility = View.VISIBLE
        }, 1000)

        webView.onResume()

        Log.d("MainActivity", "onResume: Showing loading logo")
    }

it shows forcedly the image of the logo itself and waits 1000ms to make webview visible, instead of flickering it's an option, BUT couldn't find the solution they did: chrome and brave. Chrome and Brave basicly doesn't make the app pause or die as minimized, and i don't know if it's a work on chromium engine itself or what

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

79598824

Date: 2025-04-29 16:35:52
Score: 1
Natty:
Report link

To duplicate an array of data with formulas in a new position in the same sheet, you can use a duplicated sheet as an intermediate. That is, copy the sheet, then move the data in the duplicated sheet, then copy it from the duplicated sheet into the original sheet. You now have the array in two places on the original sheet, and you can delete the duplicate sheet.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: James Jaynes

79598813

Date: 2025-04-29 16:23:48
Score: 6 🚩
Natty: 4
Report link

I spent tireless hours, but came upon this package: https://pub.dev/packages/docman please give it a try!! it's incredible

Reasons:
  • RegEx Blacklisted phrase (2.5): please give
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: kibugenza young king king

79598809

Date: 2025-04-29 16:21:47
Score: 1
Natty:
Report link

today is 2025, 11 years past, google map v3 still not fix this problem !!!! What happen on google map team ?????

Microsoft Azure map fix this problem already in 2025. I can display at least 20k marker without any issue, you can try 100k marker, should be ok.

Google map use marker cluster, which is terrible idea !!!! My user, client complaining this horrible marker cluster.

Reasons:
  • Blacklisted phrase (1): ???
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: hoogw

79598807

Date: 2025-04-29 16:20:47
Score: 1.5
Natty:
Report link

For full disclosure I work as a product manager for Redgate and we have recently release PostgreSQL Compare and MySQL Compare to allow you to compare two databases.

We intend to have a Community edition of both tools so they will be free to use for for students, educators, small businesses and non-commercial open-source projects.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Adam Britt -Flyway PM

79598801

Date: 2025-04-29 16:17:46
Score: 1
Natty:
Report link

today is 2025, 11 years past, google map v3 still not fix this problem !!!! What happen on google map team ?????

Microsoft Azure map fix this problem already in 2025. I can display at least 20k marker without any issue, you can try 100k marker, should be ok.

Google map use marker cluster, which is terrible idea !!!! My user, client complaining this horrible marker cluster.

Reasons:
  • Blacklisted phrase (1): ???
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: hoogw

79598799

Date: 2025-04-29 16:17:46
Score: 2
Natty:
Report link

I had a gap between

``` {r}

and it should of been

```{r}
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: r3vdev

79598796

Date: 2025-04-29 16:14:45
Score: 1.5
Natty:
Report link

In my case, it was because of the fonts used in the template. Try changing your fonts to more widely recognized ones, such as:

Arial

Arial Black

Verdana

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

79598792

Date: 2025-04-29 16:12:44
Score: 1
Natty:
Report link

It seems like even if you leave out concurrency, when handling large files, SFTP doesn't perform as good as FTPS, but the client you use makes a huge difference, even in same region transfers. We've run an extensive test comparing upload, download, different file sizes and counts, clients and network setups - you can check out our full report here.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
Posted by: SNeumann

79598791

Date: 2025-04-29 16:11:44
Score: 1
Natty:
Report link

You can get the metadata in the structured format.

export async function getMeta(conn: Connection, token: string) {
  try {
    const metaplex = Metaplex.make(conn);
    const mintAddress = new PublicKey(token);
    const metadataAccount = metaplex.nfts().pdas().metadata({ mint: mintAddress });

    const metadataAccountInfo = await conn.getAccountInfo(metadataAccount);

    if (metadataAccountInfo) {
      const meta = await metaplex.nfts().findByMint({ mintAddress: mintAddress });
      return new TokenMeta({
        address: meta.metadataAddress.toBase58(),
        mintAddress: token,
        mint: meta.mint,
        updateAuthorityAddress: meta.updateAuthorityAddress.toBase58(),
        json: meta.json ? JSON.stringify(meta.json) : "",
        jsonLoaded: meta.jsonLoaded,
        name: meta.name,
        symbol: meta.symbol,
        uri: meta.uri,
        isMutable: meta.isMutable,
        primarySaleHappened: meta.primarySaleHappened,
        sellerFeeBasisPoints: meta.sellerFeeBasisPoints,
        editionNonce: meta.editionNonce,
        creators: meta.creators,
        tokenStandard: meta.tokenStandard,
        collection: meta.collection,
        collectionDetails: meta.collectionDetails,
        uses: meta.uses,
        compression: meta.compression,
      });
    }
  } catch (err) {
    G.log("❗ get meta failed", err);
  }
  return null;
}

I hope you to please remember that getting the metadata with metaplex takes some delays.
So while managing the result of the metadata you would rather to set some delays or retry when it returned the value of undefined or null.

I can provide more code if you want because I have built the pump.fun trading bot on Solana.

Thank you.
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (1): I hope you to please
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: JordanGrit0408

79598789

Date: 2025-04-29 16:09:43
Score: 6 🚩
Natty: 5.5
Report link

Which paletform is good Wordpress or coding?

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

79598780

Date: 2025-04-29 16:06:42
Score: 2.5
Natty:
Report link

Set cell A1 to 1.

Set remaining cells in column A to:

=IF(C1=C2,A1+1,1)

That's it!

enter image description here

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

79598757

Date: 2025-04-29 15:52:39
Score: 3.5
Natty:
Report link

I assume you want some horizontal space between the image & scrollbar. Try wrapping the image with another container and give it a height and top/bottom padding.

enter image description here

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

79598747

Date: 2025-04-29 15:44:37
Score: 2
Natty:
Report link

Good idea from Daren Thomas
Performance: it repeats the calculation every time it is called in a loop, it would be better to

english_stopwords = set(stopwords.words('english')) # Convert to collections for faster lookups

filtered_words = [word for word in word_list if word not in english_stopwords]

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

79598736

Date: 2025-04-29 15:38:35
Score: 3
Natty:
Report link

In my case, my system was running Java 21 and the project required Java 8. Changing the Java version of the project resolved it for me:

Here is how to change it:

enter image description here

enter image description here

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

79598734

Date: 2025-04-29 15:38:35
Score: 1.5
Natty:
Report link

I had the same problem. I managed to make it work by explicitly setting the Content-Length header with the proper value and the Content-Type header to empty.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Junior

79598730

Date: 2025-04-29 15:34:33
Score: 5
Natty:
Report link

Thanks all.... No response is required

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

79598725

Date: 2025-04-29 15:31:33
Score: 2.5
Natty:
Report link

​This issue has been resolved in Scalar.AspNetCore v2.1.0. You can now register multiple OpenAPI documents and display them in a single Scalar UI using the AddDocuments method.

Please check this PR for further information.

Reasons:
  • Blacklisted phrase (1): Please check this
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Achyut Manvar

79598724

Date: 2025-04-29 15:30:32
Score: 1
Natty:
Report link

Try turning off anti-aliasing or other such settings. Usually these things make pixel art look smooth and bad, so turn it off. Go to game options -> "your platform" -> Graphics -> turn off interpolate between pixels -> apply.

I hope this helped!

Reasons:
  • Whitelisted phrase (-1): hope this help
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: mr-xie

79598711

Date: 2025-04-29 15:22:30
Score: 4
Natty: 4
Report link

El propietario de una agencia de viajes desea determinar la proporción de clientes que utilizan tarjeta de crédito o débito para pagar los viajes. Entrevistó a 70 clientes y descubre que 25 pagaron con tarjeta de crédito. (Usar spss).

Construya un intervalo de confianza de 92% para la proporción poblacional de los clientes que pagaron. Los valores de los intrevalos son?

Pregunta 3Respuesta

a. 25. 7%--------46.8% se encuentra el parámetro poblacional de la media de las personas que usan tarjeta de crédito

b. 16. 2%--------42.5% se encuentra el parámetro poblacional de la proporción de las personas que usan tarjeta de crédito

c. 50.4%-----86.3% se encuentra el parámetro poblacional de la media de las personas que usan tarjeta de crédito

d. 25.7%-------46.8% se encuentra el parámetro poblacional de la proporción de las personas que usan tarjeta de crédito como hago para realizar el spss

Reasons:
  • Blacklisted phrase (2): Pregunta
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Filler text (0.5): --------
  • Filler text (0): --------
  • Low reputation (1):
Posted by: jeka gp

79598705

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

It was a bug. I solved it by updating my CLion IDE, using the newest compiler versions and installing mingw-w64-ucrt-x86_64-gdal-3.10.2-2.

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Cornelia

79598703

Date: 2025-04-29 15:19:29
Score: 1
Natty:
Report link

It turns out that you have to pass in a string into globals that is JSON serialisable.
For example:

globals: JSON.stringify({ __TEST_SALT__: salt, OTHER: 'THIS IS ANOTHER Variable' })
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: sudo install

79598702

Date: 2025-04-29 15:18:28
Score: 4.5
Natty:
Report link

I also have an igbo highlife mp3 blog, https://dailyhighlife.ng/ and i will like to learn this as well.

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

79598689

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

To add on what swimmer said:

There is a subtle difference between using on_failure_callback on DAG level and on task level. On task level it appears that the worker is handling the method execution, while on DAG level it seems the scheduler is handling the method execution.

I mention this, because we had a docker setup, where we accidentally only defined the AIRFLOW__WEBSERVER__BASE_URL for the webserver and worker but not for the scheduler.

As a result, when we accessed task_instance.log_url inside the DAG-level failure callback, the hostname defaulted to localhost — since the scheduler didn’t have the proper base URL configured.

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

79598687

Date: 2025-04-29 15:09:26
Score: 0.5
Natty:
Report link

The pivot table component seems to provide some filter options. Depending on the use case, it might be an alternative to the DataTable:

https://dash.gallery/dash-pivottable/

enter image description here

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

79598679

Date: 2025-04-29 15:01:25
Score: 1.5
Natty:
Report link

Install/Update Root Certificates: Python installations on macOS often come with a script to install the certifi bundle of root certificates, which Python needs.

Navigate to your Python x.y installation directory in Finder. It's often under /Applications/Python x.y/ (or similar).

Look for a file named Install Certificates.command.

Double-click this file to run it. It will install or update the necessary certificates.

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

79598673

Date: 2025-04-29 14:58:24
Score: 2.5
Natty:
Report link

Use a RigidBody3D node instead and use apply_impulse().

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

79598669

Date: 2025-04-29 14:57:23
Score: 2.5
Natty:
Report link

Estou passando por uma situação parecida, após fechar o app pagamento, ao voltar para minha aplicação ela reinicia. Nem chega na parte de receber o retorno.

Isso ocorre as vezes.

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

79598663

Date: 2025-04-29 14:53:22
Score: 2
Natty:
Report link

You're missing an entity. You have an entity for the product, but not for each item. You can have the product "Mischau Grobe Mettwurst Pommersche Art" but you need to store the batches you get. You need an Inventory entity with relationship with the product, where you know how many items of that product you have, and when they expire. And you can have multiple batches of the same product with different expiration dates.

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

79598662

Date: 2025-04-29 14:52:22
Score: 2
Natty:
Report link

¡Sí, hay otra forma de hacerlo! Si deseas incluir el proyecto de importación solo en el modo de lanzamiento, puedes usar la propiedad Condition dentro del archivo de proyecto (.csproj), pero asegurándote de que esté correctamente estructurada.

Aquí hay una manera de hacerlo usando la propiedad Configuration:

<ItemGroup Condition="'$(Configuration)' == 'Release'">
    <ProjectReference Include="TuProyecto.csproj" />
</ItemGroup>

Este código asegura que la referencia al proyecto de importación solo se incluya cuando la configuración sea Release

Reasons:
  • Blacklisted phrase (2): código
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Genesis Vera

79598656

Date: 2025-04-29 14:50:21
Score: 3.5
Natty:
Report link

in case of intellij you have to create resource folder under main directory and create "hibernate.cfg.xml" file

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

79598654

Date: 2025-04-29 14:49:21
Score: 0.5
Natty:
Report link

Here is my working example, with its help I think it will be possible to adapt

import { test, expect } from '@playwright/test';
import * as fs from 'fs';

test('Drag and drop file into drop-zone', async ({ page, browserName }) => {
  test.skip(browserName === 'webkit', 'It does not work in WebKit');

  await page.goto('/app');

  const buffer = fs.readFileSync('tests/fixtures/example_file.jpg');

  // Prepare the DataTransfer with a file
  const dataTransfer = await page.evaluateHandle(async (data) => {
    const dt = new DataTransfer();
    const byteArray = Uint8Array.from(atob(data), char => char.charCodeAt(0));
    const file = new File([byteArray], 'example_file.jpg', { type: 'image/jpeg' });
    dt.items.add(file);
    return dt;
  }, buffer.toString('base64'));

  // Dispatch drop event to the drop zone
  await page.dispatchEvent('#drop-zone', 'drop', { dataTransfer });

  // Add your assertions here
});

This link was very helpful in solving this issue.

Reasons:
  • Blacklisted phrase (1): This link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Yaroslav Khabarov

79598648

Date: 2025-04-29 14:47:20
Score: 3
Natty:
Report link

Deleting the migrations folder and the YourDbContextSnapshot.cs files and rebuilding the project would solve your problem.

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

79598644

Date: 2025-04-29 14:46:20
Score: 2.5
Natty:
Report link
 String cpclData = "! 0 200 200 210 1\r\n"
+ "COUNTRY LATIN9 "
+ "TEXT 4 3 5 135 "+"\u00A4" + textFromTextView3 + "\r\n"

if its any help this is how i got euro sign to work for myself in java by loading the latin9 language and using "\u00A4" as the euro sign
Reasons:
  • Blacklisted phrase (1): any help
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: justaguest

79598628

Date: 2025-04-29 14:38:18
Score: 6.5 🚩
Natty:
Report link

Can you also share images after thresholding? I don't have enough reputation to comment, this is why I am using answering part :/

Reasons:
  • Blacklisted phrase (1): to comment
  • RegEx Blacklisted phrase (1.5): I don't have enough reputation to comment
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you also share
  • Low reputation (1):
Posted by: Alperen Ölçer

79598624

Date: 2025-04-29 14:35:17
Score: 4.5
Natty: 4
Report link

46’34 $8$ 5(8# 46’34 $8$ 5(8# /49

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

79598618

Date: 2025-04-29 14:32:16
Score: 1
Natty:
Report link

First of all, you need to select the keycloak realm.
On the left menu, click on the user tab and click on the Add User button
Create your new user with the form that appears, validate by clicking Create.
Once you're done, click on that freshly created user and in the Role mapping tab, click Assign role.
On the top left dropdown of the popup that opens, select Filter by realm roles, and assign the admin/role_admin to the user.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: n3wbie

79598614

Date: 2025-04-29 14:32:16
Score: 1
Natty:
Report link

Make a copy of the grouping column and group by that column. The duplicate column disappears in the group by. Perhaps not pretty, but effective.

df['col1_for_groupby'] = df['col1']
df = df.groupby(["col1_for_groupby"], as_index=False).fillna(method="ffill")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: hickemack

79598595

Date: 2025-04-29 14:23:14
Score: 3
Natty:
Report link

The subPath needs to be the same as the file. Also I used secrets rather than a configMap.

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

79598583

Date: 2025-04-29 14:18:13
Score: 0.5
Natty:
Report link

Your question is primarily around performance, and so I will focus on some performance comparisons between Flatbuffers and various JSON implementations for Python.

First, I should note that if you want to benefit from the performance of Flatbuffers, you have to use them in the intended way. What do I mean by this?

On to some performance comparisons.

Candidate Data

For this performance assessment I chose to use some data which I am already working with. Unfortunately you cannot have a copy of this data, but I am sure you can generate some random data with suitable properties to validate these results, if you wish to do so.

The data I am using is a financial timeseries data, which contains 3 arrays. "bid", "ask" and "timestamp". "bid" and "ask" are floating point values (64 bits wide) and the "timestamp" is effectively a 64 bit integer.

JSON Object Table vs JSON Array Table

Note that there are two formats for JSON serialization in the context of tabular data. Object Table and Array Table.

This is an example of an Object Table.

"{\"col1\":[1,2,3],\"col2\":[1.0,2.0,3.0],\"col3\":[\"1\",\"2\",\"3\"]}"

This is an example of an Array Table.

"[{\"col1\":1,\"col2\":1.0,\"col3\":\"1\"},{\"col1\":2,\"col2\":2.0,\"col3\":\"2\"},{\"col1\":3,\"col2\":3.0,\"col3\":\"3\"}]"

Both are representations of the same table of data.

pandas.DataFrame(
    {
        "col1": [1, 2, 3],
        "col2": [1.0, 2.0, 3.0],
        "col3": ["1", "2", "3"]
    }
)

Object Table is likely (almost certain) to be faster, because it serializes in a more compact representation.

I raise this before continuing because it is useful to know and relevant to this particular example, because I show an example based around tabular data.

JSON Performance

There are a truck load of JSON packages on Pypi.

I am familiar with:

Therefore, I will present results for each of these. I use the standard library json package as the baseline case to compare against. I compare the performance of read and write operations seperatly.

Each value in the table is the scaling factor to compare with the baseline case. In other words, the value 1.39 for orjson read means that orjson was 1.39x faster than json for read performance.

json jsons orjson
read 1 0.02 1.39
write 1 0.63 2.79

Flatbuffer Performance

Here are all the results for comparison.

json jsons orjson flatbuf
read 1 0.02 1.39 45.8x
write 1 0.63 2.79 40.7x

Comments in relation to your results

You noted that you did not see good performance when serializing in Flatbuffer format compared with JSON. Two possible reasons for this are that your objects either:

  1. do not lend themselves favorably to being serialized using vectorized function calls
  2. or; you did not write the serialization code to make use of these vectorized functions

In regards to (1), you may wish to re-work your fbs (flatbuffer specification) file. You did not provide the schema, so I cannot comment on it. Or, you may wish to re-work your objects to be serialized. (Try to write them as array based types where possible, so that you can interface with them using numpy arrays.)

Code

In all of the following example codes, I use a pandas.DataFrame object as the data transport type. (Meaning that the read and write functions present an API which uses a DataFrame to exchange data.)

Example functions to read and write JSON data

import pandas
import json
import jsons
import orjson

def read_json():
    with open('df.objecttable.python_json.json', 'r') as ifile:
        data = json.load(ifile)
        return pandas.DataFrame(data)

def write_json(df):
    with open('df.objecttable.python_json.json', 'w') as ofile:
        data = df.to_dict(orient='list')
        json.dump(data, ofile)

def read_jsons():
    with open('df.objecttable.python_jsons.json', 'r') as ifile:
        data = jsons.loads(ifile.read())
        return pandas.DataFrame(data)

def write_jsons(df):
    with open('df.objecttable.python_jsons.json', 'w') as ofile:
        data = df.to_dict(orient='list')
        ofile.write(jsons.dumps(data, strict=True)) # strip_privates???

def read_orjson():
    with open('df.objecttable.python_orjson.json', 'rb') as ifile:
        data = orjson.loads(ifile.read())
        return pandas.DataFrame(data)

def write_orjson(df):
    with open('df.objecttable.python_orjson.json', 'wb') as ofile:
        data = df.to_dict(orient='list')
        ofile.write(orjson.dumps(data))

Example functions to read and write Flatbuffer data

def read_flatbuf():
    with open('df.python.flatbuf', 'rb') as ifile:
        bid_ask_timeseries = BidAskTimeseriesFBS.BidAskTimeseries.GetRootAs(ifile.read(), 0)
        bid = bid_ask_timeseries.BidAsNumpy()
        ask = bid_ask_timeseries.AskAsNumpy()
        timestamp = bid_ask_timeseries.TimestampAsNumpy()
        data_dict = {
            'bid': bid,
            'ask': ask,
            'ts': timestamp,
        }
        df = pandas.DataFrame(data_dict)
        return df

def write_flatbuf(df):
    builder = flatbuffers.Builder(1024)
    bid = df['bid'].values
    ask = df['ask'].values
    ts = df['ts'].values
    bid_flatbuffer = builder.CreateNumpyVector(bid)
    ask_flatbuffer = builder.CreateNumpyVector(ask)
    ts_flatbuffer = builder.CreateNumpyVector(ts)
    BidAskTimeseriesFBS.Start(builder)
    BidAskTimeseriesFBS.AddBid(builder, bid_flatbuffer)
    BidAskTimeseriesFBS.AddAsk(builder, ask_flatbuffer)
    BidAskTimeseriesFBS.AddTimestamp(builder, ts_flatbuffer)
    bid_ask_timeseries = BidAskTimeseriesFBS.End(builder)
    builder.Finish(bid_ask_timeseries)
    with open('df.python.flatbuf', 'wb') as ofile:
        ofile.write(builder.Output())

Utility Functions for profiling


# returns elapsed time in seconds as float
def elapsed(function, *args):
    time_start = time.time()
    function(*args)
    time_end = time.time()
    time_diff = time_end - time_start
    return time_diff

def profile_function(f, count, args):
    #print(f'profile_function called with f={f}, count={count}, args={args}')
    if args is None:
        return [elapsed(f) for _ in range(count)]
    else:
        return [elapsed(f, args) for _ in range(count)]

Example usage

count = 10

instruction_dict = {
    1: {
        "human_name": "JSON (json) read",
        "key": "json_read",
        "function": read_json,
        "profile_count": count,
        "args": None,
    },

    2: {
        "human_name": "JSON (json) write",
        "key": "json_write",
        "function": write_json,
        "profile_count": count,
        "args": read_json(),
    },

    3: {
        "human_name": "JSON (jsons) read",
        "key": "jsons_read",
        "function": read_jsons, 
        "profile_count": count,
        "args": None,
    },

    4: {
        "human_name": "JSON (jsons) write",
        "key": "jsons_write",
        "function": write_jsons, 
        "profile_count": count,
        "args": read_jsons(),
    },

    5: {
        "human_name": "JSON (orjson) read",
        "key": "orjson_read",
        "function": read_orjson,
        "profile_count": count,
        "args": None,
    },

    6: {
        "human_name": "JSON (orjson) write",
        "key": "orjson_write",
        "function": write_orjson,
        "profile_count": count,
        "args": read_orjson(),
    },

    7: {
        "human_name": "Flatbuffer read",
        "key": "flatbuf_read",
        "function": read_flatbuf,
        "profile_count": count,
        "args": None,
    },

    8: {
        "human_name": "Flatbuffer write",
        "key": "flatbuf_write",
        "function": write_flatbuf,
        "profile_count": count,
        "args": read_flatbuf(),
    },
}

df_results = pandas.DataFrame()

for k in sorted(instruction_dict.keys()):
    v = instruction_dict[k]

    print(f'k={k}')
    human_name = v['human_name']
    print(f'v[human_name]={human_name}')

    key = v['key']
    human_name = v['human_name']
    function = v['function']
    args = v['args']

    if key not in df_results.columns:
        print(f'profiling {human_name}')
        results = profile_function(function, count, args)

        if df_results.shape[0] > 0:
            df_results[key] = results
        else:
            df_results[key] = results
    else:
        print(f'skipping profiling {human_name}')

df_results.to_csv('df_results.csv')

You will have to supply your own data.

Reasons:
  • Blacklisted phrase (1): regards
  • Blacklisted phrase (1): ???
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (1): cannot comment
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: user2138149

79598577

Date: 2025-04-29 14:16:12
Score: 2.5
Natty:
Report link

So here is what I came up with after thinking about it for the morning:

I think it's impractical to use a date cursor while trying to sort posts by relevance (cosine distance).

What I can do is, just sort based on the cosine distance and use "last distance" cursor and eliminate the date factor entirely.

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

79598574

Date: 2025-04-29 14:14:11
Score: 0.5
Natty:
Report link

You can wrap the two phrases in separate elements and use a media query to stack them on different lines after a certain breakpoint

@media only screen and (max-width: 600px) {
  span {
   display:block;
  }
}
<span>Hello there Mr Nemesis X,</span> <span>welcome to the interwebs!</span>

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

79598567

Date: 2025-04-29 14:13:11
Score: 0.5
Natty:
Report link

A typical approach for managing both private and public DNS zones for the same domain such as dev.example.com is to use split-horizon DNS. In this setup, internal queries (from your VMs) are directed to the private DNS zone, while external queries (like ghs.googlehosted.com) are resolved through the public DNS zone. You can configure DNS forwarding rules and split the DNS resolution for internal and external resources by using Google Cloud DNS policies or third-party DNS services if needed.

For further reference see : Split horizon DNS example

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

79598556

Date: 2025-04-29 14:06:09
Score: 3
Natty:
Report link

Now it gives this error on going to thuis error what can i use instead of this : https://source.unsplash.com/rand

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

79598553

Date: 2025-04-29 14:06:09
Score: 3.5
Natty:
Report link

I've found the issue. I would need convert the image using BufferedImage and embed an ICC profile before loading to PDImageXObject class

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

79598547

Date: 2025-04-29 14:03:08
Score: 3
Natty:
Report link

You can look at Not able to resolve: Caused by: jakarta.servlet.jsp.JspTagException: Illegal use of &lt;when&gt;-style tag without &lt;choose&gt; as its direct parent. This question is about the same error that happens after upgrading to Jakarta namespace. Probably you have not upgraded your application correctly to use newer versions of the libraries like JSTL, JSP versions, etc.

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

79598546

Date: 2025-04-29 14:02:07
Score: 0.5
Natty:
Report link

You can listen for Xrandr related X11 events.

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

79598545

Date: 2025-04-29 14:02:07
Score: 4
Natty:
Report link

We made a chrome extension for visualising FIX Messages in your browser. Check it out here FIX Message toolkit

Reasons:
  • Blacklisted phrase (0.5): Check it out
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bitsi Software

79598538

Date: 2025-04-29 14:00:06
Score: 0.5
Natty:
Report link

After a few days of digging and a few questions to ChatGPT I got the right answer. The problem was in synchtonizxation. Here is the code to fix it:

public async Task<ArticleElastic> SaveAsync(ArticleElastic entity)
{
    await _elasticsearchClient.CreateAsync(entity, i => i.Id(entity.Id).Index(IndexName).Refresh(Refresh.True));
    return entity;
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: waifu_anton

79598537

Date: 2025-04-29 14:00:06
Score: 2
Natty:
Report link

using the umd is forcing to have a one file in the bundle (you can't chunk or split or you have to switch to cjs or es)

but es format can be problematic if you are using your bundle in a script without the type="module"

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

79598533

Date: 2025-04-29 13:59:06
Score: 3
Natty:
Report link

You must declare the dependency with javaparser-parent

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

79598532

Date: 2025-04-29 13:58:05
Score: 16
Natty: 7.5
Report link

hey did you solved this problem, i'm stucked from last 3 days. can u please help me to fix ?

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): help me to fix
  • RegEx Blacklisted phrase (3): can u please help me to fix
  • RegEx Blacklisted phrase (1.5): i'm stuck
  • RegEx Blacklisted phrase (3): did you solved this problem
  • RegEx Blacklisted phrase (1.5): fix ?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rahul kumar Verma

79598513

Date: 2025-04-29 13:51:03
Score: 3.5
Natty:
Report link

Using this Github Script (https://gist.githubusercontent.com/Woznet/ca131d92a4ee73136b320e1d630ef70f/raw/db1a05661ff3660b906db86342885d42976767f9/Get-UserAgent.ps1) on Powershell 7.6.0-preview.4

Which actually the only working script seems to be Invoke-RestMethod -Uri 'ifconfig.me/ua' Seems to be Mozilla/5.0 (Windows NT 10.0; Microsoft Windows 10.0.26100; en-US) PowerShell/7.6.0

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

79598508

Date: 2025-04-29 13:50:02
Score: 4
Natty: 4.5
Report link

Thanks . After I restarted the container as you said, I was able to get in successfully. Thank you very much

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

79598506

Date: 2025-04-29 13:48:01
Score: 3
Natty:
Report link

For me overriding the bind on Settings-Appearance & Behavior-Keymap-Other-New in This Directory worked, although I had to delete/change the binds for new directory.

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

79598492

Date: 2025-04-29 13:41:59
Score: 2
Natty:
Report link

Depending on what you want to do, you don't necessarily need to parse the source code of the dependencies. For example, Javaparser lets you parse the source code of a java project and resolve symbols contained either in the parsed source code, in a library external to the project or in the JDK itself.

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

79598489

Date: 2025-04-29 13:39:59
Score: 4.5
Natty: 5
Report link

The functionality has been updated: https://www.twilio.com/docs/conversations/typing-indicator

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

79598488

Date: 2025-04-29 13:39:59
Score: 1
Natty:
Report link

what makes it efficient? Indexes

so all you need to do is to let them be indexable..

which means you cant use any wrapper function around your date and datetime fields(like converting them to string or integer)

there are some harmless exceptions like DateAdd(). while seeking range its still range..

so using

DateTime >= Date AND DateTime < DATEADD(DAY, 1, Date)

is fine..

and i d never use anything like;

WHERE CAST(DateTimeColumn AS DATE) = DateColumn

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): what
  • Low reputation (0.5):
Posted by: Serkan Ekşioğlu

79598484

Date: 2025-04-29 13:36:58
Score: 0.5
Natty:
Report link

One option is to adjust the ruleset you use with Swagger Editor, so that it doesn't require the description fields. This isn't a required field in OpenAPI, but it's very much recommended which is why most editors/linters will give the feedback that it should exist.

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

79598481

Date: 2025-04-29 13:36:57
Score: 15.5 🚩
Natty: 4
Report link

É importante ressaltar que não posso interagir diretamente com o Stack Overflow como um usuário faria. No entanto, posso te ajudar a formular uma pergunta eficaz para postar lá, caso você deseje buscar ajuda da comunidade de desenvolvedores.

Para obter a melhor resposta no Stack Overflow, sua pergunta deve ser clara, concisa e incluir informações suficientes para que outros possam entender seu problema e oferecer soluções.

Aqui estão algumas dicas e um exemplo de como você poderia formular sua pergunta, considerando o contexto que você me deu:

Dicas para formular sua pergunta no Stack Overflow:

  1. Título Claro e Descritivo: O título é a primeira coisa que as pessoas veem. Ele deve resumir o problema de forma precisa.

  2. Contexto Detalhado: Explique o que você está tentando fazer (desenvolver um cronograma de projetos para UBS Tipo III e UBS de Apoio). Inclua informações relevantes sobre os tipos de projetos (arquitetônico, básico para aprovação na vigilância sanitária, etc.).

  3. Código ou Dados Relevantes: Se você tiver algum código ou dados (como a tabela que geramos), inclua-os na pergunta. Formate-os corretamente para facilitar a leitura.

  4. Problema Específico: Seja claro sobre qual é o seu problema ou qual tipo de ajuda você está procurando. Por exemplo, você pode estar procurando sugestões de bibliotecas/ferramentas para criar um cronograma visual, ou dicas sobre como estruturar os dados para facilitar a visualização.

  5. O que você já tentou: Se você já tentou alguma coisa para resolver o problema, mencione isso. Isso mostra que você se esforçou para encontrar uma solução e ajuda a evitar sugestões repetidas.

  6. Formate a pergunta: Use a sintaxe de formatação do Stack Overflow para tornar sua pergunta mais legível (código formatado, listas, etc.).

  7. Tags relevantes: Use tags relevantes para que sua pergunta seja vista por pessoas que têm conhecimento sobre o assunto (por exemplo, "python", "visualization", "gantt-chart", "pandas", etc.).

Exemplo de pergunta para o Stack Overflow:

Título: "Como criar um cronograma de projetos (Gantt chart) simplificado em Python para visualização de cronograma de projeto de UBS?"

Corpo da pergunta:

"Olá, estou trabalhando em um projeto para organizar o cronograma de desenvolvimento de projetos para Unidades Básicas de Saúde (UBS) Tipo III e UBS de Apoio. Preciso criar uma visualização simplificada desse cronograma, focada em ser compreensível para pessoas da área da saúde que não são especialistas em engenharia ou arquitetura.

Os dados do meu cronograma estão estruturados da seguinte forma (exemplo):

|   Fase do Projeto   |   Descrição                                                                                                                               |   Duração Estimada   |   Início Previsto   |   Fim Previsto   |   Responsável                     |
| :------------------ | :---------------------------------------------------------------------------------------------------------------------------------------- | :----------------- | :---------------- | :------------- | :------------------------------ |
|   Projeto Inicial   |   Desenho da UBS, definindo espaços e organização.                                                                                                |   4 semanas          |   01/08/2024      |   29/08/2024     |   Arquiteto                         |
|   Aprovação na Vigilância Sanitária |   Apresentação do projeto para aprovação (segurança e higiene).             |   6 semanas          |   03/09/2024      |   15/10/2024     |   Arquiteto                         |
|   Projeto Detalhado          |   Desenho completo para a construção (elétrico, hidráulico, etc.).             |   8 semanas          |   16/10/2024      |   11/12/2024     |   Engenheiros                       |
|   Custo Estimado            |   Cálculo do valor total da obra.                                              |   2 semanas          |   12/12/2024      |   26/12/2024     |   Orçamentista                        |
|   Projeto de Climatização     |   Projeto do sistema de ar condicionado e ventilação.                             |   4 semanas          |   16/10/2024      |   13/11/2024     |   Engenheiro de Climatização      |
|   ...               |   ...                                                                                                                                 |   ...              |   ...               |   ...          |   ...                               |

Já pensei em usar bibliotecas como matplotlib ou plotly para criar um gráfico de Gantt, mas estou buscando sugestões sobre:

Agradeço qualquer ajuda ou sugestão!"

Tags: python, visualization, gantt-chart, matplotlib, plotly, pandas, project-management

Reasons:
  • Blacklisted phrase (3): você
  • Blacklisted phrase (1): está
  • Blacklisted phrase (1): não
  • Blacklisted phrase (2): Código
  • Blacklisted phrase (2): código
  • Blacklisted phrase (2): solução
  • Blacklisted phrase (2): Olá
  • RegEx Blacklisted phrase (2): encontrar
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30404225

79598479

Date: 2025-04-29 13:35:56
Score: 5
Natty:
Report link

Here is a solution, for anyone who needs it: https://forum.opencart.com/viewtopic.php?t=235556

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Paola G.

79598467

Date: 2025-04-29 13:29:54
Score: 9 🚩
Natty: 5
Report link

Did you find any approach to achieve the impersonation? I have exactly the same problem and there is not a clear way to impersonate a specific user (based on email or user id) using exchange token.

Thanks!

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

79598463

Date: 2025-04-29 13:27:53
Score: 3
Natty:
Report link

script fix the white space at the begining of the script but doesnt fix the whitespace at the end of File name (before the file extension)

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

79598455

Date: 2025-04-29 13:21:51
Score: 6 🚩
Natty:
Report link

is it feasible to upgrade to testng latest version as well and see if the error comes?

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

79598454

Date: 2025-04-29 13:21:51
Score: 3.5
Natty:
Report link

good question! I also have some question here.

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

79598449

Date: 2025-04-29 13:20:48
Score: 8 🚩
Natty:
Report link

Any workaround you found for the above? facing same issue.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: theCoder

79598446

Date: 2025-04-29 13:18:47
Score: 0.5
Natty:
Report link

Try this endpoint

https://api.openai.com/v1/chat/completions

Your calling the /responses, which is not appropriate.

Reasons:
  • Whitelisted phrase (-1): Try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yogi