79663253

Date: 2025-06-12 09:34:40
Score: 3.5
Natty:
Report link

_StorageObject._Object-state replaces _Index._Active since V11.0.

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

79663240

Date: 2025-06-12 09:27:37
Score: 1
Natty:
Report link

Its really simple at this point , if you have your blob.

1. Extract url from blob

const url = URL.createObjectURL(blob);

2. Render using Viewer or <IFrame/>

import { Viewer } from '@react-pdf-viewer/core';

<Viewer fileUrl={url} defaultScale={1} />
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: harsh sharma

79663239

Date: 2025-06-12 09:26:37
Score: 2
Natty:
Report link
- debug:
    msg: "Adresse MAC : {{ vm_guest_facts.instance.hw_eth0.macaddress }}"
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Med Mahdi Dridi

79663230

Date: 2025-06-12 09:16:34
Score: 3.5
Natty:
Report link

I just restarted my pc, that fixed the issue

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

79663229

Date: 2025-06-12 09:15:34
Score: 0.5
Natty:
Report link

Work out!

if you want make the ttl right for old partitions, just run this code :

USER paimon;

CALL sys.expire_partitions(
    table => 'paimon.dwd.dwd_paimon_trade_product', 
    expiration_time => '30 d', 
    timestamp_formatter => 'yyyy-MM-dd', 
    timestamp_pattern => '$dt', 
    expire_strategy => 'values-time'
);

when you create new table and write data into paimon table, you should set those properties:

) PARTITIONED BY (dt) TBLPROPERTIES (
    'primary-key' = 'dt,mall_id,order_id,pro_id',
    'bucket' = '32',
    'bucket-key' = 'order_id',
    'partition.expiration-time' = '30 d',
    'partition.expiration-check-interval' = '1 d',
    'partition.timestamp-formatter' = 'yyyy-MM-dd'
)
;

and if you want add ttl for a table of exist, you should run :

ALTER TABLE DB.t SET PROPERTIES (
    'partition.expiration-time' = '30 d',
    'partition.expiration-check-interval' = '1 d',
    'partition.timestamp-formatter' = 'yyyy-MM-dd'
);
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: dasen

79663223

Date: 2025-06-12 09:11:33
Score: 1
Natty:
Report link

virtual threads are a new type of lightweight thread introduced to handle high concurrency efficiently. Internally, they work using a continuation-based model, where the JVM can pause and resume the thread as needed.

When a virtual thread performs a blocking operation (like I/O), it doesn’t block the OS thread. Instead, the JVM temporarily unmounts it and uses the underlying thread to run other virtual threads. This allows you to create millions of threads without much overhead.

Virtual threads are managed by the JVM, not the operating system, and they are ideal for scalable applications where traditional thread models become expensive.

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

79663209

Date: 2025-06-12 09:04:30
Score: 1
Natty:
Report link

There is now a CSS unit for this, so instead of something like this:

svg {
  height: round(#{$line-height-xsmall * $font-size-xsmall});
}

we can now do:

svg {
  height: 1lh;
}

to align an icon with the ::first-line of some wrapping text next to it.

https://developer.mozilla.org/en-US/docs/Learn_web_development/Core/Styling_basics/Values_and_units#line_height_units
https://caniuse.com/mdn-css_types_length_lh

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: Yann Dìnendal

79663208

Date: 2025-06-12 09:03:30
Score: 1.5
Natty:
Report link

Actually, I was facing some related problem. At lease right now I could tell you that the MapFrom feature in ForPath and ForMember is not the same, which ForMember contains more processible by provide IValueResolver<TSource, TDestination, TDestMember> than Func<IPolicy, TSourceMember>

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

79663197

Date: 2025-06-12 08:53:27
Score: 3
Natty:
Report link

HHVM is officially supported on most major linux platforms, with limited support for MacOS.

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

79663196

Date: 2025-06-12 08:53:27
Score: 2
Natty:
Report link

This issue is known and appears to be related to MediaPipe's dependencies on audio. However, a workaround has been provided in the pull request https://github.com/google-ai-edge/mediapipe/pull/5993. If you are still seeking a fix, I recommend trying that approach.

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

79663190

Date: 2025-06-12 08:49:26
Score: 1
Natty:
Report link

Sadly, supabase does not offer a feature like this. Therefore I build my own npm package for Supabas Auth, Databae, Storage and Realtime. You can use it to translate into 8 languages with English as fallback using the error codes.

Check it out https://www.npmjs.com/package/supabase-error-translator-js?activeTab=readme

It is built by me and is my own project.

Reasons:
  • Blacklisted phrase (0.5): Check it out
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: srothgang

79663188

Date: 2025-06-12 08:48:25
Score: 1.5
Natty:
Report link

The reason may be exporting 92,000 rows with PHPSpreadsheet might not hit memory limits because the data itself is likely simple, requiring less memory per cell. PHP's memory management is efficient; even with no limit, it only uses what's needed, especially if your system has plenty of RAM. Laravel, if used, could be subtly optimizing data retrieval with lazy loading, preventing the entire dataset from being held in memory at once. Finally, the lack of a memory leak just means memory is properly released, not that usage is inherently low, but rather handled cleanly.

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

79663184

Date: 2025-06-12 08:46:25
Score: 2
Natty:
Report link

If you want it fast, try out the std::to_chars functions (since C++17)

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

79663168

Date: 2025-06-12 08:32:21
Score: 2
Natty:
Report link

Thanks @zeljan for answering my question in the comments.

Looks like this is a bug in the Lazarus 4.0 IDE with QT6 backend.

It'll be fixed in Lazarus 4.2 Stable: https://gitlab.com/freepascal.org/lazarus/lazarus/-/issues/41470


So if anyone has this issue in the future, just update your Lazarus IDE to the latest version.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @zeljan
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Shaun Roselt

79663167

Date: 2025-06-12 08:32:21
Score: 0.5
Natty:
Report link

This is the correct code to add for the English language hl=en&amp;

Add before the src

Sample code

src="https://calendar.google.com/calendar/embed?height=600&amp;wkst=1&amp;ctz=Asia%2FColombo&amp;showPrint=0&amp;hl=en&amp;src=Y19lMDAwNDQwZmY4MjVlNWM0MGU3NzAxOGJiNmExOGNiNDc3Z

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

79663151

Date: 2025-06-12 08:20:18
Score: 1.5
Natty:
Report link

Turns out the issue seems to be in my Github workflow, not in Azure.

I had not included:

ARM_USE_OIDC: true

in the Github workflow.

Adding this has allowed the workflow to successfully run terraform init and create a state file in the Azure storage account.

Many thanks.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Scott

79663130

Date: 2025-06-12 08:08:14
Score: 1.5
Natty:
Report link

I ran into the same issue and was able to resolve it. It turns out to be related to the Donut model’s MAX_TOKEN_LEN setting. My code runs successfully when MAX_TOKEN_LEN is set to 128 or lower, but the bug reappears as soon as it exceeds 128.

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

79663120

Date: 2025-06-12 08:02:12
Score: 1
Natty:
Report link

1.Ensure finishTransaction is called correctly and only once.

2.Clear any unknowledge or pending purchases from previous sessions using flushFailedPurchasesCachedAsPendinAndroid().

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

79663116

Date: 2025-06-12 07:57:11
Score: 1.5
Natty:
Report link

If you're looking to automatically extract Gmail emails (including replies) into MySQL and properly group conversations, this is exactly what my SaaS Sivox does.

Sivox connects to Gmail (and Zoho Mail), automatically fetches emails, extracts metadata (including thread and conversation grouping), attachments, and stores everything directly into MySQL or SQL Server databases.

You don’t need to deal with APIs, IMAP or complex scripting — everything is fully automated and works continuously.

You can check it out here is free:
👉 https://sivox.net/

Happy to give you more details if you're interested.

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Giovanni Correia

79663115

Date: 2025-06-12 07:55:10
Score: 4.5
Natty:
Report link

Thank you! I got the answers to my questions.

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

79663110

Date: 2025-06-12 07:49:09
Score: 1
Natty:
Report link

Add below code after this line '

   xlWorkSheet = xlWorkBook.Sheets(1)

xlworksheet.Range("A:Z").NumberFormat="@"

This will change any number format your excel to text.

The range depends on the size of data you are exporting.It can be:("A:AB")...etc

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

79663107

Date: 2025-06-12 07:44:07
Score: 2
Natty:
Report link

This issue was introduced by Chromium and not Visual Studio.

Tracking issue:
https://issues.chromium.org/issues/422218337

Resolved in Latest Version of Chrome: 137.0.7151.104

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

79663099

Date: 2025-06-12 07:36:04
Score: 9 🚩
Natty: 6.5
Report link

Have you found a solution yet? If so, please share it.

Reasons:
  • RegEx Blacklisted phrase (2.5): please share
  • RegEx Blacklisted phrase (2.5): Have you found a solution yet
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Absar Ahmad

79663098

Date: 2025-06-12 07:35:03
Score: 2
Natty:
Report link
SELECT *
FROM INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME LIKE '%create%'
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Siva Kumar

79663086

Date: 2025-06-12 07:29:01
Score: 1
Natty:
Report link

Possible solutions:

Try to reinstall HAXM.

1.Open your Android SDK manager.

2.Un check the HAXM installer and reinstall it.

Additionally, please check if you have multiple Android SDK installations on your computer.

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

79663085

Date: 2025-06-12 07:29:01
Score: 1
Natty:
Report link

Make sure that you are not using any Sliver-s inside your regular widgets. This error is absolutely misleading in this case

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

79663080

Date: 2025-06-12 07:26:00
Score: 0.5
Natty:
Report link

If you want to send ids in the request and expect dictionary of items in the response, then this approach might be useful.

tag = TagSerializer(many=True, read_only=True)
tag_ids = serializers.PrimaryKeyRelatedField(
    queryset=Tag.objects.all(),
    many=True,
    write_only=True,
    source="tag",
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: George Nigoghossian

79663076

Date: 2025-06-12 07:21:59
Score: 1
Natty:
Report link

Yes, technically Zoho CRM itself doesn’t expose IMAP emails directly via its public API (unlike notes, tasks, or events). Zoho stores IMAP-connected emails in a separate internal email module which is not fully accessible through the standard CRM API.

However, there is a way to retrieve these emails externally by connecting directly to the Zoho Mail account itself (via IMAP or API), independent from Zoho CRM.
For example, I’ve built a solution (Sivox) that automatically connects to Zoho Mail (or Gmail), extracts emails, attachments, and metadata, and synchronizes them into external databases like MySQL or SQL Server.

If you want to fully extract and store these emails outside Zoho CRM for analytics, integrations or backups — this type of solution might be exactly what you’re looking for.

Let me know if you want more technical details.

https://sivox.net/

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

79663074

Date: 2025-06-12 07:19:59
Score: 3
Natty:
Report link

Please check if the file hive-metastore-2.x.x.jar exists in your Spark jars path. I found hive-metastore-2.3.9.jar in the spark-3.5.0-bin-hadoop3/jars directory.

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

79663072

Date: 2025-06-12 07:18:58
Score: 3.5
Natty:
Report link

Try https://wa.me/{phone number} - without 00 but has international dialling code

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

79663071

Date: 2025-06-12 07:17:58
Score: 3
Natty:
Report link

I read the ESP-IDF documentation about secure boot and flash encryption, and also asked some questions on the forum. I got answers stating that flash encryption cannot be enabled on a device where secure boot is already enabled.

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

79663070

Date: 2025-06-12 07:17:58
Score: 4
Natty:
Report link

You can try this, hopefully this works for you.
enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ehtesham Ul Hassan

79663067

Date: 2025-06-12 07:12:57
Score: 0.5
Natty:
Report link

you can use so many dependency in flutter for crop the images so use can also use these like
crop_your_image, crop ,crop_image,custom_image_crop ... so you these i think your issue will be solved

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

79663063

Date: 2025-06-12 07:08:55
Score: 1
Natty:
Report link

Not 100% sure I got your question right, but :

LLM runs on the client side, not in your MCP server.

For example, in production, an LLM client would automatically decide when to call CreateNewTable based on user prompts.

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

79663058

Date: 2025-06-12 07:07:55
Score: 1
Natty:
Report link

I have reason to believe that this strange behaviour resulted from a broken or otherwise incorrect index because luckily OPTIMIZE TABLE did the trick.

Additionally, since we're dealing with system versioned tables, I needed to change the 'alter history' vairable:

SET @@system_versioning_alter_history = KEEP;

output of optimize before setting alter history

After that SELECT [....] gave the same result as SELECT [...] FOR SYSTEM_TIME AS OF NOW() while SELECT [...] FOR SYSTEM_TIME ALL still contained the historical data.

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

79663033

Date: 2025-06-12 06:43:47
Score: 0.5
Natty:
Report link

If you don't have the ability to set up new deploy keys, and you get this for the -checkout directive, then replace -checkout with


      - run:
          command: |
            git clone --depth 1 https://github.com/whatever/project /where
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Linas

79663031

Date: 2025-06-12 06:41:47
Score: 1
Natty:
Report link

I think you might be in this situation:

"Symptom - Role assignments for management group changes are not being detected

You created a new child management group and the role assignment on the parent management group is not being detected for the child management group.

Cause

Azure Resource Manager sometimes caches configurations and data to improve performance.

Solution

It can take up to 10 minutes for the role assignment for the child management group to take effect. If you are using the Azure portal, Azure PowerShell, or Azure CLI, you can force a refresh of your role assignment changes by signing out and signing in. If you are making role assignment changes with REST API calls, you can force a refresh by refreshing your access token."

Source

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

79663028

Date: 2025-06-12 06:38:46
Score: 3.5
Natty:
Report link

In addition to the answer @BOUKANDOURA Mhamed provided above, I had to modernize the python command by adding a couple of brackets round the print to avoid getting a Missing parentheses in call to 'print' error.

So my playbook (without the safety cron job) looks something like this:

- hosts: satellite, debroom
  gather_facts: no
  tasks:
    - name: backup shadow file
      copy:
        src: /etc/shadow
        dest: /etc/shadow.ansible-bak
      become: yes

    - name: generate hash pass
      delegate_to: localhost
      command:  python -c "from passlib.hash import sha512_crypt; import getpass; print(sha512_crypt.encrypt('{{new_password}}'))"
      register: hashedpw

    - debug:
        var: hashedpw.stdout

    - name: update password
      user:
        name: root
        password:  '{{hashedpw.stdout}}'
      become: yes

I am also passing through my value for new_password as an environment variable, when I run it like this:

ansible-playbook -i inventory.yml update_password.yml -e new_password=flufflykins123

This seems to be working fine for me, but I am left wondering if the crypto settings on @BOUKANDOURA Mhamed 's original answer maybe needs updating to something stronger, since it's 2025?

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @BOUKANDOURA
  • User mentioned (0): @BOUKANDOURA
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Schmealsson

79663027

Date: 2025-06-12 06:38:46
Score: 0.5
Natty:
Report link

You didn't mention your production requirements but there is nothing with using UV in production. In fact, it is recommended to use at least a dependency manager and virtual environments because the days where you maintain a requirements.txt file by hand. I'm sure Java has similar tools used to manage dependencies and upgrade libraries as you need fit.

"Is it good practice (in production)" really depends on your requirements in production and how they may differ from in development. UV and most python dependency managers allow you split dev dependencies so thought they are only installed in a developers environment.

It's actually good devops practice to mirror your prod and dev environments so I'd count it as a good thing that your environments are closer.

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

79663021

Date: 2025-06-12 06:35:45
Score: 4
Natty: 5
Report link

what about `cd <path/to/folder> && npm install xyz`

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): what
  • Low reputation (1):
Posted by: Willy Woitas

79663020

Date: 2025-06-12 06:34:44
Score: 8.5 🚩
Natty: 4.5
Report link

Is this resolved? I am also facing same issue

Reasons:
  • RegEx Blacklisted phrase (1.5): resolved?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is this
  • Low reputation (1):
Posted by: V Sailu

79663011

Date: 2025-06-12 06:25:41
Score: 2
Natty:
Report link

Tools like uv, venv etc are used to manage isolated Python environments and dependencies. Whether or not to use uv in production depends on your workflow and preference.

In short, while uv can improve setup speed and consistency, it’s not mandatory.

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

79663006

Date: 2025-06-12 06:20:40
Score: 1
Natty:
Report link

Comment to Answer by Thanatos ( https://stackoverflow.com/users/15414326/thanatos )

Just wanted to say thx because it helped me right now!

this is a version for NetFramework and Net8, they changed some of the internal names and the stacktrace functions have been deprecated, so i removed those. Still serves the purpose of finding the problematic entry.

/// <summary>
/// Based on: https://stackoverflow.com/a/70413275
/// </summary>
internal static class PreferenceChangedObserver
{
#if NETFRAMEWORK
    private const string FieldNameHandlers = "_handlers";
    private const string FieldNameDestinationThreadName = "destinationThreadRef";
#else
    private const string FieldNameHandlers = "s_handlers";
    private const string FieldNameDestinationThreadName = "_destinationThread";
#endif

    private const System.Reflection.BindingFlags FlagsInstance = System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance;
    private const System.Reflection.BindingFlags FlagsStatic = System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Static;
    private const string LogFilePath = $"D:\\FreezeLog.txt";

    /// <summary>
    /// Creates a new thread and runs the check forever.
    /// </summary>
    public static void StartThread()
    {
        if (System.IO.File.Exists(LogFilePath))
        {
            System.IO.File.Delete(LogFilePath);
        }

        var tr = new System.Threading.Thread(CheckSystemEventsHandlersForFreezeLoop)
        {
            IsBackground = true,
            Name = nameof(PreferenceChangedObserver) + ".CheckThread",
        };
        tr.Start();
    }

    private static IEnumerable<EventHandlerInfo> GetPossiblyBlockingEventHandlers()
    {
        var type = typeof(Microsoft.Win32.SystemEvents);

        var handlers = type.GetField(FieldNameHandlers, FlagsStatic).GetValue(null);
        if (handlers?.GetType().GetProperty("Values").GetValue(handlers) is not System.Collections.IEnumerable handlersValues)
        {
            yield break;
        }

        foreach (var systemInvokeInfo in handlersValues.Cast<System.Collections.IEnumerable>().SelectMany(x => x.OfType<object>()).ToList())
        {
            var syncContext = systemInvokeInfo.GetType().GetField("_syncContext", FlagsInstance).GetValue(systemInvokeInfo);

            ///// Make sure its the problematic type
            if (syncContext is not WindowsFormsSynchronizationContext wfsc)
            {
                continue;
            }

            // Get the thread
            var threadRef = (WeakReference)syncContext.GetType().GetField(FieldNameDestinationThreadName, FlagsInstance).GetValue(syncContext);
            if (!threadRef.IsAlive)
            {
                continue;
            }

            var thread = (System.Threading.Thread)threadRef.Target;
            if (thread.ManagedThreadId == 1) //// UI thread
            {
                continue;
            }

            if (thread.ManagedThreadId == Environment.CurrentManagedThreadId)
            {
                continue;
            }

            // Get the event delegate
            var eventHandlerDelegate = (Delegate)systemInvokeInfo.GetType().GetField("_delegate", FlagsInstance).GetValue(systemInvokeInfo);

            yield return new EventHandlerInfo
            {
                Thread = thread,
                EventHandlerDelegate = eventHandlerDelegate,
            };
        }
    }

    private static void CheckSystemEventsHandlersForFreezeLoop()
    {
        while (true)
        {
            System.Threading.Thread.Sleep(1000);
            try
            {
                foreach (var info in GetPossiblyBlockingEventHandlers())
                {
                    var msg = $"SystemEvents handler '{info.EventHandlerDelegate.Method.DeclaringType}.{info.EventHandlerDelegate.Method.Name}' could freeze app due to wrong thread. ThreadId: {info.Thread.ManagedThreadId}, IsThreadPoolThread:{info.Thread.IsThreadPoolThread}, IsAlive:{info.Thread.IsAlive}, ThreadName:{info.Thread.Name}{Environment.NewLine}";
                    System.IO.File.AppendAllText(LogFilePath, DateTime.Now.ToString("dd.MM.yyyy HH:mm:ss") + $": {msg}{Environment.NewLine}");
                }
            }
            catch
            {
                // That's dirty.
            }
        }
    }

    private sealed class EventHandlerInfo
    {
        public Delegate EventHandlerDelegate { get; set; }

        public System.Threading.Thread Thread { get; set; }
    }
}
Reasons:
  • Blacklisted phrase (1): thx
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Otterprinz

79663000

Date: 2025-06-12 06:17:39
Score: 0.5
Natty:
Report link

You search for WrappingHStack

https://github.com/dkk/WrappingHStack

you're able to split text to words and implement click function on each element

enter image description here

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

79662998

Date: 2025-06-12 06:13:38
Score: 2.5
Natty:
Report link

Please add at the end of your final URL
&t=\(CFAbsoluteTimeGetCurrent())
This works 100% in app as well.

example https://itunes.apple.com/lookup?bundleId=com.xxx.xxxx&t=\(CFAbsoluteTimeGetCurrent())

this work for me.

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

79662997

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

"evaluation_strategy" has been deprecated since version 4.46 of the Hugging Face Transformers library. https://github.com/huggingface/transformers/pull/30190

Changing evaluation_strategy="" to eval_strategy="" should fix the unexpected argument issue.

Your configuration for the 6-label classifier looks correct (num_labels=6, problem_type="multi_label_classification"). If you run into any errors, please share the traceback for further assistance.

Reasons:
  • RegEx Blacklisted phrase (2.5): please share
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: davidzhou

79662996

Date: 2025-06-12 06:10:37
Score: 4
Natty:
Report link

Please refer flutter_fix . It might fix you problem.

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

79662994

Date: 2025-06-12 06:09:36
Score: 2.5
Natty:
Report link

try to clear cache
Shift + F5: The Hard Refresh

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Michał Zych

79662992

Date: 2025-06-12 06:08:36
Score: 0.5
Natty:
Report link

I'm not trying to do anything like that but I wanted to add some logic to Keycloak authenticators so I was interested in this question. The redirect uri ( ru ) is in the client_data URL path parameter encoded to base64, of the request starting the Login and then it is passed to the Register and finally used. I don't see an option to replace it - at least not in the authenticator.

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

79662981

Date: 2025-06-12 05:55:32
Score: 3
Natty:
Report link

found a site that was able to figure this out. seems like its geared towards SaaS use though.
https://send.co/

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

79662977

Date: 2025-06-12 05:53:31
Score: 1
Natty:
Report link

According to the following references, the default port or EZVIZ cameras is 554

In my case this url worked with opencv and python

rtsp://admin:****@192.168.0.86:554

8000 is not the RTSP port

Like you, I initially thought the port was 8000 after checking the Ezviz mobile app

enter image description here

The images are from a pdf I found : https://svtclti.com/manuales/CCTV/CAMARAS/EZVIZ/C%C3%B3mo%20activar%20RTSP%20en%20Ezviz.pdf

Required configurations

  1. Log in to your EZVIZ account, and tap the profile icon on the top left corner.
  2. Tap Settings
  3. Scroll down to find LAN Live View
  4. Make sure your camera and phone are on the same LAN, then tap Start Scanning.
  5. Enter the device verification code as the password (usually located on the white sticker of your camera) and the username is admin by default, and you will be able to view your camera.
  6. While the camera is connected (mobile app), go to the settings

enter image description here

  1. Local Service Settings
  2. Enable the RTSP and accept the warning

enter image description here

More details:

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • High reputation (-2):
Posted by: JRichardsz

79662976

Date: 2025-06-12 05:52:30
Score: 5
Natty:
Report link

I have a same problem.
When I opened a TCPDF-generated PDF with embedded CMYK JPGs in Illustrator, the document's color mode was CMYK. Therefore, the method given by jgtokyo did not solve the problem.

I will comment again when the problem is solved.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have a same problem
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ayumi

79662972

Date: 2025-06-12 05:47:29
Score: 4.5
Natty: 5
Report link

this is the piece of code I have if the user enter the email appart from quest-global.com we have to throw error if he entered gmail or hotmail we have to dispaly the message please enter the valid email address?

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

79662969

Date: 2025-06-12 05:43:27
Score: 2
Natty:
Report link

On the Issues page, you can write, e.g., closed:>@today-1y in the search bar — that would filter for issues that were closed in the last year. Other filter options include created: and merged:.

GitHub issues screen using the closed filter

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Joel Niemelä

79662967

Date: 2025-06-12 05:42:27
Score: 1
Natty:
Report link

check if you have the below line added in in the scripts section of your package.json file present in the root directory of your project :

"start" : "react-scripts start"

this is the line that enables the "npm start" command to build and run your react application

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

79662959

Date: 2025-06-12 05:35:24
Score: 1
Natty:
Report link

Solutions :

1.Install the latest version of image_cropper.

2.In the latest version you can pass the property of uiSettings. Inside you can pass the property AndroidUiSettings.

3.Wrap your app in a SafeArea.

4.Use MediaQuery.of(context).padding for adjusting the content.

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

79662953

Date: 2025-06-12 05:30:23
Score: 0.5
Natty:
Report link

The problem was the directory structure. Locating the source files in a src sub-directory resolved the issue.

    my_module/
    +---LICENCE.md
    +---pyproject.toml
    +---README.md
    +---requirements.txt
    +---src/
    |   +---my_module/
    |       +---__init__.py
    |       +---my_module.py
    |       +---my_module.tcss
    +---git/
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: RBE

79662950

Date: 2025-06-12 05:29:23
Score: 3
Natty:
Report link

Free Fire Beta 2025 APKLULU.COM.xapk

1 INSTALL_FAILED_NO_MATCHING_ABIS: INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113

2 Apl tidak terpasang

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

79662946

Date: 2025-06-12 05:22:22
Score: 0.5
Natty:
Report link

In short, write model doesn't mean that you cannot read the data from the store. You just cannot read it from the Presentation (UI, client,...). Within write model you can start a transaction, read policies, read anything from the write store that helps you to validate the command, then execute the command and write the state to the store.

So, write store should be the primary store, i.e. all policies should be available in write store. In general, all data should be in primary store first, then replicate to the read stores. All transactions in the write model are strongly consistent. But for the whole application, it's eventually consistent because the client reads from the read stores.

It's similar to database clustering. All transactions must be executed on the primary shard, while queries can be sent to replica shards. DB cluster doesn't prevent you to send the queries to the primary shard, but obviously it would be better for scaling if you route the queries to replicas.

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

79662944

Date: 2025-06-12 05:19:21
Score: 2
Natty:
Report link

It happenes me too, I am even using Next.js 15 latest version.

I just opted out optimization option.

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

79662940

Date: 2025-06-12 05:17:20
Score: 2.5
Natty:
Report link

Tone.Sampler doesn't do multiple samples per key, you will have to do this yourself. You could try to do them seperately. Don't use Tone.PitchShift. It is not use to play multiple notes with different pitches together

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

79662938

Date: 2025-06-12 05:13:18
Score: 7 🚩
Natty:
Report link

Can you please share me the DDL using AFTER SERVER ERROR ON DATABASE

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you please share me
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you please share me the
  • Low reputation (1):
Posted by: Sadhana

79662933

Date: 2025-06-12 05:09:17
Score: 1.5
Natty:
Report link

CRM stands for Customer Relationship Management. It refers to a technology, strategy, and process that helps businesses manage and improve their interactions with current and potential customers. CRM systems are used to:

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

79662931

Date: 2025-06-12 05:05:16
Score: 2.5
Natty:
Report link

Check your internet connection speed. That could be culprit.

Usually takes max 15-20 mins for full image download and 10-15 for the docker compose up.

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

79662927

Date: 2025-06-12 04:56:14
Score: 0.5
Natty:
Report link

Let's break down the behavior of these DAX formulas and the concept of context transitions:

Key Concepts

  1. Filter Context: The set of filters applied to the data model when a calculation is evaluated.

  2. Row Context: The context of a single row in a table being processed by an iterator function like FILTER.

  3. Context Transition: The automatic conversion of row context to filter context when using CALCULATE.


Example 2 Analysis

Example 2 := 
CALCULATE (
    [Sales Amount],
    FILTER (
        ALL ( 'Date' ),
        'Date'[Date] <= MAX ( 'Date'[Date] )
    )
)

Why Doesn't MAX Return the Last Date in the Table?

Visual Filter Context

No Context Transition


Contrast with Example 1 & 3

Example 1

Example 1 := 
CALCULATE (
    [Sales Amount],
    FILTER (
        ALL ( 'Date' ),
        'Date'[Date] <= [MaxDate]
    )
)

Example 3

Example 3 := 
CALCULATE (
    [Sales Amount],
    FILTER (
        ALL ( 'Date' ),
        'Date'[Date] <= CALCULATE ( MAX ( 'Date'[Date] ) )
    )
)

Summary

| Example | Behavior | Context Transition | |---------|--------------------------------------------------------------------------|--------------------| | 1 | [MaxDate] captures the visual's filter context before iteration. | No | | 2 | MAX inherits the visual's filter context (no transition). | No | | 3 | Inner CALCULATE resets filter context to ALL('Date'). | Yes |


Practical Implications


When to Use Each Approach

This behavior is foundational to DAX's "context transition" mechanics, which are critical for mastering dynamic calculations in Power BI and Analysis Services.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Filler text (0.5): ---------
  • Filler text (0): --------------------------------------------------------------------------
  • Filler text (0): --------------------
  • Low reputation (1):
Posted by: anil kr maurya

79662924

Date: 2025-06-12 04:50:12
Score: 2
Natty:
Report link

You have to explicitly tell Fusion that you are interested in non-optimal solutions. See the remark in

https://docs.mosek.com/latest/pythonfusion/accessing-solution.html#retrieving-solution-values

For example

M.acceptedSolutionStatus(AccSolutionStatus.Feasible)
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Michal Adamaszek

79662923

Date: 2025-06-12 04:49:12
Score: 1.5
Natty:
Report link

G Hub only let's you use the macro buttons on Logitech keyboards as triggers, so u can't assign macros or lua scripts to regular keys. It's possible to use modifiers as conditions, such as triggering the script with MMB only if lctrl is pressed, but not with lctrl alone.

This should be simple to do in Autohotkey, but some anti-cheats could flag that as irregular software interactions. Give it a try if that's not your case.

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

79662921

Date: 2025-06-12 04:48:11
Score: 1
Natty:
Report link

Okay - the issue is that the nodes also need a key value:

const checkbox1 = {
        label:"checkbox 1",
        key: 'checkbox_1'
      };

      const checkbox2 = {
        label:"checkbox 2",
        key: 'checkbox_2'
      };
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Tim

79662920

Date: 2025-06-12 04:47:11
Score: 3
Natty:
Report link

I have using a program called Advik EML Converter. This app basically extract attachments from EML files into .pdf, .csv, ics, etc. If your email file saved attachments in .pdf then it will export attachments it in .pdf file.

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

79662919

Date: 2025-06-12 04:46:11
Score: 1.5
Natty:
Report link

Just like OP I was trying to get row-based conditional formatting going. Using OFFSET worked for me. Thanks @ttaaoossuu. The naysayers may not like it but it seems to be the only workaround that actually works.

Additionally, note that conditional formatting does not allow boolean indicators like AND, but easily got around that by creating hidden columns to do the hard work of combining conditions.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): worked for me
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Sumi

79662918

Date: 2025-06-12 04:44:10
Score: 1.5
Natty:
Report link

Recommendations

Option 1: Go ConstraintLayout

Option 2:

if still wants to use LinearLayout Please remove relative layout. try the below code, Relplace the image with yours original one i have used placeholder. If still you see the bad UI please share the file @style/MediaButton


<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingHorizontal="10dp"
    android:gravity="center">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:gravity="center"
        android:paddingVertical="6dp"
        android:layout_marginTop="12dp"
        android:layout_marginBottom="12dp"
        android:weightSum="5">

        <ImageButton
            android:id="@+id/btnvolumdown"
            android:layout_width="0dp"
            android:layout_height="35dp"
            android:layout_weight="1"
            android:background="@android:drawable/ic_media_next"
            android:contentDescription="Volume Down"
            android:tint="@color/black" />

        <ImageButton
            android:id="@+id/rew"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="@android:drawable/ic_media_previous"
            android:contentDescription="Rewind" />

        <ImageButton
            android:id="@+id/play"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="@android:drawable/ic_media_play"
            android:contentDescription="Play" />

        <ImageButton
            android:id="@+id/ffwd"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="@android:drawable/ic_media_next"
            android:contentDescription="Fast Forward" />

        <ImageButton
            android:id="@+id/btnvolumup"
            android:layout_width="0dp"
            android:layout_height="35dp"
            android:layout_weight="1"
            android:background="@android:drawable/ic_media_pause"
            android:contentDescription="Volume Up" />
    </LinearLayout>

</LinearLayout>
Reasons:
  • RegEx Blacklisted phrase (2.5): please share
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vivek Samele

79662911

Date: 2025-06-12 04:36:07
Score: 0.5
Natty:
Report link

If you are using com.google.android.material.textfield.TextInputLayout and com.google.android.material.textfield.TextInputEditText, just adding the code below is enough.

textInputEditText.isFocusableInTouchMode = true
textInputEditText.setFocusable(true)
textInputEditText.requestFocus()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Joonsoo

79662908

Date: 2025-06-12 04:33:06
Score: 4
Natty:
Report link

Is there a way of adding API controllers to the server project and calling them from the client?

Also, there is also no longer a Main startup method in the client, so I can't see how to add services to the client project.

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

79662904

Date: 2025-06-12 04:24:03
Score: 1
Natty:
Report link

Neither Bcrypt or Argon2 use SHA-256 or SHA-512 internally.

Bcrypt: is based on Blowfish cipher and has its own key setup mechanism, it's designed in the late 90s but still considered secure when properly configured (e.g., cost factor ≥12).

Argon2: uses BLAKE2b, newer cryptographic hash function, it has multiple versions: Argon2id, Argon2i, Argon2d.

Argon2id is considered best password hash function today.

You should not use SHA-256 or SHA-512 for passwords, these hash are for data integrity purposes, like signing requests, checking file integrity, or token hashing.

You can read more about argon2 and password storage

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

79662902

Date: 2025-06-12 04:22:02
Score: 3
Natty:
Report link

There is no built-in setting in LM-studio that can automatically do that. You will have to manually do the conversion outside of LM-studio

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

79662892

Date: 2025-06-12 04:05:58
Score: 2
Natty:
Report link

Try disabling extensions in browser if using. In my case the speechify extension in my browser was interfering the smooth scroll behavior after disabling , it worked.

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

79662889

Date: 2025-06-12 03:55:56
Score: 1
Natty:
Report link

Use io.ReadFull to slurp up the desired number of bytes on each iteration of the loop.

buf := make([]byte, 10)
for {
    _, err := io.ReadFull(r.Body, buf)
    if err == io.ErrUnexpectedEOF || err == io.EOF {
        // Success!
        break
    } else if err != nil {
        // Something bad happened.
        log.Fatal(err)
    }
    time.Sleep(time.Second)
}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: thwd

79662883

Date: 2025-06-12 03:39:52
Score: 4
Natty:
Report link

It's easy, all you have to do is translate this post into English. Here are the instructions: https://tecnologiageek.com/android-desactiva-asi-la-pantalla-de-inicio-del-sistema/#google_vignette

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

79662876

Date: 2025-06-12 03:23:48
Score: 2
Natty:
Report link

For a single directory:

for %a in (*.*) do find /i "string to search for"

Will do the job. Otherwise, you can do something like

dir /s /b *.txt > filelist.txt

to get a recursive list and then

for /f %a in (filelist.txt) do find /i "string to search for"

You can also use && and || to specify other things like && echo %a to echo the file name. . . will work, but might not be as fast as recursive grep.

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

79662874

Date: 2025-06-12 03:16:47
Score: 1
Natty:
Report link

Use the for statement to call CopyN(io.Discard, r.Body, 10) in a loop and sleep after each chunk.

for {
    n, err := io.CopyN(io.Discard, r.Body, 10)
    if err == io.EOF {
        // Body successfully discarded.
        break
    } else if err != nil {
        log.Fatal(err)
    }
    time.Sleep(time.Second)
}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jasmine Crockett

79662872

Date: 2025-06-12 03:15:46
Score: 1.5
Natty:
Report link

Try --ssl-no-revoke option with curl like

curl --ssl-no-revoke https://maintenanceplus.nl 
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: liuliang

79662871

Date: 2025-06-12 03:11:45
Score: 3.5
Natty:
Report link

tsconfig.ts is No modifications are needed.

I merely added the comments for the "output" directory.

edit schema.prisma -output

execute npm i prisma @prisma/client

npx npx prisma generate

is will be OK

enter image description here

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

79662868

Date: 2025-06-12 03:02:43
Score: 1
Natty:
Report link

surl & furl in payu request should be an api endpoint. Payu sends the status of the transaction to your api endpoint. once you receive the request from payu, process it, save it to your database and return a redirect request(send transaction id etc) to your client app for further processing.

i have an asp.net webapi and angular app and this is how i was able to handle redirection from payu.

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

79662864

Date: 2025-06-12 02:58:42
Score: 1.5
Natty:
Report link

Right after commenting I actually figured this out. For people using the Azure Devops Xcode pipeline task (ver. 5.*), check your 'Advanced' settings

Once I unchecked the "Use xcpretty" option I could see all the build and build phase script output that I'm used to seeing locally. This includes the downstream CompileC failure errors that I was missing too

enter image description here

text tags: missing script build phase print output logs Xcode azure

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

79662858

Date: 2025-06-12 02:43:38
Score: 1.5
Natty:
Report link

Another possibility for those struggling with aws grok - the log files I was trying to crawl were in uft-16 LE BOM (just what the 3rd party system was creating) and grok would not work - changed the log files to utf-8 and it worked

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

79662853

Date: 2025-06-12 02:33:36
Score: 1
Natty:
Report link

Sorry about the late answer. Yes it can be done.

AABB-AABB intersections can be done by tracing a ray segment along each edge of each box against the other box (TLAS intersection testing).
Triangle-triangle intersection testing can be done by constructing 3 fake triangles orthogonal to each original triangle along each edge of the triangle (to catch the special case of the original triangles being coplanar) and then tracing a ray segment along each edge of each original triangle.

Source: https://arxiv.org/pdf/2402.14801v1

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

79662847

Date: 2025-06-12 02:16:32
Score: 1.5
Natty:
Report link

kitikiplot Python library can be used to visualize sequential categorical data. Also, sliding window can be applied, focus can be set.

To install:

pip install kitikiplot

Quick Start:

from kitikiplot.core import KitikiPlot

# Consider 'df' is a 'pd.DataFrame' containing 'Summary' column
ktk= KitikiPlot( data= df["Summary"].values.tolist() )

ktk.plot( )

1. Short Genome Sequences: A, T, G, C

Grid Plot For Short Genome Sequences

2. Pollutant levels[enter image description here]

Ecology Linear Plot

GitHub Source Code: https://github.com/BodduSriPavan-111/kitikiplot

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

79662830

Date: 2025-06-12 01:35:23
Score: 2.5
Natty:
Report link

it depends how you setup your project, you has defined the Buefy in a global state above will work when the function hit this code, else you need to import the Buefy within the component where are you are using it.

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

79662827

Date: 2025-06-12 01:24:21
Score: 1
Natty:
Report link

"The inviteToken is passed as input."

How are you passing this value to the custom policy?

The REST API requires this as input. Since this is not given a value anywhere in the custom policy, this may explain the error?

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

79662822

Date: 2025-06-12 01:17:19
Score: 0.5
Natty:
Report link

I tried to check the local port before creating the container and found that port 5433 was already in use.

C:\Windows\System32>netstat -aon | findstr LISTENING

TCP [::]:5433 [::]:0 LISTENING 6017

I checked the information and found that postgrep.exe had occupied port 5433.

C:\Windows\System32>tasklist /FI "PID eq 6012"

Choose a non-used port to create a container and the connection will be successful

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

79662817

Date: 2025-06-12 01:11:18
Score: 0.5
Natty:
Report link

When you load your app, you're presumably going to the / route. When using a browser to visit a page, a GET request is sent. Since the / route only allows POST requests, Flask returns an error.

POST requests are used when data needs to be sent to the server. See the corresponding MDN page for more information

Since no processing of user data is done in the main function, remove methods=["POST"] from its decorator. This will set the allowed methods to GET. (see Flask Docs)

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: Advaith

79662814

Date: 2025-06-12 01:02:16
Score: 1
Natty:
Report link

I am not very familiar with Canvas LMS but based on your description it sounds like they restrict JavaScript for security reasons. as you mentioned CSS pseudo-classes and browser events would normally help in this case but it seems those are not possible given the limitations.

One suggestion I can offer is to use the title attribute for the words you want to display the tooltip for. It is a basic solution with limited styling through inline CSS but it does show a tooltip on hover and might still be useful.

Good luck!

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

79662812

Date: 2025-06-12 01:02:16
Score: 2
Natty:
Report link
final void Function() startQuiz;

remove void here

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

79662803

Date: 2025-06-12 00:41:11
Score: 1
Natty:
Report link

A bit late maybe, but it might help someone: you can simply group by the sort field, so when that sort field is repeated, it will sort and group at the same time.

<p-table 
[value]="data" 
groupRowsBy="index"
rowGroupMode="rowspan" >
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ernando

79662802

Date: 2025-06-12 00:39:10
Score: 4.5
Natty:
Report link

i know this is an older thread and late to a reply but https://www.querystreams.com

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

79662788

Date: 2025-06-12 00:11:04
Score: 2.5
Natty:
Report link

It appears as though there is an option to teardown a provider state here: https://github.com/pact-foundation/pact-net/blob/b3c2fe14a513a886dab165721b156526765690fa/tests/PactNet.Tests/Verifier/ProviderStateOptionsTests.cs#L24

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

79662787

Date: 2025-06-12 00:10:04
Score: 1
Natty:
Report link

Alright, so this is one of those classic Flutter notification quirks that loves to waste your time. You’ve got the zonedSchedule call working just enough to add a pending notification, but then it just chills in limbo like it's waiting for a divine signal that never comes. First off, make sure you’ve actually initialized your timezone — and no, not just initializeTimeZones(), but also setLocalLocation() using flutter_timezone. Without that, tz.local is basically a confused tourist with no map. Put it in main() before anything else runs.

Then we get to Android 12+, where Google decided that exact alarms are dangerous and must be tamed. So yes, even if you slapped <uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM"/> into the manifest, it still does nothing unless the user manually gives your app permission through system settings. You can try triggering Intent(Settings.ACTION_REQUEST_SCHEDULE_EXACT_ALARM) on the native side, but for debugging, just test on Android 11 or below first so you don’t lose your mind.

Also, your scheduling logic seems fine on paper, but remember: if the scheduled time is even a hair too close to DateTime.now(), it might just silently ignore it. Add a buffer, like 30 seconds, just to be safe. That means tz.TZDateTime.from(DateTime.now().add(Duration(seconds: 30)), tz.local), not some half-second offset that gets eaten by execution delay. Oh, and androidAllowWhileIdle: true should always be set if you want it to actually fire when the device is dozing off in a dark corner.

So in summary:

– Initialise the timezone properly, not halfway.

– Android 12+ needs manual permission for exact alarms.

– Always give it a scheduling buffer.

– androidAllowWhileIdle must be set.

– If it works with show() but not zonedSchedule(), then congrats: the problem is timezone, permissions, or scheduling time — pick your poison.

Hope this spares you the descent into madness. Let me know if you want a full working example that’s not possessed.

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

79662785

Date: 2025-06-12 00:09:03
Score: 1.5
Natty:
Report link
# Criando o arquivo naruto_vs_beach.py com o código do jogo

code = """
import pygame
import random

# Inicialização do Pygame
pygame.init()

# Tamanho da tela
WIDTH, HEIGHT = 800, 600
screen = pygame.display.set_mode((WIDTH, HEIGHT))
pygame.display.set_caption("Naruto vs Beach")

# Cores
WHITE = (255, 255, 255)
BLUE = (135, 206, 235)  # Céu
SAND = (194, 178, 128)

# Clock para controlar FPS
clock = pygame.time.Clock()
FPS = 60

# Player (Naruto) settings
player_width, player_height = 50, 70
player_x, player_y = WIDTH // 2, HEIGHT - player_height - 50
player_speed = 5

# Inimigo settings
enemy_width, enemy_height = 50, 70
enemies = []
enemy_speed = 3
spawn_timer = 0

# Ataque settings
attack = False
attack_cooldown = 0

# Font para mostrar texto
font = pygame.font.SysFont(None, 36)

def draw_player(x, y):
    # Corpo do Naruto (retângulo laranja)
    pygame.draw.rect(screen, (255, 140, 0), (x, y, player_width, player_height))
    # Cabeça (círculo)
    pygame.draw.circle(screen, (255, 224, 189), (x + player_width // 2, y - 20), 20)

def draw_enemy(x, y):
    # Corpo do inimigo (retângulo vermelho)
    pygame.draw.rect(screen, (255, 0, 0), (x, y, enemy_width, enemy_height))
    # Cabeça (círculo)
    pygame.draw.circle(screen, (139, 0, 0), (x + enemy_width // 2, y - 20), 20)

def draw_attack(x, y):
    # Representa um ataque (um círculo azul na frente do player)
    pygame.draw.circle(screen, (0, 0, 255), (x + player_width + 20, y + player_height // 2), 15)

def main():
    global player_x, attack, attack_cooldown, spawn_timer

    running = True
    score = 0

    while running:
        screen.fill(BLUE)  # Céu
        pygame.draw.rect(screen, SAND, (0, HEIGHT - 100, WIDTH, 100))  # Praia (areia)

        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                running = False

        keys = pygame.key.get_pressed()

        # Movimento do player
        if keys[pygame.K_LEFT] and player_x > 0:
            player_x -= player_speed
        if keys[pygame.K_RIGHT] and player_x < WIDTH - player_width:
            player_x += player_speed

        # Ataque com espaço
        if keys[pygame.K_SPACE] and attack_cooldown == 0:
            attack = True
            attack_cooldown = 20  # Cooldown de frames para o ataque

        # Atualiza ataque
        if attack:
            draw_attack(player_x, player_y)
            attack_cooldown -= 1
            if attack_cooldown <= 0:
                attack = False
                attack_cooldown = 0

        # Spawn de inimigos
        spawn_timer += 1
        if spawn_timer > 60:  # Spawn a cada 1 segundo
            enemy_x = random.randint(0, WIDTH - enemy_width)
            enemy_y = HEIGHT - enemy_height - 100
            enemies.append([enemy_x, enemy_y])
            spawn_timer = 0

        # Movimenta inimigos
        for enemy in enemies[:]:
            enemy[0] += enemy_speed * (1 if enemy[0] < player_x else -1)  # inimigos vão na direção do player
            draw_enemy(enemy[0], enemy[1])

            # Checa colisão com ataque
            if attack and (player_x + player_width + 5 < enemy[0] < player_x + player_width + 50):
                enemies.remove(enemy)
                score += 1

            # Se inimigo alcançar o player, fim de jogo
            if abs(enemy[0] - player_x) < 40:
                running = False

        draw_player(player_x, player_y)

        # Mostrar score
        score_text = font.render(f"Score: {score}", True, WHITE)
        screen.blit(score_text, (10, 10))

        pygame.display.flip()
        clock.tick(FPS)

    pygame.quit()

if __name__ == "__main__":
    main()
"""

file_path = "/mnt/data/naruto_vs_beach.py"
with open(file_path, "w") as f:
    f.write(code)

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

79662779

Date: 2025-06-11 23:54:00
Score: 0.5
Natty:
Report link
  1. Install miniconda (a minimal version of conda) following instructions in this link. You can do it as a regular user, no sudo needed.

  2. conda init bash and relogin (or source) to add conda to your PATH.

  3. conda create -n env_name python=3.10

  4. conda activate env_name

Now you can install packages with conda install or pip install, but better to stick to one method.

Conda is really cool piece of software - it combines python version management, virtual environment and package installing.

Reasons:
  • Blacklisted phrase (1): this link
  • Has code block (-0.5):
Posted by: hans

79662771

Date: 2025-06-11 23:35:55
Score: 6.5 🚩
Natty: 5
Report link

How would you modify your script to allow multiple range within same sheet to export as multiple PDF pages?

Reasons:
  • Blacklisted phrase (1): How would you
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How would you
  • Low reputation (1):
Posted by: Jordan Xie