79620854

Date: 2025-05-14 06:46:53
Score: 3
Natty:
Report link

The method works. Find the .mp4 extension url's in the page source code and get the relevant url for the video.

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

79620844

Date: 2025-05-14 06:39:51
Score: 0.5
Natty:
Report link

That should do the job (untested):

jobs:
  respond-to-label:
    if: |
      (github.event.action == 'labeled' && contains(github.event.label.name, 'run-special-ci')) ||
      (github.event.action == 'unlabeled' && contains(github.event.label.name, 'not-run-ci'))
    runs-on: ubuntu-latest
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Topper

79620842

Date: 2025-05-14 06:39:51
Score: 3
Natty:
Report link

I found an solution

I created a custom sink this way:

enter image description here

in constructor, I initialize the loggers with AuditTo not WriteTo. AuditTo raises an exception when there is an error.

enter image description here

Finally, I implement a try-catch block in the Emit function

enter image description here

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

79620840

Date: 2025-05-14 06:38:51
Score: 1
Natty:
Report link

It's not possible to directly include one JSON file into another. If you avoid duplication, your best bet is probably to have appsettings.json and appsettings.<env>.json. The final config is basically a sum of these two. If there are duplicates, appsettings.<env>.json has higher priority.

.NET config is not limited to .json files. It uses, among other things, environment vars. So you might try your luck wiht dontenv files

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

79620833

Date: 2025-05-14 06:32:49
Score: 2.5
Natty:
Report link

Confirm you are not using a string "False" instead of a Boolean to disable Django debug mode.

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

79620831

Date: 2025-05-14 06:30:49
Score: 3.5
Natty:
Report link
from airflow import models
dag_bag = models.DagBag()
for dag in dag_bag.dags.values():
    print(dag.schedule_interval, dag.dag_id)

I also found this dag_id property useful. It prints names of DAGs. Nevertheless I haven't found dags which I created. Is there any other Object than DagBag which contain another set of DAGs or all DAGs for the server where Airflow is running?

Reasons:
  • Blacklisted phrase (1): Is there any
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: vitorek

79620829

Date: 2025-05-14 06:29:48
Score: 2
Natty:
Report link

Thanks comments.

The issue was that I built the project using the terminal command cmake .., and used a copied configuration for debugging.

I removed the previously configured .vscode folder and used the CMake plugin in VS Code to build and compile, which solved the problem.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Windy Green

79620828

Date: 2025-05-14 06:26:47
Score: 1.5
Natty:
Report link

The comments made me realize the problem only occurs on my machines, which all have high contrast mode enabled. Following this lead I found an MSDN article hinting at the culprit:

https://learn.microsoft.com/en-us/windows/win32/w8cookbook/high-contrast-mode

Theming is not enabled in both the non-client and client areas of apps in high-contrast themes. It is also not enabled in apps that do not contain a Windows 8 <supportedOS> tag in their app manifest and that draw in the non-client area of a window using the DwnIsCompositionEnabled() API. The entire app renders in the high-contrast mode of the classic theme.

Once I include a manifest declaring support for Windows 8, the modern dialog appears.

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

79620823

Date: 2025-05-14 06:24:47
Score: 1
Natty:
Report link

Had the same issue on Samsung devices — predictive text was blocking my input from updating properly. What fixed it for me was adding these attributes to the input

autocomplete="off"
autocorrect="off"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: mhamad sarkawt

79620819

Date: 2025-05-14 06:22:46
Score: 2
Natty:
Report link

Kate 22.12.3

Hamburger menu: Tools/External tools/Tools/JSON format full file.

Also there a options under Menu/Tools/External tools/Configre and choose JSON format full file:

enter image description here

To put that on button:

Hamburger menu: Settings/Configure toolbar,
choose in Toolbar: Maintoolbar <externaltools>
find in available action JSON format ... and double click it.

Result

enter image description here

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

79620814

Date: 2025-05-14 06:16:44
Score: 3
Natty:
Report link

use session maker to create a session

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

79620813

Date: 2025-05-14 06:15:44
Score: 0.5
Natty:
Report link

Tailwind CSS can speed up initial development by providing a large set of pre-designed utility classes. For large projects, it can improve maintainability through consistent styling and a shared vocabulary. Responsiveness is handled via breakpoint modifiers within the class names, and custom components are typically created using Tailwind's configuration to define custom styles and then applying those utility classes in your HTML. But the utility classes can make HTML look denser than plain CSS.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can
  • Low reputation (0.5):
Posted by: Superman

79620807

Date: 2025-05-14 06:10:43
Score: 3.5
Natty:
Report link

Turns out the issue was I was using Supabase service key but actually needed to use ANON KEY if we are going to enable RLS.

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

79620805

Date: 2025-05-14 06:08:42
Score: 2
Natty:
Report link

Yes, Windows Search Indexing lets you exclude specific folders or file types via Indexing Options, but it doesn’t support pattern-based rules like wildcards. For more control, PowerShell or third-party tools can help. In enterprise environments, solutions like Sangfor Endpoint Secure offer more advanced indexing and data visibility controls.

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

79620802

Date: 2025-05-14 06:05:41
Score: 1.5
Natty:
Report link

Inode metadata is a lot of the stuff you can see in stat. For example, you can trigger this by changing the modification date of a file with touch.

That said, there are other things that are part of inode metadata that have their own event. Owner and group, for example.

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

79620800

Date: 2025-05-14 06:01:40
Score: 0.5
Natty:
Report link

Quick and dirty workaround using FuncFormatter and MultipleLocator

import pandas as pd
import matplotlib.pyplot as plt
from datetime import timedelta, datetime

from matplotlib.ticker import MultipleLocator, FuncFormatter

NS_PER_SEC = 1000000000 # pandas.Timedelta are stored as nanoseconds internally
tick_interval = timedelta(minutes=15)

# Example DataFrame
data = {
    "runtime": [timedelta(hours=2, minutes=20), timedelta(minutes=30, seconds=45)],
    "date": [datetime(2022, 10, 1), datetime(2023, 10, 2)],
}
df = pd.DataFrame(data)

def pd_timedelta_formatter(x, pos):
    td = timedelta(seconds=x / NS_PER_SEC)
    return str(td)

fig, ax = plt.subplots()
ax.yaxis.set_major_formatter(FuncFormatter(pd_timedelta_formatter))
ax.yaxis.set_major_locator(MultipleLocator(tick_interval.total_seconds() * NS_PER_SEC))
ax.plot(df["date"], df["runtime"])
plt.show()

result

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

79620797

Date: 2025-05-14 05:59:40
Score: 2.5
Natty:
Report link

the import wasn't importing everything from models.py

from model import *

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

79620796

Date: 2025-05-14 05:56:39
Score: 2
Natty:
Report link

When I use ssh to connect to my win11 laptop wsl2 from my mac, I follow this tutorial https://github.com/ajithmoola/wsl-ssh-guide.

When I do ssh [username]@[ip address] -p 2222, It turns out connection closed by [my ip address] port 2222. I restart my wsl2 and try many times, this time I got WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!

I delete .ssh/known_hosts and .ssh/known_hosts.oldboth my mac and win11 laptop , then everything went well.

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Has code block (-0.5):
  • Starts with a question (0.5): When I useto
  • Low reputation (1):
Posted by: LIMINGNING

79620789

Date: 2025-05-14 05:48:37
Score: 0.5
Natty:
Report link

Android WebView (Chromium-based)

iOS WebView (WKWebView)

Source:

  1. Android WebView Cache Limits:

  2. iOS WKWebView Cache Limits:

  3. Service Workers and Cache API:

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

79620788

Date: 2025-05-14 05:48:37
Score: 2.5
Natty:
Report link

C++ is indeed platform independent, it is one of the language taken by Microsoft for the .Net Framework, which converts it into the bytecode by JIT to further convert into machine language based on the target platform.

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

79620787

Date: 2025-05-14 05:45:36
Score: 3
Natty:
Report link

If this error is shown after you have added Firebase CrashAnalytics, then you can select 'Yes' and choose Analytics as the option.

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

79620785

Date: 2025-05-14 05:43:36
Score: 1.5
Natty:
Report link

why you didnt ;end ?
the answer is in `end`

Try use this as reference :

intent://<action-Path>#Intent;scheme=<scheme>;package=<Package-Name>;S.browser_fallback_url=https://play.google.com/store/apps/details?id=<Package-Name>;end

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): why you
  • Low reputation (0.5):
Posted by: XMMR12

79620783

Date: 2025-05-14 05:41:35
Score: 3
Natty:
Report link

here's the answer convert the plaintext to html in order for the shortcut to be enabled haha shift + ! will do.

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

79620782

Date: 2025-05-14 05:41:35
Score: 1.5
Natty:
Report link

Select column, go to Data -> Text To Columns -> Next -> Next -> Choose "Text" in a third wizard step -> Finish

Result:

enter image description here

enter image description here

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

79620775

Date: 2025-05-14 05:32:33
Score: 1
Natty:
Report link

I didn't encounter a crash in the following two cases:

Setting minSdkVersion to 24 or higher

Explicitly overriding the default method in the class that implements TestListener

In addition to those two, as I learned from this answer, enabling minifyEnabled also resolved the issue.

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

79620770

Date: 2025-05-14 05:28:33
Score: 1
Natty:
Report link

The key difference between Azure Virtual Machines (VMs) and Windows Virtual Desktop (now called Azure Virtual Desktop or AVD) lies in their purpose, management model, and user experience. Here's a clear comparison:

Features Azure VM Azure Virtual Desktop (AVD)
Type IaaS (Infrastructure) DaaS (Desktop virtualization)
OS Any (Windows, Linux, etc.) Windows 10/11 multi-session, Windows Server
User Experience Like managing a standalone server Seamless virtual desktop/app experience
Multi-user capability No (1 user per VM unless server OS) Yes (multi-session Windows 10/11
Management Overhead Higher Lower
Best For Custom workloads, apps, and servers Remote desktops, virtual apps
Licensing Requires OS licensing Includes Windows 10/11 access via Microsoft 365 licenses
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Brianne Collins

79620767

Date: 2025-05-14 05:21:31
Score: 0.5
Natty:
Report link

showPicker() works on Chrome 135.0.7049.115

It gets blocked on JSFiddle due to browser security and iframe usage. But I can guarantee this works on my personal website on the current version of Chrome.

https://jsfiddle.net/boge0xym/

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

79620747

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

It's totally normal to wonder about this (I do too back then), you're thinking like a developer who's growing 👏

Bootstrap and Tailwind both have their own place and benefit.

Bootstrap gives you prebuilt components fast, great for MVPs or internal tools. While Tailwind gives you more control and flexibility, and it scales better in large or custom UIs.

But they both get the job done.

If you're focused on learning modern frontend practices and building maintainable UIs, I'd recommend giving Tailwind a try. It has a bit of a learning curve, but it's worth it.

That said, use what helps you ship and learn. What matters is delivering and what makes you employable!

There’s no one-size-fits-all “best” tool, just pick based on your project and what you're trying to get better at.

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

79620746

Date: 2025-05-14 05:02:27
Score: 1
Natty:
Report link

To make code platform-independent, use languages like Java or .NET's Mono that utilize bytecode and runtime environments (like the JVM or Mono runtime) to translate code to machine code specific to the target platform. Additionally, using web technologies (HTML, CSS, JavaScript) or cross-platform frameworks like React Native or Flutter can also enable platform independence. Here's a more detailed explanation:

  1. Bytecode and Virtual Machines: Java: Java compiles code into bytecode, a platform-independent intermediate language. The JVM then interprets the bytecode and translates it into machine code specific to the underlying operating system. .NET Mono: Similar to Java, Mono, an open-source implementation of the .NET framework, also utilizes bytecode and a runtime environment to achieve platform independence.
  2. Cross-Platform Languages and Frameworks: React Native: This framework allows developers to use JavaScript and React to build mobile applications for iOS and Android platforms, reducing development time and enabling cross-platform deployment. Flutter: A UI toolkit developed by Google, Flutter enables the creation of native applications for multiple platforms (iOS, Android, web) using the Dart programming language. Web Technologies (HTML, CSS, JavaScript): Hybrid app development using web technologies allows for building applications that can run on different platforms by leveraging web browsers as the runtime environment.
  3. WebAssembly (Wasm): Wasm: A bytecode format that enables web browsers to run applications written in various programming languages (like C++, Rust) with near-native performance.
  4. Considerations for Platform Independence: Platform-Specific Features: Avoid using platform-specific APIs or features in your code. Use common interfaces or abstractions that can be implemented differently on each platform. Consistent Data Types: Ensure that the sizes and interpretations of data types are consistent across all platforms. If necessary, define custom types to handle potential size differences. Build Tools: Utilize cross-platform build tools (like CMake) to simplify the build process across different environments. CMake, however, primarily focuses on the build process, not the code itself. In summary: Platform independence is achieved by using languages or technologies that translate source code into a platform-neutral intermediate representation (like bytecode) and then use a runtime environment to translate that into machine code specific to the target platform.
Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ankit Saxena

79620738

Date: 2025-05-14 04:52:24
Score: 3
Natty:
Report link

health and environmental

benefits of reducing

meat consumption. It's

a way to

nourish the body. Distance bataye

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

79620720

Date: 2025-05-14 04:26:19
Score: 5.5
Natty:
Report link

THANK YOU THAT'S AWESOME, I find what you suggest very suitable for me

Reasons:
  • Blacklisted phrase (0.5): THANK YOU
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ana Maria

79620718

Date: 2025-05-14 04:20:18
Score: 3
Natty:
Report link

If you have a similar problem and have upgraded from V1 to V2 then you need to add the complete HTTP URL, as per the GitHub repository https://github.com/bahmutov/start-server-and-test#use

# v1
$ "ci": "start-server-and-test test-server :4000 test",
# v2
$ "ci": "start-server-and-test test-server http://localhost:4000 test",
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): have a similar problem
  • Low reputation (0.5):
Posted by: SteveC

79620717

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

To handle NullPointerExceptions in Java, always check if an object is null before calling its methods. For example: if (myObject != null) { myObject.doSomething(); }. Alternatively, use Java 8's Optional class to avoid nulls. Avoid using try-catch for NullPointerException as control flow, as it's considered bad practice.

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

79620715

Date: 2025-05-14 04:14:16
Score: 0.5
Natty:
Report link

You can compose classes together in css-modules using the composes property. For me this is the preferred option in 2025 because it keeps the composition of classes together in one place and also results in easy to read JSX with no extra deps.

See https://developer.adobe.com/commerce/pwa-studio/guides/general-concepts/css-modules/#creating-and-composing-css-modules for how to use it.

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

79620714

Date: 2025-05-14 04:13:16
Score: 5
Natty: 4
Report link

i am also created a form using cbi in openwrt now I want that on save and apply it should run some init.d script files how we can do that
because I tried with fs.exec that Is not working tried with L.resolvedefault that doesn't worked

after form submit user click on save and apply how we can call our scrip ?

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Dikshant Chitara

79620712

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

The Scene Builder’s snapping behavior can indeed be very frustrating when we're aiming for a precise alignment of UI elements. But, unfortunately there is no built-in option to turn off the snapping feature—it’s a known limitation.

The best workaround is to avoid using freeform layout panes like AnchorPane or Pane for complex layouts.

Instead, consider using structured layout containers like:

If you must use AnchorPane, it's better to set anchor constraints (like top, bottom, left, and right) directly in the Layout panel, rather than dragging elements, which can cause unpredictable resizing especially near the right edge, as you've experienced. Manually entering the layout values (X/Y or anchors) might seem tedious, but it ensures precision and avoids Scene Builder's snapping issues.

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

79620700

Date: 2025-05-14 03:47:09
Score: 0.5
Natty:
Report link

Use Python tool six : https://pypi.org/project/six/
This is the documentation: https://six.readthedocs.io/

It will help you with functions for making it easier to migrate across Python 2 and Python 3, considering you want to write Python code that is compatible on both versions.

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

79620696

Date: 2025-05-14 03:44:08
Score: 2
Natty:
Report link

The data source mappedExercise of your SetList looks suspicious, you are assigning a new random id for the set item in each render, which may cause the old SetList Item to be demounted after updating the data store.

//... ExerciseItem 

const mappedExercise = {
    ...exercise,
    sets: exercise.sets.map(set => ({
        ...set,
        id: uuid.v4() // this id should be consistent in renders
    }))
};

By the way, the mapping seems to be redundant here as you have already assigned a unique id in adding sets. Maybe you can keep the id by use exercise.sets directly?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Alpenmilch

79620695

Date: 2025-05-14 03:42:08
Score: 1.5
Natty:
Report link

You can integrate HAPI into Spring Boot by doing the following:

  1. Create a HapiHttpMessageConverter to serialize/deserialize FHIR Resources

  2. Create a HapiMessageConverterConfigurer to register the converter

  3. Register the HapiMessgeConverterConfigurer with the Application Contex

The enclosed github project also configures Swagger so that it can represent HAPI resources.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Andrew Hall

79620685

Date: 2025-05-14 03:24:04
Score: 3
Natty:
Report link

It seems that your model or some layer's name is "None". try to specify your model a name when you compile model, or check ever layer's name. thanks.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: YE Chen

79620682

Date: 2025-05-14 03:20:02
Score: 1
Natty:
Report link
"C:\Users\???\AppData\Roaming\jupyter\.Token"

Windows user could try the above file.

Reasons:
  • Blacklisted phrase (1): ???
  • Low length (1.5):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Robin Qiu

79620670

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

It work with me like that. You can try

const fetchAllAssets = async () => {
        const assetQuery = {
            fields: ['id', 'asset_id', 'title', 'pex_copies'],
            filter: {
                pex_copies: {
                    _nnull: true
                }
            }
        }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hau La

79620661

Date: 2025-05-14 03:05:59
Score: 3.5
Natty:
Report link

Why ExMethodError Fails?

public IList<IList<T>> ExMethodError() {
    return new List<List<T>>(); // ERROR
}

You're trying to return List<List<T>> where the return type is IList<IList<T>>.

This looks superficially okay, because List<T> is direved from IList<T>.

But here's the key:

Generic interfaces like IList<T> are invariant.

That means:

List<T> implements IList<T>, but List<List<T>> does not implement IList<IList<T>>.

Because variance doesn't apply here.

It will work in this way


// Only works with interfaces that are covariant, like IEnumerable<T>
public IEnumerable<IEnumerable<T>> ExMethodWithCovariance() {
    return new List<List<T>>(); // This works!
}

For further assitance please check this link

Reasons:
  • Blacklisted phrase (1): please check this
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): check this link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why
  • Low reputation (0.5):
Posted by: Muhammad Zeeshan

79620657

Date: 2025-05-14 02:53:57
Score: 1.5
Natty:
Report link

\> How do I assign permission for the new Windows app in Azure?

The error you encountered indicates that the user is not part of the **Desktop Application Group** in Azure Virtual Desktop.

To resolve this issue, **users must be assigned to the application group** for the resources to appear in the Windows app. Follow the official guide: [Deploy Azure Virtual Desktop](https://learn.microsoft.com/en-us/azure/virtual-desktop/deploy-azure-virtual-desktop?tabs=portal-session-host-configuration%2Cportal-standard%2Cportal&pivots=host-pool-standard).

To assign users to the application group, you also need the `Microsoft.Authorization/roleAssignments/write` permission on the application group. Built-in RBAC roles that include this permission are [User Access Administrator](https://learn.microsoft.com/en-us/azure/role-based-access-control/built-in-roles#user-access-administrator) and [Owner](https://learn.microsoft.com/en-us/azure/role-based-access-control/built-in-roles#owner).

If you have not created any host hostpool, you need to first create and configure a host pool. Follow the link: https://learn.microsoft.com/en-us/azure/virtual-desktop/configure-host-pool-personal-desktop-assignment-type?tabs=azure%2Cazure2#configure-direct-assignment for more details.

If the user is not part of the group, they will see the error:

**"Your system administrator hasn't set up any resources for you yet."**

Reasons:
  • Blacklisted phrase (1): How do I
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Venkat V

79620650

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

The short version is that git doesn't optimize at that level, at the current scale your project is at.

As you make more and more commits and your repo gets larger, at some point git will switch to "packed" format in .git/objects, and packed format has some provisions for storing essentially diffs of files rather than storing a complete copy of the file.

But for now, git is just using individual blob files under .git/objects. Each blob contains the contents of one of your working tree files at the time you did git add, in zlib compressed format.

The way git stores things is still pretty space-efficient, even with one blob file for each version of a file. Commits share blob files, so if you make a change to one file and make a new commit, that new commit will have a tree structure that represents your working tree at the time of the commit, and that new commit's tree structure will share all but one blob file -- the one you changed -- with its parent commit. In addition, the two commits share most of the git tree objects (which git uses to represent directory listings) between them.

For more info about the packed format, check out:
https://git-scm.com/docs/pack-format

I found this blog post interesting and readable:
https://github.blog/open-source/git/gits-database-internals-i-packed-object-store/

Reasons:
  • Blacklisted phrase (1): this blog
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Steven J Owens

79620647

Date: 2025-05-14 02:38:53
Score: 1
Natty:
Report link

To expand a Floating Action Button (FAB) into an EditText in Android (like a transformation animation), you'll need to:

  1. Animate the FAB expansion

  2. Swap the FAB with an EditText (or show it)

  3. Optionally include a container for better control (like a FrameLayout or ConstraintLayout)

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

79620646

Date: 2025-05-14 02:37:53
Score: 2
Natty:
Report link

Aftering looking into the standard. I found that the behavior is guaranteed.

The relevant steps are:

10.5.15 ProxyCreate
...
7. Set P.[[ProxyHandler]] to handler.

and

10.5.8 [[Get]] ( P, Receiver )
...
3. Let handler be O.[[ProxyHandler]].

Thus it's guaranteed that modifying the handler object will affect the proxy.

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

79620643

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

In your gradle.properties put this line kotlin.native.cacheKind=none

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

79620638

Date: 2025-05-14 02:26:51
Score: 2.5
Natty:
Report link

Inside of func _physics_process(delta) you have the following section:

    var input_dir = Vector2.ZERO
    if mouse_captured:
        input_dir = Input.get_vector("ui_left","ui_right","ui_up","ui_down")
    var cam_basis = Basis(Vector3.UP, yaw)
    var direction = (cam_basis * Vector3(input_dir.x, 0, input_dir.y)).normalized()
    if direction != Vector3.ZERO:
        velocity.x = direction.x * SPEED
        velocity.z = direction.z * SPEED
    else:
        velocity.x = move_toward(velocity.x, 0, SPEED)
        velocity.z = move_toward(velocity.z, 0, SPEED)

I believe this means that you are requiring direction to be equal to Vector3(0,0,0) in order for the velocity of the CharacterBody3D to move towards 0 (i.e. stop). This is likely the cause of the character continuously moving as the input is likely to equal 0 often during regular mouse movement.

Could you describe the character and intended control/movement? Why was this initially implemented to always move the character?

Happy to try and help with more context!

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you describe
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Jake6724

79620637

Date: 2025-05-14 02:22:50
Score: 2
Natty:
Report link

The device is provided to browser by operating system. There can be any drivers which can make a "webcam" with any content they decide. Nobody will know what is it, neither system, nor browser and of course not any script inside browser.

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

79620630

Date: 2025-05-14 02:05:46
Score: 2.5
Natty:
Report link
<!DOCTYPE html>
<html>
<head>
  <script>
    // The value below is injected by flutter build, do not touch.
    // var serviceWorkerVersion = null;
    // TODO: Replace this with your own code to determine which renderer to use.
    const useCanvasKit = true;
    const config = {
      renderer: useCanvasKit ? "canvaskit" : "skwasm",
    };
  </script>
  <!-- This script adds the flutter initialization JS code -->
  <script src="flutter.js" defer></script>
</head>
<body>
  <script>
    window.addEventListener('load', function(ev) {
      // Initialize buildConfig before loading Flutter
      if (!window._flutter) {
        window._flutter = {};
      }
      _flutter.buildConfig = {
        "engineRevision": null,
        "builds": [
          {
            "compileTarget": "dart2js",
            "renderer": "canvaskit",
            "mainJsPath": "main.dart.js"
          }
        ]
      };
      
      // Then load Flutter
      _flutter.loader.load({
        config: config,
        // serviceWorkerSettings: {
        //   serviceWorkerVersion: serviceWorkerVersion,
        // },
        onEntrypointLoaded: async function(engineInitializer) {
          const appRunner = await engineInitializer.initializeEngine();
          await appRunner.runApp();
        }
      });
    });
  </script>
</body>
</html> 

Bigwigs, here is my index.html, but it still meets the warnings. do you guys have any idea about this issue?

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Wallace Huang

79620623

Date: 2025-05-14 01:51:44
Score: 3
Natty:
Report link

Oh óh óh oh

Yesterday copycat and lending it 8⁸888⁸88

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

79620601

Date: 2025-05-14 01:10:36
Score: 3.5
Natty:
Report link

This was caused by shallow clone which was the default setting for the auto checkout script.

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

79620597

Date: 2025-05-14 01:02:35
Score: 2
Natty:
Report link

ensure you're actually retrieving a SID via

$win32account = Get-WmiObject @getparams
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: JoeC

79620581

Date: 2025-05-14 00:43:30
Score: 0.5
Natty:
Report link
# Connect Outlook, MAPI Namespace
$outlookCom = New-Object -comObject Outlook.Application
$Namespace = $outlookCom.GetNamespace('MAPI')

# Select 'Inbox' folder for default account
$InboxFolder = $Namespace.GetDefaultFolder([Microsoft.Office.Interop.Outlook.OlDefaultFolders]::olFolderInbox)


#Alternate - Select Email Account, Select Folder
#Using 'Inbox' folder as example
$thisAccount = $Namespace.Folders | Where-Object {$_.Name -match '^MyEmailAccount'}
$targetFolder = $thisAccount.Folders | Where-Object {$_.Name -match '^inbox'}

#Get actual mail items from the target folder + view the available methods+properties
$targetFolder.Items() | Select-Object -First 1 | Get-Member

You are looking for "the body and receivers" -
There are a couple ways to get that. You'll need to test and see what gives you the data you want:

Name                              MemberType Definition
----                              ---------- ----------
Body                              Property   string Body () {get} {set}
CC                                Property   string CC () {get} {set}
ReceivedByName                    Property   string ReceivedByName () {get}
Recipients                        Property   Recipients Recipients () {get}
To                                Property   string To () {get} {set}

Note - some of these are returned as another ComObject, not a string, and require more effort to view and query. These need to be separately accessed and expanded - see example:

# View multiple properties, including 'Recipients' from the first item found
$targetFolder.Items()[1] | Select-Object -Property SentOn,Subject,Recipients | Format-List

  SentOn     : 5/13/2025 1:23:45 PM
  Subject    : Important Test Email
  Recipients : System.__ComObject


# Trying to 'expand' 'Recipients' property returned as a ComObject
$targetFolder.Items()[1] | Select-Object -ExpandProperty Recipients

  Application : Microsoft.Office.Interop.Outlook.ApplicationClass
  Class       : 17
  Session     : Microsoft.Office.Interop.Outlook.NameSpaceClass
  Parent      : System.__ComObject
  Count       : 1

# Accessing 'Recipients' by dot
$targetFolder.Items()[1].Recipients

  Application           : Microsoft.Office.Interop.Outlook.ApplicationClass
  Class                 : 4
  Session               : Microsoft.Office.Interop.Outlook.NameSpaceClass
  Parent                : System.__ComObject
  Address               : AddressGoesHere
  AddressEntry          : System.__ComObject
  AutoResponse          :
  DisplayType           : 1
  EntryID               : IDGoesHere
  Index                 : 1
  MeetingResponseStatus : 0
  Name                  : ThisIsTheRecipientsList

Sources (I've had to reference the MSDN one for years):

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

79620580

Date: 2025-05-14 00:42:30
Score: 0.5
Natty:
Report link

I found the answer to this problem. If someone else encounters this problem I was having an issue with a mismatch in my serialize and deserialize functions for passport.js. In my final setup I ended up implementing postgres so this is what my final setup looked like:

passport.serializeUser((user, done) => {
  // Storing just the user.id here
  done(null, user.id);
});

passport.deserializeUser((id, done) => {
   return done(null, id);
});

The important parts are what you pass in to each of the functions. Since I am "exporting" id from serialize it is important that I "import" id in deserialize, as well as "export" it from deserialize (at least for my setup)

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

79620579

Date: 2025-05-14 00:38:29
Score: 2.5
Natty:
Report link

It turns out that the font used is responsible for setting this kind of thing. The images I posted were rendered with Cambra Math, the default math font on windows. I believe this is a bug (or a very poor stylistic choice) with Cambria Math.

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

79620578

Date: 2025-05-14 00:38:29
Score: 2
Natty:
Report link

Thanks to @jarmod CloudTrail tip, I was able to accomplish what I was trying to do.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Deny",
            "Principal": "*",
            "Action": "s3:*",
            "Resource": [
                "arn:aws:s3:::test-bucket",
                "arn:aws:s3:::test-bucket/*"
            ],
            "Condition": {
                "StringNotLike": {
                    "aws:userId": [
                        "ROLE_ID:user1",
                        "ROLE_ID:user2"
                    ]
                }
            }
        }
    ]
}

where ROLE_ID is the ID of the role the users assume when logging into the account. I had to use the API aws iam get-role call with AWS CLI in order to get the ROLE_ID.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @jarmod
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Gabriel

79620574

Date: 2025-05-14 00:33:28
Score: 0.5
Natty:
Report link

Usually when you "automatically" run fun() by importing a script, any code within the main block (if __name__ == "__main__":) will be executed when the script is imported.

Now when you run fun() "by hand", you are basically calling the function from the interpreter to another script.

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

79620569

Date: 2025-05-14 00:27:26
Score: 2
Natty:
Report link

Android xiaomi A11

ADB

KB


76543

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

79620568

Date: 2025-05-14 00:26:25
Score: 0.5
Natty:
Report link

Using "When there are messages in a queue (V2)" as seen above, but I was able to get to the dequeue count by Creating a Variable of type string, then hardcoding the Value to:

triggerBody()?['DequeueCount']
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Eric F

79620565

Date: 2025-05-14 00:25:25
Score: 1.5
Natty:
Report link

I ended up clearing launch.json file and redoing "Run on Cloud Run Emulator" command in vscode.

I entered the key:value pairs in Environment Variables section in "Advanced Service Settings"

Screenshot shows a text box for environment variables to store them as key:value pairs, one per line.

This added an env section in launch.json with the values.

            "service": {
                "name": "abc-cloud-run",
                "containerPort": 8080,
                "env": [
                    {
                        "name": "PORT",
                        "value": "8080"
                    },
                    {...}
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: knotmine

79620564

Date: 2025-05-14 00:24:25
Score: 1.5
Natty:
Report link

Also check the MSBuild version set in File | Settings | Build, Execution, Deployment | Toolset and Build ( jetbrains://Rider/settings?name=Build%2C+Execution%2C+Deployment--Toolset+and+Build ), for some reason I had to change mine from one in the C:\Program Files\JetBrains\ folder to one in C:\Program Files\dotnet\sdk\ for it to load my project.

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: JamesG3D

79620563

Date: 2025-05-14 00:23:24
Score: 1
Natty:
Report link

Paste this Button to your Buttonbar on an empty Space:

TOTALCMD#BAR#DATA
wt.exe -d
"%P\"
%COMMANDER_EXE%,2

In the last line you can give an example of for what this Button is, like 'open current dir in Windows Terminal'.

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

79620561

Date: 2025-05-14 00:19:23
Score: 0.5
Natty:
Report link

as i found media files you want were packed in blocks with:

https://github.com/shaka-project/shaka-packager
which i found in request responce for first media file part defined by byte range in url parameters of request
url found in file with byte reader

and also if you sort requests in dev tools by name you will see that page tries to download parts of media files by different byte range requests list in page

so i think if you read documentation in shaka-packager then you will found how to get all byte ranges for full file and how to convert blocks to one file or you can watch full video and copy all requests for its parts and found way to convert them to one file
(I dont know how, but I think this information which I found will help you)

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

79620549

Date: 2025-05-13 23:56:18
Score: 0.5
Natty:
Report link

i did something like this with parquet files

source_base_path = "s3://BUCKET/DB/TABLE/"
source_file_path = ["s3://BUCKET/DB/TABLE/*"]
df=spark.read.option("basePath",source_base_path).parquet(*source_file_path)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jonatas Delatorre

79620541

Date: 2025-05-13 23:45:16
Score: 1
Natty:
Report link

In my case I've copied the x86 folder (which only contains infverif.dll)

from: C:\Program Files (x86)\Windows Kits\10\build\10.0.22621.0\bin\x86
to: C:\Program Files (x86)\Windows Kits\10\build\bin\x86

It seems that WDK 10.0.26100 probably removed it.

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

79620534

Date: 2025-05-13 23:25:12
Score: 2.5
Natty:
Report link

What I ended up doing was deleting all migrations, and then running makemigrations as if for the first time. I had to specify my app, otherwise it said "No changes detected".

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What I
Posted by: Nickolai

79620526

Date: 2025-05-13 23:09:08
Score: 2.5
Natty:
Report link

I don't think so. shuffle=True is used to shuffle the order of samples in the training set so the model won't overfit on specific sample orders. But if you have time series data, shuffle=True will mess with the training because the model actually needs to learn the order in this case.

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

79620521

Date: 2025-05-13 22:59:06
Score: 3
Natty:
Report link

Make sure the password is strong minimum Password@123.

this fix mine

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

79620516

Date: 2025-05-13 22:55:05
Score: 4
Natty: 4.5
Report link

Have you set the board correctly? Go to the tools menu. You should see "Board <ESP32>". If you have not selected the ESP32 as your target then it won't have the correct include files available. You may have to go into the board manager and install the correct board to match your hardware. What kind of ESP32 board do you have?

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

79620511

Date: 2025-05-13 22:49:03
Score: 1.5
Natty:
Report link

Replit usually creates monorepo structures for full-stack applications. This means your client (React or Next.js) and server (Express/Node.js) code live in the same repository but in separate folders.

my-app/

├── client/ # Frontend (React, Next.js)

├── server/ # Backend (Node.js, Express)

├── package.json # Optional, shared config

└── .env # (Optional, shared env)

Example repo https://github.com/CotNeo/playable-factory

Reasons:
  • Contains signature (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Cotneo

79620510

Date: 2025-05-13 22:48:03
Score: 0.5
Natty:
Report link

in my case, I was using Tamagui with the expo and based on @AquaSidiscool 's answer, I just needed to add a face config for my font in the Tamagui config

here is my code:

(Be careful that you should add all of the options in the face config object especially "bold" and "normal")

export const tamaguiConfig = createTamagui({
    ...defaultConfig,
    themes,
    fonts: {
        ...defaultConfig.fonts,
        body: {
            family: 'MyCustomFont',
            size: {
                0: 10,
                1: 12,
                2: 14,
                3: 15,
                4: 16,
                5: 17,
                6: 18,
                7: 20,
                8: 24,
            },
            lineHeight: {
                1: 17,
                2: 22,
                3: 25,
            },
            weight: {
                1: '100',
                3: '300',
                4: '400',
                6: '600',
            },
            letterSpacing: {
                4: 0,
                8: -1,
            },

            // for native only, alternate family based on weight/style
            face: {
                // pass in weights as keys
                normal: { normal: 'MyCustomFontBold' },
                bold: { normal: 'MyCustomFontBold' },
                300: { normal: 'MyCustomFont' },
                500: { normal: 'MyCustomFontMedium' },
                700: { normal: 'MyCustomFontBold' },
            },
        }
    }
})

export default tamaguiConfig

export type Conf = typeof tamaguiConfig

declare module 'tamagui' {
    interface TamaguiCustomConfig extends Conf {
    }
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @AquaSidiscool
  • Low reputation (1):
Posted by: mojtaba farhadi

79620509

Date: 2025-05-13 22:46:02
Score: 8
Natty: 7
Report link

can someone please help me make a python script that can get the discord invite link just through the gild id "1241115476021481582"

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can someone please help me
  • Low reputation (1):
Posted by: chabz

79620506

Date: 2025-05-13 22:45:02
Score: 3
Natty:
Report link

Are you a student, beginner developer, or someone working on an academic PHP project? We’ve compiled a powerful collection of free PHP calculators online – complete with source code. These ready-made tools are perfect for learning PHP, customizing for your own needs, or using directly in websites and applications. Here’s a curated list of our free PHP calculator projects, all available for instant download:

https://www.coderobotics.com/product/simple-loan-calculator

https://www.coderobotics.com/product/salary-paycheck-calculator

https://www.coderobotics.com/product/property-loan-calculator

https://www.coderobotics.com/product/interest-loan-calculator

https://www.coderobotics.com/product/auto-loan-calculator

https://www.coderobotics.com/product/401k-savings-calculator

https://www.coderobotics.com/product/simple-bmi-calculator

More details and download link - https://www.coderobotics.com/product-category/calculators

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Narayanamoorthy Sasikumar

79620505

Date: 2025-05-13 22:43:01
Score: 3
Natty:
Report link

The solution as provided by Willeke was to simply ensure that ClipsToBounds is set, and that it stays set. For some reason it gets reset after the constructor completes.

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

79620490

Date: 2025-05-13 22:16:55
Score: 1
Natty:
Report link

If you want use this sizes in you composables you should use density alongside containerSize

val containerSize = LocalWindowInfo.current.containerSize
val density = LocalDensity.current.density

val screenHeight = containerSize.height.dp / density
val screenWidth = containerSize.width.dp / density
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: zalmek

79620486

Date: 2025-05-13 22:12:54
Score: 1
Natty:
Report link

Weird issue that worked for me: I had two .csproj files that were marked as read-only and so VS and Unity weren't syncing properly. As soon as I made all .csproj files writeable, it immediately worked.

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

79620482

Date: 2025-05-13 22:06:53
Score: 2
Natty:
Report link

Can you not do this?

HideSoftInputOnTapped="True"
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             ios:Page.UseSafeArea="False"
             NavigationPage.HasNavigationBar="False"
             xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
             xmlns:ios="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific;assembly=Microsoft.Maui.Controls"
             HideSoftInputOnTapped="True"
             x:Class="EarthPlatMaui.MainPage">
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can you not
  • Low reputation (0.5):
Posted by: Tim Maxey

79620479

Date: 2025-05-13 22:03:52
Score: 0.5
Natty:
Report link

Spring's default scheduler uses a single-threaded executor, and unhandled exceptions can kill that thread. Once the thread dies, the @Scheduled task stops running entirely and If it was the only running thread, and Spring didn’t have anything else to do, it may shut down the application context.

If you don't want to do try catch and still want the app to run you can override Spring Boot’s default scheduler by defining our own and customize the error handler to print the exception.

Just add the below code which will override the scheduler.

SchedulerConfig.java

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;
import org.springframework.scheduling.TaskScheduler;

@Configuration
public class SchedulerConfig {

    @Bean
    public TaskScheduler taskScheduler() {
        ThreadPoolTaskScheduler scheduler = new ThreadPoolTaskScheduler();
        scheduler.setPoolSize(1); 
        scheduler.setThreadNamePrefix("scheduled-task-");

        //custom error handler
        scheduler.setErrorHandler(t -> {
            System.err.println("[ERROR HANDLER] Scheduled task exception: " + t.getMessage());
            t.printStackTrace();
        });

        return scheduler;
    }
}

Now, you can do whatever you like in your doSomething() method and it won't stop and you will still be able to see the exceptions in the output. (You may add logger instead of sysout)

@Component
public class ScheduledTasks {

    @Scheduled
    public void doSomething() {
        
        //No need of try catch here now
        // For eg: put int x= 3/0; here which throws ArithmeticException but still your application will be running
    }
}

You may need to take care of silent failures and this doesn’t work for @Async or CompletableFuture threads as they need AsyncUncaughtExceptionHandler.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Scheduled
  • User mentioned (0): @Async
  • Low reputation (1):
Posted by: Naman Madharia

79620478

Date: 2025-05-13 21:59:51
Score: 3.5
Natty:
Report link

I write my own code and it works, i'v made all statistics by Mild, Servere and etc...

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

79620468

Date: 2025-05-13 21:50:49
Score: 0.5
Natty:
Report link

Xampp was designed not to host a site, only for helping develop sites. However, it is possible to configure the web server (Apache) to host your site. Unfortunately, this comes with many security risks. For example, if your site was my_site.com, some hacker could enter this URL: my_site.com/phpmyadmin, and get taken right to phpmyadmin and see your databases AND MODIFIY THEM! Any application that comes with xampp can be accessed by anyone using your site if you do this! It is better to just sign up with a web hosting partner.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: human compter

79620460

Date: 2025-05-13 21:42:47
Score: 1.5
Natty:
Report link

Giving a 2025 update on this question.

You need to pass the format string into pd.to_datetime, otherwise it pulls in dateutil and slowly parses each element individually (which may not be consistent). %p handles the AM/PM in the string.

pd.to_datetime(df['time'], format='%I:%M:%S %p')

To extract a clean time value you can then extract the .dt.time from it.

Reasons:
  • Blacklisted phrase (1): update on this
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Breck Emert

79620450

Date: 2025-05-13 21:34:45
Score: 2.5
Natty:
Report link

The solution for me ended up being that I needed to give the repository "Admin" access to the package. ("Write" might have worked too, but I didn't try that.) This is in Package Settings > Manage Actions access. See this GitHub doc for more info.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Sam R

79620448

Date: 2025-05-13 21:33:44
Score: 1.5
Natty:
Report link

This is now possible with toolbarColorScheme(_:for:). See documentation here: https://developer.apple.com/documentation/swiftui/view/toolbarcolorscheme(_:for:)

Example usage:

    NavigationSplitView {
        // ...
    }
        .toolbarBackground(Color.accentColor)
        .toolbarColorScheme(.dark)

Example output: enter image description here

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

79620444

Date: 2025-05-13 21:30:43
Score: 0.5
Natty:
Report link

When you use:


auto operator<=>(const X&) const = default;

the compiler automatically synthesizes operator== for you, because it knows your intent to use defaulted comparisons for this type.

However, when you define:

auto operator<=>(const X& other) const { return Dummy <=> other.Dummy; }

you’re providing a custom implementation, and the compiler no longer assumes what equality should mean, so it does not generate operator==.

If you still want == support with a custom <=>, you must define it manually, like this:

#include <compare>

struct X {
    int Dummy = 0;

    auto operator<=>(const X& other) const {
        return Dummy <=> other.Dummy;
    }

    bool operator==(const X& other) const {
        return (*this <=> other) == 0;
    }
};

This tells the compiler explicitly what equality means based on your comparison logic.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you use
  • Low reputation (1):
Posted by: Gildos

79620441

Date: 2025-05-13 21:28:43
Score: 1
Natty:
Report link

How about something like so:

Dim path As String = "C:\Users\Desktop\Test.txt"
Dim newEntry As String = Array(0) & Now & Environment.NewLine
Dim oldText As String = ""
If File.Exists(path) Then oldText = File.ReadAllText(path, Encoding.UTF8)
File.WriteAllText(path, newEntry & oldText, Encoding.UTF8)

This way you will have the newest entry at the top of the file.

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: MikeP

79620440

Date: 2025-05-13 21:28:42
Score: 4.5
Natty:
Report link

You can place the variable -Dfile.encoding=UTF-8 in the arguments, this will solve the problem, this error occurs only on Windows.

Add variable in run configurations:
enter image description here

------

https://help.salesforce.com/s/articleView?id=001119851&type=1

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ortiz F. Anderson

79620439

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

In single line you could do this :

one line URI link Android and IOS:
snapchat://add/<username>
or as you asked by using intent deeplinking URI android only:
intent://add/<username>#Intent;package=com.android.snapchat;scheme=snapchat;end

example : snapchat://add/abc12

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

79620433

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

Anonymous object, anonymous inner class, and Spring's @Bean annotation seem similar, but they are conceptually quite different.

An anonymous object is simply an object created without assigning it to a variable.

eg.

new MyServiceImpl().performTask();

Here we created an object using new MyServiceImpl() but we didn’t store it in a variable like

MyServiceImpl obj = new MyServiceImpl();

It's a one-time-use object and we can't reuse it because we have no reference to it so this makes it as an anonymous object, not to be confused with an anonymous class.

An anonymous inner class is a class without a name defined inside another class, often used for short, one-off implementations (typically for interface or abstract class implementations).

eg.

Runnable r = new Runnable() {
    @Override
    public void run() {
        System.out.println("Running in thread");
    }
};
new Thread(r).start();

The new Runnable() { ... } is an anonymous inner class we are creating a new unnamed class that implements Runnable. It’s different from an anonymous object, though both concepts look similar.

Now, with your question:

@Bean
public MyService myService() {
    return new MyServiceImpl();
}

You are not creating an anonymous object in the usual Java sense though you don’t assign it to a variable in your method because Spring assigns and manages the object internally in the ApplicationContext.The return value new MyServiceImpl() is stored in a container-managed singleton (by default). You can later autowire it or retrievable using its bean name (usually the method name myService). So, even though you don't assign it a reference manually, Spring does assign and manage a reference. Therefore, the object is stored, managed, and reused unlike a true Java anonymous object.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Bean
  • Low reputation (1):
Posted by: Naman Madharia

79620421

Date: 2025-05-13 21:18:40
Score: 1.5
Natty:
Report link
  1. Go to the Remote Database Access page in your cPanel dashboard.

  2. You will see a list of IP addresses and hostnames available for remote access.

  3. Try using any of these IP addresses or hostnames as the host in your database connection settings.

  4. Keep trying the options until you find the one that successfully connects.

Since Node.js acts as a separate server, it requires remote access permission to communicate with your cPanel's MySQL server.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Fredrick Adjei Quansah

79620417

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

I'm also stuck on this step of the process. I already figured out which content-type to use through trial and error, but am currently receiving the following: "Invalid JWE format"

Currently, I'm building the payload in the form of a hash, then converting it to a string.

Then, I use the exponent and modulus (e & n) from the JWK embedded in the capture context and use these to create an RSA key. I then use this key and the payload to generate a JWE.

It looks like you're using the literal key ID (kid) from the embedded JWK to do your encryption. Did you end up changing that? Let me know if you see anything wrong with my approach.

Reasons:
  • RegEx Blacklisted phrase (1.5): I'm also stuck
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Michael

79620414

Date: 2025-05-13 21:09:37
Score: 1.5
Natty:
Report link

Yes, your loop-based solution works fine, but if you're looking for a more "pandastic", vectorized, and concise approach, you can leverage df.update() along with pd.concat and dictionary comprehension to achieve the same result in a more elegant way.

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

79620410

Date: 2025-05-13 21:08:37
Score: 1
Natty:
Report link

Go figure... after 3 solid 8 hour days messing with everything I can think of, I found it 1 hour after posting this here. The problem is the user permissions on the redis server. Here's the example line from the redis docu Redis docu.

user sentinel-user on >somepassword allchannels +multi +slaveof +ping +exec +subscribe +config|rewrite +role +publish +info +client|setname +client|kill +script|kill
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Scot Kreienkamp

79620407

Date: 2025-05-13 21:04:36
Score: 1.5
Natty:
Report link

For debugging purposes, you can store a copy of the inputs by adding to server:

input <<- lapply(input, function(x) x)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alencar Xavier

79620403

Date: 2025-05-13 21:01:34
Score: 7.5
Natty: 9
Report link

where are we supposed to paste this? I just want to bookmark a few pages and don't think i can learn a whole language. Which bit do i need to copy where please?

Reasons:
  • Blacklisted phrase (0.5): i need
  • RegEx Blacklisted phrase (1): i need to copy where please
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): where are we
  • Low reputation (1):
Posted by: user30529997

79620402

Date: 2025-05-13 21:00:34
Score: 9
Natty: 8
Report link

I'm in the same situation here. Did you manage to improve? Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (3): Did you manage to
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Eduardo Farias

79620399

Date: 2025-05-13 20:54:32
Score: 0.5
Natty:
Report link

in windows this should be working fine :

import win32clipboard
win32clipboard.OpenClipboard();win32clipboard.EmptyClipboard();win32clipboard.CloseClipboard()

in linux:

import subprocess
subprocess.run(["xsel -bc"])
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: XMMR12

79620397

Date: 2025-05-13 20:53:32
Score: 2
Natty:
Report link

Controlling R package versions, and using Docker (e.g. with Rocker images) to control the underlying OS librairies, can help solve this. (You'd need a virtual machine to control more, such as the OS kernel). This and some other options are discussed here.

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

79620396

Date: 2025-05-13 20:53:32
Score: 1.5
Natty:
Report link

I forgot to point to the acceleo repository. I added this to my acceleo project pom.xml

<pluginRepositories>
   <pluginRepository>
       <id>Eclipse - Acceleo Release</id>
       <url>https://repo.eclipse.org/content/repositories/acceleo-releases</url>
     </pluginRepository>
   </pluginRepositories>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Che