79675437

Date: 2025-06-22 20:41:16
Score: 0.5
Natty:
Report link

You cannot use a slicer directly as a chart axis in Excel. This is because Slicers are designed to filter data in pivot tables or pivot charts, but not as axis labels.

So, an alternative can be to:

a) create a pivot table, b) insert a pivot chart based on this pivot table, c) add a slicer connected to the pivot table.

The slicer won't become an axis, but it will filter the data.

Hope this helps.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • No code block (0.5):
  • Low reputation (1):
Posted by: fromexceltopython

79675431

Date: 2025-06-22 20:26:12
Score: 1.5
Natty:
Report link

new XMLSerializer().serializeToString(document.doctype)+'\n'+document.documentElement.outerHTML

this works as it pulls the doctype string then adds the outer HTML

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

79675422

Date: 2025-06-22 20:08:07
Score: 1.5
Natty:
Report link

No, there is no difference. Both extensions will work.

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

79675412

Date: 2025-06-22 19:55:02
Score: 2
Natty:
Report link

I was having the same issue, but was never prompted to create a password when I installed pgadmin. Despite this eo_coder_jk's answer worked for me.

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

79675406

Date: 2025-06-22 19:40:59
Score: 4.5
Natty:
Report link

It seems that JetBrains members posted an article how to fix this error code here:
https://youtrack.jetbrains.com/articles/SUPPORT-A-1853/Junie-provides-error-code-400-input-length-and-maxtokens-exceed-context-limit

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

79675380

Date: 2025-06-22 19:09:51
Score: 1.5
Natty:
Report link

The iterator object of the built-in iterable data types is itself iterable. (That is, it has a method with the symbolic name Symbol.iterator, which simply returns the object itself.) Sometimes this is useful in the following code when you want to run through a “partially used” iterator:

let list = [l,2,3,4,5];

let iter = list[Symbol.iterator]();

let head = iter.next().value; // head == 1

let tail = [...iter]; // tail == [2,3,4,5]

JavaScript: The Definitive Guide, David Flanagan, page 363

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Евгений Попов

79675370

Date: 2025-06-22 19:01:47
Score: 1
Natty:
Report link

Looks like my prior searches didn't give the answer I was looking for.

It looks like main.cpp symbols weren't being exposed to shared libraries, so it was getting tripped up.

Compiling with g++ -rdynamic -I./lib main.cpp -o game worked as expected.

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

79675365

Date: 2025-06-22 18:50:45
Score: 1.5
Natty:
Report link

I was able to fix the issue by changing the host property from

host:"localhost",

to

host:"127.0.0.1",
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: cv 123760

79675354

Date: 2025-06-22 18:32:40
Score: 0.5
Natty:
Report link

At that point the Environment would be ready to use, even if beans are not created yet.

So you can inject the Environment into your class, then execute the old environment.getProperty("my.property") method.

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

79675347

Date: 2025-06-22 18:21:36
Score: 4
Natty:
Report link

How about encoding the length-info explicitly, in a static constexpr variable?

struct mybits {
  static constexpr size_t num_bits = 15;
  unsigned int one:num_bits;
};
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: user2929974

79675331

Date: 2025-06-22 18:05:32
Score: 1
Natty:
Report link

webview_flutter version 4.13.0 has support for SSL error handling via NavigationDelegate(onSSlAuthError)

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

79675330

Date: 2025-06-22 18:05:32
Score: 1
Natty:
Report link

webview_flutter version 4.13.0 has support for SSL error handling via NavigationDelegate(onSSlAuthError)

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

79675322

Date: 2025-06-22 17:48:27
Score: 1
Natty:
Report link

If your Power BI reports using DirectQuery to a MySQL database are not refreshing automatically on the Power BI Service, it's likely due to missing or misconfigured gateway settings. Unlike Import mode, DirectQuery requires an on-premises data gateway to maintain a live connection between the Power BI Service and your local or private database. Without a properly installed and configured gateway, the service cannot query your MySQL source in real time or on schedule, which explains why refreshes fail and only work manually in Power BI Desktop. To resolve this, install the on-premises data gateway, configure it in the Power BI Service under "Manage Gateways," ensure the data source credentials are valid, and map your dataset to use this gateway. Once set up correctly, your reports should refresh automatically or on-demand without needing manual intervention from Desktop.

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

79675285

Date: 2025-06-22 16:44:09
Score: 1
Natty:
Report link

On the GitLab feature request mentioned by @Jonathan, kawadumax posted a nice solution leveraging Just's ability to have embedded Bash that is essentially:

#!/bin/bash -eu
command1 &
command2 &
trap 'kill $(jobs -pr)' EXIT
wait
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mark C

79675280

Date: 2025-06-22 16:33:06
Score: 2
Natty:
Report link

Sorry for late answer, but you could use this gist on Github, it should solve validation issue without any problem. Hope this helps you or anyone who sees this.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pukanium

79675279

Date: 2025-06-22 16:30:05
Score: 1
Natty:
Report link

the scope photoslibrary.readonlyphotoslibrary has been deprecated and will be removed after March 31, 2025.

After this date, any API calls using only this scope will return a 403 PERMISSION_DENIED error.

What should you do?

For reading photos, use the https://www.googleapis.com/auth/photoslibrary.readonly.appcreateddata scope.

For other use cases, review the latest Google Photos API documentation for supported scopes and migration instructions.

Reference:

https://developers.google.com/photos/support/updates#affected-scopes-methods

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

79675276

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

If there is anyone that has the problem of not showing suggestions in html and not showing open with live server option, just go to preferences in settings, click on edit json file. Paste this:

"files.associations": {
  "*.html": "html"
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mustafa khan 1921

79675274

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

Reactive base environment


conda activate base

Ensure extensions work

jupyter nbextension enable --py widgetsnbextension
jupyter nbextension enable --py ipympl

restart your PC.

re-run

jupyter notebook

In notebook, Kernel --> restart and clear ouput, Run all cells.

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

79675254

Date: 2025-06-22 15:46:54
Score: 0.5
Natty:
Report link

The PC actually contains, only the address of the next instruction. It does not contain the actual instruction. Same is the case with MAR. The difference between PC and MAR exists, based on their individual purpose.During the fetch stage of Instruction Cycle, the next instruction is actually read in the following way:

1: The PC has the address for the next instruction. This address is copied into MAR.
2: The Control Unit then polls for the actual instruction stored at the address that MAR points to. This is done by sending a signal to data bus to read the data at that address.
3: The actual data is sent to the CPU via data bus, which is then stored in the Memory Data Register (MDR) , also sometimes called Memory Buffer Register. The PC is incremented at this stage.
4: The content of MDR is then copied into CIR, the Current Instruction Register. After this, the decode stage starts.

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

79675246

Date: 2025-06-22 15:33:50
Score: 2.5
Natty:
Report link

Add this in the header of the Mapper:

@Mapper(.....injectionStrategy = InjectionStrategy.CONSTRUCTOR)

Documentation: https://mapstruct.org/documentation/1.5/api/org/mapstruct/InjectionStrategy.html

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

79675243

Date: 2025-06-22 15:29:48
Score: 1
Natty:
Report link

I found that the ClientId of the RadioButtonList is good enough.

    $(document).on('click', "#RBL1_CliendId input", function() {        
        if($(this).prop("value") == 3){
            // do something
        } else {
            // do something else
        }
    });     
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: esims

79675240

Date: 2025-06-22 15:23:46
Score: 1
Natty:
Report link

Same issue 5 years down the line and not even AI can solve this. Anyway I used this work around for me.

# Some GDAL configurations for GIS support
# os.environ['GDAL_DATA'] = "C:\\OSGeo4W\\share\\epsg_csv"
os.environ['PROJ_LIB'] = "C:\\OSGeo4W\\share\\proj"
os.environ['GEOS_LIBRARY_PATH'] = "C:\\OSGeo4W\\bin\\geos.dll"
Reasons:
  • RegEx Blacklisted phrase (1): Same issue
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Surveyor Jr

79675239

Date: 2025-06-22 15:23:46
Score: 2.5
Natty:
Report link

In chrome, after trusting certificate, needed to run chrome in incognito as the old certs were cached.

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

79675234

Date: 2025-06-22 15:18:44
Score: 8 🚩
Natty: 4
Report link

I have the same question, I fully uninstalled the vscode using control panel, but the problem remained.

There is no suggestions when writing html code and when right click on html file it shows option of "open with..." when i click on that, it just shows a plain text editor, please provide a fix

Reasons:
  • Blacklisted phrase (1): I have the same question
  • RegEx Blacklisted phrase (2.5): please provide
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same question
  • Low reputation (1):
Posted by: Mustafa khan 1921

79675233

Date: 2025-06-22 15:18:44
Score: 1.5
Natty:
Report link

Thanks to @DavidMaze i simply used queue.put_nowait() as i run on the same thread.

In hindsight :

So by using put_nowait() I handled QueueFull exception by logging/counting/dropping, which makes more sense when the user has requested a bound queue.

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

79675227

Date: 2025-06-22 15:12:42
Score: 2.5
Natty:
Report link

I also faced this issue, and I tried several ways but didn't solved. Then I tried the same thing using aggregate, then it works perfectly, so maybe this is a bug from mongoose referencing. The low level aggregation pipeline does it correctly, so its some internal issue I think.

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

79675223

Date: 2025-06-22 15:01:39
Score: 2.5
Natty:
Report link

concerning the Filter message about product not having enough stock accounting for what's already in the cart.

How can we use this code to insert a variable and get the product name in the message ? I'd like to get : "You are currently trying to order "Product name", You cannot add that amount to the cart — we have %1$s in stock and you already have %2$s in your cart."

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): How can we
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Gsan

79675198

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

If you're struggling to scrape Pandora Jewellery Stores or just looking for a better alternative with trendy and affordable options, I highly recommend checking out this amazing <a href="https://trendhuts.in" target="_blank">jewellery</a> collection.

TrendHuts offers a wide variety of artificial jewellery that blends traditional styles with a modern twist — perfect for gifting, festivals, or everyday wear. Unlike big brands, their site is easy to browse, and the pricing is much more accessible.

🔗 Explore more here: <a href="https://trendhuts.in" target="_blank">https://trendhuts.in</a>

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

79675193

Date: 2025-06-22 14:30:31
Score: 0.5
Natty:
Report link

IN DRF view, if you mentioned string path for renderer_classes then it'll cause this issue because drf view renderer_classes accept as as python class only.

from rest_framework.views import APIView
class TestView(APIView)
     renderer_classes = [JSONRenderer]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kaushal

79675157

Date: 2025-06-22 13:12:12
Score: 1
Natty:
Report link
from datetime import datetime, timezone

def convert_iso8601_to_epoch(ts):
    dt = datetime.fromisoformat(ts)
    # Convert to UTC timestamp (epoch seconds)
    return dt.timestamp()

ts = '2012-09-30T15:31:50.262-08:00'
epoch time = convert_iso8601_to_epoch(ts)
print(epoch_time)


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

79675149

Date: 2025-06-22 12:51:07
Score: 2.5
Natty:
Report link

Currently i am getting the following error when using oracle db.

Hibernate: call next value for tutorial_id_seq
SQL Error: 6576, SQLState: 65000
ORA-06576: not a valid function or procedure name

The Sequence is already in the db. Hibernate is erroring out when calling next value from the sequence.

Reasons:
  • RegEx Blacklisted phrase (1): i am getting the following error
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: JET_1974

79675143

Date: 2025-06-22 12:40:04
Score: 2.5
Natty:
Report link

mysql workbench > Edit > Preferences > SQL Editor > MySQL Session

DBMS connection read timeout interval (in seconds): default value is 30 sec. PLS modify to 100 sec, then reconnect your mysql server

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: RP.S

79675129

Date: 2025-06-22 12:19:59
Score: 2.5
Natty:
Report link

Print_org

Python

Gaging

abs

Pyton_((peont_org

I am 6 years_(enter)

Password correct

List:

☑number

☑with color

☑with face

Save python print✅

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

79675120

Date: 2025-06-22 11:56:54
Score: 2.5
Natty:
Report link

Hi you can achieve this by creating a CustomIdGenerator annotation.

You can take a reference from my personal project regarding custom annotations...

Reference link Custom Annotation (customerdata)

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

79675117

Date: 2025-06-22 11:52:53
Score: 2
Natty:
Report link

The problem was that I was passing the wrong variable `$resource_group` instead of `$rg_name`. I was confused as the az was giving me a message about the API, which doesn't make any sense.

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

79675099

Date: 2025-06-22 11:25:47
Score: 3.5
Natty:
Report link

As this still does not work today (2025), and if still someone might have a similar issue, the perfect solution is to ask any chatbot to translate the text to Serbian - Latin.

From my experience, Google's Gemini is doing the best translations.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have a similar issue
  • Low reputation (1):
Posted by: Daniel Miller

79675092

Date: 2025-06-22 11:08:43
Score: 3
Natty:
Report link

When compiling Debian for the PX30, some dependency libraries will be downloaded. If those libraries have been updated while you’re using an older version of the source code, the build might fail. In such cases, you may need to try using older versions of the libraries.

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

79675091

Date: 2025-06-22 11:03:42
Score: 2.5
Natty:
Report link

I had the same problem and increase stack_size for task, which calls vsnprintf() is helps

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

79675087

Date: 2025-06-22 10:50:39
Score: 1.5
Natty:
Report link

Try adding this class to your utils:

import android.app.Activity;
import android.graphics.Rect;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewTreeObserver;
import android.content.Context;
import android.view.inputmethod.InputMethodManager;

import java.util.HashMap;

/**
 * Based on the following Stackoverflow answer:
 * http://stackoverflow.com/questions/2150078/how-to-check-visibility-of-software-keyboard-in-android
 */
@SuppressWarnings("WeakerAccess")
public class KeyboardUtils implements ViewTreeObserver.OnGlobalLayoutListener
{
    private final static int MAGIC_NUMBER = 200;

    private SoftKeyboardToggleListener mCallback;
    private View mRootView;
    private Boolean prevValue = null;
    private float mScreenDensity;
    private static HashMap<SoftKeyboardToggleListener, KeyboardUtils> sListenerMap = new HashMap<>();

    public interface SoftKeyboardToggleListener
    {
        void onToggleSoftKeyboard(boolean isVisible);
    }


    @Override
    public void onGlobalLayout()
    {
        Rect r = new Rect();
        mRootView.getWindowVisibleDisplayFrame(r);

        int heightDiff = mRootView.getRootView().getHeight() - (r.bottom - r.top);
        float dp = heightDiff/ mScreenDensity;
        boolean isVisible = dp > MAGIC_NUMBER;

        if (mCallback != null && (prevValue == null || isVisible != prevValue)) {
            prevValue = isVisible;
            mCallback.onToggleSoftKeyboard(isVisible);
        }
    }

    /**
     * Add a new keyboard listener
     * @param act calling activity
     * @param listener callback
     */
    public static void addKeyboardToggleListener(Activity act, SoftKeyboardToggleListener listener)
    {
        removeKeyboardToggleListener(listener);

        sListenerMap.put(listener, new KeyboardUtils(act, listener));
    }

    /**
     * Remove a registered listener
     * @param listener {@link SoftKeyboardToggleListener}
     */
    public static void removeKeyboardToggleListener(SoftKeyboardToggleListener listener)
    {
        if(sListenerMap.containsKey(listener))
        {
            KeyboardUtils k = sListenerMap.get(listener);
            k.removeListener();

            sListenerMap.remove(listener);
        }
    }

    /**
     * Remove all registered keyboard listeners
     */
    public static void removeAllKeyboardToggleListeners()
    {
        for(SoftKeyboardToggleListener l : sListenerMap.keySet())
            sListenerMap.get(l).removeListener();

        sListenerMap.clear();
    }

    /**
     * Manually toggle soft keyboard visibility
     * @param context calling context
     */
    public static void toggleKeyboardVisibility(Context context)
    {
        InputMethodManager inputMethodManager = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
        if(inputMethodManager != null)
            inputMethodManager.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
    }

    /**
     * Force closes the soft keyboard
     * @param activeView the view with the keyboard focus
     */
    public static void forceCloseKeyboard(View activeView)
    {
        InputMethodManager inputMethodManager = (InputMethodManager) activeView.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
        if(inputMethodManager != null)
            inputMethodManager.hideSoftInputFromWindow(activeView.getWindowToken(), 0);
    }

    private void removeListener()
    {
        mCallback = null;

        mRootView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
    }

    private KeyboardUtils(Activity act, SoftKeyboardToggleListener listener)
    {
        mCallback = listener;

        mRootView = ((ViewGroup) act.findViewById(android.R.id.content)).getChildAt(0);
        mRootView.getViewTreeObserver().addOnGlobalLayoutListener(this);

        mScreenDensity = act.getResources().getDisplayMetrics().density;
    }

}

Use like this:

KeyboardUtils.addKeyboardToggleListener(requireActivity(), isVisible -> {
    if (isVisible) {
        // do something
    }
});
Reasons:
  • Blacklisted phrase (1): Stackoverflow
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hossam Mohamed

79675086

Date: 2025-06-22 10:47:38
Score: 0.5
Natty:
Report link

To be clear, Chronicle 4.x and above supports concurrent writers to the same queue.

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

79675085

Date: 2025-06-22 10:45:38
Score: 1
Natty:
Report link

I don't know why, but was able to resolve this issue by moving the mainwindow.ui file to the same directory with the source files. So the structure will be the following:

MyProject
  CMakeLists.txt

  include
       mainwindow.h

  src
       mainwindow.cpp
       main.cpp
       mainwindow.ui
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: sat0sh1c

79675083

Date: 2025-06-22 10:43:37
Score: 3
Natty:
Report link

Popper Component allows you to scroll the website if it is open , but you can't do that in popover Component , it is by default written that way.

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

79675082

Date: 2025-06-22 10:41:37
Score: 3.5
Natty:
Report link

You can submit App Actions for production using this link: contact

Note: It will take some days to completely review your submitted App Actions also your app should also live on production.

Reasons:
  • Blacklisted phrase (1): How can we
  • Blacklisted phrase (1): this link
  • No code block (0.5):
  • Low reputation (1):
Posted by: Bilal Khurshid

79675080

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

I think you need to have internet permission. Enabled in android manifest,

Also make sure your using https. If your api url is http then follow this steps

https://medium.com/mindorks/my-network-requests-are-not-working-in-android-pie-7c7a31e33330

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tech Pulsecode

79675071

Date: 2025-06-22 10:17:31
Score: 1
Natty:
Report link

UPDATE: I did everything correctly. I need to fetch the token this way

@GetMapping("/profile")
    public Map<String, Object> profile(OAuth2AuthenticationToken auth,
                                       @RegisteredOAuth2AuthorizedClient("cognito")
                                       OAuth2AuthorizedClient client) {


        OidcIdToken idToken = ((OidcUser) auth.getPrincipal()).getIdToken();
        String sector     = idToken.getClaimAsString("custom:sector");


        String idJwt      = idToken.getTokenValue();
        String accessJwt  = client.getAccessToken().getTokenValue();

        return Map.of("sector", sector,
                "idToken", idJwt,
                "accessToken", accessJwt);
    }
Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ed .d

79675065

Date: 2025-06-22 10:11:29
Score: 1
Natty:
Report link

How to install uv when I already need an virtual environment to install it?

With the standalone installer, or any other method - pip, cargo, docker or just by downloading the binary. All is described in the documentation, see https://docs.astral.sh/uv/getting-started/installation/ .

Isn't this a chicken-egg-problem?

No. uv is written in rust, it doesn't require any virtual env or python.

How do you do it?

I just do pip install --user uv

Reasons:
  • Blacklisted phrase (1): How do you
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How to in
  • High reputation (-2):
Posted by: KamilCuk

79675063

Date: 2025-06-22 10:10:29
Score: 2
Natty:
Report link

Check the Google Assistant account you are using on device, sometimes if you're using more then 1 google account on same device it consider the default account so you have to select that developer account manually. You can also check if your shortcut is available for your device by open Google Assistant settings and search for 'Shortcuts' section and you'll find your App there and after that you can even create a short keyword to use your OPEN_APP_FEATURE like "Hey Google, Emergency"

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

79675060

Date: 2025-06-22 10:07:28
Score: 0.5
Natty:
Report link

I found a solution myself now. So becuase the vTextureCoord seemed to be messed up, I decided to bring up another locical location and also pass it to the fragment shader. Not it seems to work as expected:

const vertex = `
in vec2 aPosition;
out vec2 vTextureCoord;
out vec2 vLogicPosition;

uniform vec4 uInputSize;
uniform vec4 uOutputFrame;
uniform vec4 uOutputTexture;

vec4 filterVertexPosition( void )
{
    vec2 position = aPosition * uOutputFrame.zw + uOutputFrame.xy;
    
    position.x = position.x * (2.0 / uOutputTexture.x) - 1.0;
    position.y = position.y * (2.0*uOutputTexture.z / uOutputTexture.y) - uOutputTexture.z;

    return vec4(position, 0.0, 1.0);
}

vec2 filterTextureCoord( void )
{
    return aPosition * (uOutputFrame.zw * uInputSize.zw);
}

void main(void)
{
    gl_Position = filterVertexPosition();
    vTextureCoord = filterTextureCoord();
    vLogicPosition = aPosition;
}
`
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Julian

79675052

Date: 2025-06-22 09:57:26
Score: 3.5
Natty:
Report link

Thank for ypur superusfull answer!!! I have donwloaded from maven repozitory jars files for Spark 3.5.6. Spark 3.5.6 is built on hadoop 3.3.4 too. Thanks a lot!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Павел Горюнов

79675042

Date: 2025-06-22 09:43:23
Score: 3
Natty:
Report link

The problem is the memusg file in the ViewBS package. Simply install it from here https://github.com/jhclark/memusg, remove the original ./memusg provided with ViewBS from the PATH and you are ready to go.

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

79675036

Date: 2025-06-22 09:36:21
Score: 3
Natty:
Report link

In my case it was due to setting a wrong API KEY. make sure you have created one

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

79675025

Date: 2025-06-22 09:19:16
Score: 5
Natty:
Report link

But now i have another problem:

const loginUser = async (username: string, password: string) => {
        useLogin(username, password)
            .then((res) => {
                if (res) {
                     // process res
               }
           })
           .catch((/*e*/) => toast.warning("Server error occured"));
     };

Property 'then' does not exist on type 'UseQueryResult<unknown, Error>'. Property 'then' does not exist on type 'QueryObserverRefetchErrorResult<unknown, Error>'.

Can you please tell me what's the problem here ?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you please tell me what
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Transporter08

79675024

Date: 2025-06-22 09:19:16
Score: 1.5
Natty:
Report link

change the scroll physics

physics: BouncingScrollPhysics(),

to and that should do the job.

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

79675021

Date: 2025-06-22 09:14:15
Score: 3
Natty:
Report link

Open project level Gradle and upgrade the kotlin version to '1.9.21' or any above version. Also Clean Project and rebuild.

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

79675020

Date: 2025-06-22 09:11:15
Score: 3
Natty:
Report link

I faced the same problem. This issue is also being raised here. I downgraded my vscode to 1.100.2 and remote-ssh to 0.117.0. No issues now.

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

79675018

Date: 2025-06-22 09:11:15
Score: 3
Natty:
Report link

I fix this problem with updating my terminal :
https://apps.microsoft.com/detail/9n0dx20hk701

Hope it help

Reasons:
  • Whitelisted phrase (-1): Hope it help
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Bastien Million

79675011

Date: 2025-06-22 09:02:12
Score: 4.5
Natty: 4.5
Report link

I will soon share my code with you since I just submitted it. As a recommendation, try avoiding huge chunks of code like naming to variables too long or using this line " a = a + 1; " instead use a++ or a += 1. And yes have you done update50 on the terminal?

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

79674999

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

1. try deleting your build folder in Xcode, with the shortcut CMD + SHIFT + K
2. remove the app from your phone
3. restart your iPhone
4. rebuild and run
5. check whether WeatherKit is working properly from the Apple side (https://developer.apple.com/system-status/)

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

79674986

Date: 2025-06-22 08:15:01
Score: 2.5
Natty:
Report link

I came across a similar problem and realized I had some lint issues and the build was not successful with errors. So try to build you project and see if there are any errors, then try running again after fixing errors

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

79674985

Date: 2025-06-22 08:02:59
Score: 0.5
Natty:
Report link

Well, first of all, reason for your component re-rendering over and over seems to be
circular dependency.

in useEffect dependency array you have added cards, and in that useEffect you have called a function that changes the values of cards ,

so when first time this useEffect will run and your function will be executed then the value of cards will be changed so it will trigger the useEffect again because cards has been added as dependency so every time cards changes useEffect will run the function in it , so it will go to infinite loop.

well i don't think you need to add cards in dependency array as you only changes its value based on the data you get from the api call, which will be called at least one time even if make dependency array empty.

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

79674967

Date: 2025-06-22 07:33:51
Score: 1.5
Natty:
Report link

Error uploading script: Process exited with status 1
meams you don t have enough space in your virtual hard drivr

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

79674954

Date: 2025-06-22 07:10:46
Score: 1
Natty:
Report link

In MySQL, use the AUTO_INCRMENT keyword, and the column must be defined as a primary key (PRIMARY KEY) or have a unique index (UNIQUE index).
like this

CREATE TABLE users (
    id INT NOT NULL AUTO_INCREMENT,
    username VARCHAR(50) NOT NULL,
    email VARCHAR(100),
    PRIMARY KEY (id)
);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: TaylorSwift

79674953

Date: 2025-06-22 07:10:46
Score: 3.5
Natty:
Report link

After trying very many suggestions to solving this issue I finally got to get an easy way to fix it:

To fix

how do I fix this

Last login: Sun Jun 22 09:02:21 on ttys000

[WARNING]: Console output during zsh initialization detected.

When using Powerlevel10k with instant prompt, console output during zsh
initialization may indicate issues.

You can:

  - Recommended: Change ~/.zshrc so that it does not perform console I/O
    after the instant prompt preamble. See the link below for details.

    * You will not see this error message again.
    * Zsh will start quickly and prompt will update smoothly.

  - Suppress this warning either by running p10k configure or by manually
    defining the following parameter:

      typeset -g POWERLEVEL9K_INSTANT_PROMPT=quiet

    * You will not see this error message again.
    * Zsh will start quickly but prompt will jump down after initialization.

  - Disable instant prompt either by running p10k configure or by manually
    defining the following parameter:

      typeset -g POWERLEVEL9K_INSTANT_PROMPT=off

    * You will not see this error message again.
    * Zsh will start slowly.

  - Do nothing.

    * You will see this error message every time you start zsh.
    * Zsh will start quickly but prompt will jump down after initialization.

For details, see:
https://github.com/romkatv/powerlevel10k#instant-prompt

-- console output produced during zsh initialization follows --

[oh-my-zsh] plugin 'zsh-autosuggestions' not found
[oh-my-zsh] plugin 'zsh-syntax-highlighting' not found

You only need to comment out this line in your zshrc:
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)

Reasons:
  • Blacklisted phrase (1): the link below
  • Blacklisted phrase (1): how do I
  • Blacklisted phrase (1): to comment
  • RegEx Blacklisted phrase (1): See the link
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: VinnohKimani

79674949

Date: 2025-06-22 07:00:44
Score: 0.5
Natty:
Report link

Had a similar kind of issue while generate jooq classes from spring boot,

Unable to parse configuration of mojo org.jooq:jooq-codegen-maven:3.20.5:generate for parameter schema: Cannot find default setter in class org.jooq.meta.jaxb.SchemaMappingType found out <inputSchema></inputSchema> was missing .

Hope it helps somebody ! .

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • No code block (0.5):
  • Low reputation (1):
Posted by: Bibil Chacko

79674948

Date: 2025-06-22 06:56:43
Score: 1
Natty:
Report link

Using white-space is a good soution, but you can try also with text-wrap-mode

ul {
text-wrap-mode:nowrap;
}
li {
display:inline-block;
}

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

79674943

Date: 2025-06-22 06:43:40
Score: 1.5
Natty:
Report link

Just run the following in powershell as an admin and re-start pc

wsl --update

wsl --set-default-version 2

Reasons:
  • Low length (1):
  • No code block (0.5):
Posted by: Aman Bhardwaj

79674934

Date: 2025-06-22 06:14:34
Score: 0.5
Natty:
Report link

worked for me this way:

  .Sum(x => (decimal?)x.Amount) ?? 0; // works
  .Sum(x => (decimal?)x.Amount ?? 0); // did not work
Reasons:
  • Blacklisted phrase (1): did not work
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
Posted by: Adel Mourad

79674932

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

what worked for me is setting the length of tick dynamically to same as the number of labels
so :

labels =["label1","label2"]
plt.xticks(np.arange(len(labels)), labels)
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): what
  • Low reputation (1):
Posted by: Test Test

79674925

Date: 2025-06-22 05:44:27
Score: 3.5
Natty:
Report link

My configuration file is wrong. Filestream mode requires parsers

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

79674920

Date: 2025-06-22 05:38:26
Score: 1
Natty:
Report link

When this happened to me, it was because I was making the setFilterByAuthorizedAccounts option true, which restricts your app to only letting users sign in if they already have an account registered. The documentation says to try getting the credentials with it set to true, and if given a NoCredentialException, you should try again with it set to false so that the user can create a new account.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When this
  • Low reputation (0.5):
Posted by: Heinous Games

79674916

Date: 2025-06-22 05:25:23
Score: 2
Natty:
Report link
<!DOCTYPE html>
<html lang="ar">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>تحدي القراءة متعدد اللغات</title>
  <style>
    body {
      background-color: #0d1117;
      color: white;
      font-family: 'Tahoma', sans-serif;
      text-align: center;
      padding: 20px;
      margin: 0;
      position: relative;
    }

    h1 {
      font-size: 24px;
      margin-bottom: 20px;
    }

    #language {
      position: absolute;
      top: 20px;
      right: 20px;
      padding: 8px 12px;
      font-size: 16px;
      background-color: #00aaff;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }

    #language:hover {
      background-color: #0088cc;
    }

    #counter {
      margin: 10px 0;
      font-size: 18px;
      color: #00ffaa;
    }

    .word {
      font-size: 22px;
      margin: 4px;
      display: inline-block;
      padding: 6px 8px;
      border-radius: 8px;
      transition: background-color 0.3s, color 0.3s, transform 0.3s;
    }

    .read {
      background-color: #00aaff;
      color: #fff;
      animation: pop 0.3s ease;
    }

    .current {
      border: 2px dashed #00ffaa;
      background: linear-gradient(45deg, #00ffaa33, #00aaff33);
      animation: blink 1s infinite;
    }

    @keyframes pop {
      0% { transform: scale(1); }
      50% { transform: scale(1.2); }
      100% { transform: scale(1); }
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    button {
      font-size: 18px;
      padding: 10px 16px;
      margin: 10px 5px;
      border: none;
      border-radius: 10px;
      background-color: #00aaff;
      color: white;
      cursor: pointer;
      width: 90%;
      max-width: 300px;
    }

    button:hover {
      background-color: #0088cc;
    }

    #text {
      margin: 20px auto;
      max-width: 90%;
      line-height: 2;
    }

    #status {
      margin-top: 15px;
      font-size: 18px;
      color: #ffaa00;
    }

    audio {
      display: none;
    }
  </style>
</head>
<body>

  <select id="language" onchange="changeLanguage()">
    <option value="ar">🇸🇦 العربية</option>
    <option value="en">🇺🇸 English</option>
    <option value="es">🇪🇸 Español</option>
    <option value="fr">🇫🇷 Français</option>
  </select>

  <h1>📢 اقرأ الكلمة التالية بصوتك</h1>

  <div id="counter">قرأت 0 كلمة</div>
  <div id="text"></div>

  <button onclick="startListening()">🎙️ ابدأ القراءة</button>
  <button onclick="resetReading()">🔁 إعادة</button>
  <button onclick="changeSentence()">🔀 جملة جديدة</button>

  <div id="status"></div>

  <audio id="ding" src="https://cdn.pixabay.com/download/audio/2021/08/04/audio_b4b9dc4904.mp3?filename=correct-2-46134.mp3"></audio>
  <audio id="wrong" src="https://cdn.pixabay.com/download/audio/2022/03/15/audio_1f4bc94c33.mp3?filename=error-126627.mp3"></audio>
  <audio id="done" src="https://cdn.pixabay.com/download/audio/2021/10/26/audio_d1a455b0d6.mp3?filename=correct-answer-4-204118.mp3"></audio>

  <script>
    const allSentences = {
      ar: [
        "كل نجاح يبدأ بخطوة فلا تتردد",
        "الصبر مفتاح الفرج والثقة طريق الراحة",
        "المستحيل مجرد رأي وليس حقيقة",
        "الفشل هو بداية الطريق إلى النجاح",
        "التعليم هو السلاح الأقوى الذي يمكنك استخدامه لتغيير العالم",
        "العقل زينة والحكمة مفتاح النجاح",
        "القراءة توسّع المدارك وتبني العقول"
      ],
      en: [
        "Success is a journey not a destination",
        "Hard work beats talent when talent does not work hard",
        "The future depends on what you do today",
        "Believe you can and you're halfway there",
        "Reading expands the mind and opens doors to success"
      ],
      es: [
        "El éxito comienza con un paso",
        "Nunca renuncies a tus sueños",
        "El fracaso es el primer paso hacia el éxito",
        "Cree en ti mismo y sigue adelante",
        "La lectura te hace libre y sabio"
      ],
      fr: [
        "Le succès commence par un pas",
        "N'abandonne jamais tes rêves",
        "L'échec est la première étape vers le succès",
        "Crois en toi et avance",
        "La lecture ouvre l'esprit et nourrit l'âme"
      ]
    };

    const langs = {
      ar: "ar-SA",
      en: "en-US",
      es: "es-ES",
      fr: "fr-FR"
    };

    let currentText = "";
    let currentLang = "ar";
    let currentWordIndex = 0;
    let spans = [];

    const textContainer = document.getElementById("text");
    const counter = document.getElementById("counter");
    const sound = document.getElementById("ding");
    const wrongSound = document.getElementById("wrong");
    const doneSound = document.getElementById("done");
    const languageSelect = document.getElementById("language");
    const status = document.getElementById("status");

    let recognition;
    let isListening = false;

    function normalize(text) {
      return text
        .normalize("NFD").replace(/[\u064B-\u065F\u0610-\u061A\u06D6-\u06ED]/g, "")
        .replace(/[إأآا]/g, "ا")
        .replace(/ء/g, "")
        .replace(/[يى]/g, "ي")
        .replace(/[^a-zA-Zأ-ي0-9 ]/g, "")
        .trim().toLowerCase();
    }

    function compareWords(w1, w2) {
      const a = normalize(w1);
      const b = normalize(w2);
      if (a === b) return 1;
      let matches = 0;
      const minLen = Math.min(a.length, b.length);
      for (let i = 0; i < minLen; i++) {
        if (a[i] === b[i]) matches++;
      }
      return matches / Math.max(a.length, b.length);
    }

    function displayText(text) {
      textContainer.innerHTML = "";
      currentWordIndex = 0;
      const words = text.split(" ");
      spans = [];

      words.forEach((word, index) => {
        const span = document.createElement("span");
        span.className = "word";
        span.textContent = word;
        if (index === 0) span.classList.add("current");
        spans.push(span);
        textContainer.appendChild(span);
      });

      updateCounter();
    }

    function updateCounter() {
      const readCount = document.querySelectorAll(".read").length;
      const total = spans.length;
      const messages = {
        ar: `قرأت ${readCount} من ${total} كلمة`,
        en: `You read ${readCount} of ${total} words`,
        es: `Leíste ${readCount} de ${total} palabras`,
        fr: `Vous avez lu ${readCount} sur ${total} mots`
      };
      counter.textContent = messages[currentLang];
    }

    function setupRecognition() {
      recognition = new webkitSpeechRecognition();
      recognition.lang = langs[currentLang];
      recognition.continuous = true;
      recognition.interimResults = true;

      recognition.onresult = function(event) {
        const transcript = event.results[event.results.length - 1][0].transcript.trim();
        const spoken = normalize(transcript);
        const currentWord = normalize(spans[currentWordIndex]?.textContent || "");
        const similarity = compareWords(spoken, currentWord);

        if (similarity >= 0.8) {
          spans[currentWordIndex].classList.remove("current");
          spans[currentWordIndex].classList.add("read");
          sound.play();
          currentWordIndex++;

          if (spans[currentWordIndex]) {
            spans[currentWordIndex].classList.add("current");
          } else {
            status.textContent = currentLang === "ar" ? "🎉 أحسنت! انتهيت من الجملة" :
              currentLang === "en" ? "🎉 Well done! Sentence completed" :
              currentLang === "es" ? "🎉 ¡Bien hecho! Frase completada" :
              "🎉 Bravo ! Phrase terminée";
            doneSound.play();
            recognition.stop();
            isListening = false;
          }

          updateCounter();
        } else {
          wrongSound.play();
          status.textContent = currentLang === "ar"
            ? `❌ لم يتم التعرف على الكلمة بدقة: "${transcript}"`
            : `❌ Not accurate: "${transcript}"`;
        }
      };

      recognition.onerror = () => restartRecognition();
      recognition.onend = () => { if (isListening) restartRecognition(); };
    }

    function startListening() {
      if (isListening) return;
      isListening = true;
      status.textContent = currentLang === "ar" ? "🎧 جاري الاستماع..." :
        currentLang === "en" ? "🎧 Listening..." :
        currentLang === "es" ? "🎧 Escuchando..." :
        "🎧 Écoute en cours...";
      setupRecognition();
      recognition.start();
    }

    function restartRecognition() {
      if (recognition) recognition.stop();
      setupRecognition();
      recognition.start();
    }

    function resetReading() {
      spans.forEach(span => span.classList.remove("read", "current"));
      if (spans[0]) spans[0].classList.add("current");
      currentWordIndex = 0;
      updateCounter();
      status.textContent = "";
      if (recognition) recognition.stop();
      isListening = false;
    }

    function changeSentence() {
      const list = allSentences[currentLang];
      const randomIndex = Math.floor(Math.random() * list.length);
      currentText = list[randomIndex];
      resetReading();
      displayText(currentText);
    }

    function changeLanguage() {
      currentLang = languageSelect.value;
      document.body.dir = currentLang === "ar" ? "rtl" : "ltr";
      changeSentence();
    }

    window.onload = () => {
      currentText = allSentences[currentLang][0];
      displayText(currentText);
      document.body.dir = currentLang === "ar" ? "rtl" : "ltr";
    };
  </script>
</body>
</html>
Reasons:
  • RegEx Blacklisted phrase (2.5): mismo
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Walid Satori

79674903

Date: 2025-06-22 04:50:16
Score: 1
Natty:
Report link

Skrip voice-over dalam Bahasa Melayu

script = """

Seluar wanita potongan lurus, potongannya kemas dan fleksibel.

Pinggang tinggi, stretch empat arah, ringan dan cepat kering – sesuai untuk pejabat dan santai!

Satu seluar, dua gaya – mix and match ikut mood! Nak ke office atau keluar minum, semua boleh.

RM22 saja – banyak warna dan saiz dari S sampai XXL! Klik link sekarang!

"""

# Hasilkan audio dengan Google Text-to-Speech

tts = gTTS(text=script, lang='ms')

tts.save("voice_over_elgini.mp3")

print("Voice-over berjaya disimpan sebagai voice_over_elgini.mp3")

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

79674900

Date: 2025-06-22 04:47:15
Score: 2.5
Natty:
Report link

im a noob but back in web design I would always use css transitions for specific links or text to fade in or out. super easy, don't have time to look up the code but css effects still do their job yo yo cool bye

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

79674889

Date: 2025-06-22 04:11:06
Score: 0.5
Natty:
Report link

Try using simply : main()

It is not the fanciest and may not work for all applications, but it works for me.

std::cout << "This is the end of the code.";
main()
Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Niamh Driscoll

79674885

Date: 2025-06-22 04:09:05
Score: 3.5
Natty:
Report link

Thankyou for the confirmation that there's no direct way in .NET. I knew it was a long-shot.

Spectre.Console looks really good, but probably a bit like using a nuke to poison a weed for this project. I think I'll be using it in future projects, though.

I will be going with "Plan B" (or variant thereof).

Reasons:
  • Blacklisted phrase (1): Thankyou
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dion

79674884

Date: 2025-06-22 04:04:04
Score: 2
Natty:
Report link

Use lodash-es

import { isEqual } from 'lodash-es';
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: Alex G

79674882

Date: 2025-06-22 04:01:03
Score: 0.5
Natty:
Report link

you need to override their default styles using CSS. For the carousel buttons, target the .carousel-control-prev-icon and .carousel-control-next-icon classes—these use SVG background images by default, so you can either change the background-color or remove the background image and use ::before with custom content. For the back-to-top button, target the .scroll-top class and set the desired background-color and color properties. Make sure your custom CSS is loaded after the template's main stylesheet to ensure it takes effect.

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

79674881

Date: 2025-06-22 04:01:03
Score: 5.5
Natty:
Report link

Exactly same problem here, anyone who help?

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

79674864

Date: 2025-06-22 03:32:56
Score: 1.5
Natty:
Report link

Go to XCode -> Settings -> Components

Check if IOS is installed if not install it and run `flutter doctor` again. It should fix.

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

79674860

Date: 2025-06-22 03:20:53
Score: 2
Natty:
Report link

The problem is because you are multiplying 2 rounded values (G21,H21). But in J21 the multiplication is with the full precision. To fix this, you can do like this:

=ROUND(
SUM(G13:G20) * SUM(H13:H20),
0)

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

79674856

Date: 2025-06-22 03:05:49
Score: 7.5 🚩
Natty: 6
Report link

Are you still facing this issue? How to fix the issue?

Reasons:
  • RegEx Blacklisted phrase (1.5): How to fix the issue?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: taoohoo

79674852

Date: 2025-06-22 02:44:45
Score: 0.5
Natty:
Report link

Operators interpret the text loosely. Whereas formulas such as COUNTIF, SUMIF, etc are more strict in the data type. In your case, you have 2 data types: text and integers. You cannot put text when the formula is expecting to get numbers.

When you use the operators with a text, that text will be considered bigger than any number. Thus it will provide TRUE. Example: "aaple" >25, it will return true.

Reasons:
  • Whitelisted phrase (-1): In your case
  • No code block (0.5):
  • Low reputation (1):
Posted by: fromexceltopython

79674849

Date: 2025-06-22 02:27:37
Score: 7.5 🚩
Natty:
Report link

i am facing the same issue i have build.gradle.kts and i use this

packaging {
        resources {
            excludes.addAll(
                listOf(
                    "lib/arm64-v8a/libc++_shared.so",
                    "lib/armeabi-v7a/libc++_shared.so",
                    "lib/x86/libc++_shared.so",
                    "lib/x86_64/libc++_shared.so"
                )
            )
            pickFirsts.add("lib/**/libc++_shared.so") // Prioritize Flutter's version
            // Fallback: merge if exclusion fails
            merges.add("lib/arm64-v8a/libc++_shared.so")
        }
    }

still i am facing the issue its not resolving please help me

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • RegEx Blacklisted phrase (1): i am facing the issue its not resolving please
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): i am facing the same issue
  • Low reputation (1):
Posted by: Mahboob Anwar

79674846

Date: 2025-06-22 02:18:34
Score: 1.5
Natty:
Report link

When using Ionic with Angular, you should use Angular's router.

This is detailed here: https://ionicframework.com/docs/angular/navigation

In my case, I was missing importing "RouterModule", so the links were not working.

import { RouterModule } from '@angular/router';

@Component({
    ...
    standalone: true,
    imports: [
        RouterModule,
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: below43

79674837

Date: 2025-06-22 01:51:29
Score: 5
Natty:
Report link

I just have exactly the same problem: waiting for 20 mins and found nothing happened. It's no reason for it to run such long. What I did was to check whether my pip was up to date, and it turns out it's 24 instead of 25. After I Updated pip to latest version the installation finished in seconds.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have exactly the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Johnny Liu

79674836

Date: 2025-06-22 01:51:28
Score: 4
Natty:
Report link

This is what I'd do, an AVERAGEIF formula.

=AVERAGEIF(A:A,D3,B:B)enter image description here

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

79674825

Date: 2025-06-22 01:01:18
Score: 3.5
Natty:
Report link

At 9:30 of this video for solution or you can watch whole video to understand my explain. : Terminal not open in Ubuntu on Virtualboxenter image description here

Reasons:
  • Blacklisted phrase (1): this video
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Trần Hoàng Kim Long

79674824

Date: 2025-06-22 00:42:14
Score: 1
Natty:
Report link

<!DOCTYPE html> <html lang="pt"> <head> <meta charset="UTF-8"> <title>Fatura Vodafone - Mauricio Catulumba Rui</title> <style> body { font-family: Arial, sans-serif; margin: 40px; color: #333; } .header, .footer { text-align: center; } .header h2 { margin: 0; } .section { margin-top: 30px; } .label { font-weight: bold; } .box { border: 1px solid #ccc; padding: 15px; margin-top: 10px; } </style> </head> <body> <div class="header"> <h2>Vodafone Portugal – Comunicacoes Pessoais, S.A.</h2> <p>Av. D. Joao II, no 36, Parque das Nacoes<br> 1998-017 Lisboa | NIPC: PT502544180</p> </div> <div class="section"> <p><span class="label">Fatura no:</span> 2025-04-001</p> <p><span class="label">Data de emissao:</span> 24/04/2025</p> <p><span class="label">Periodo de faturacao:</span> 24/03/2025 - 23/04/2025</p> </div> <div class="section"> <div class="label">Cliente:</div> <div class="box"> Mauricio Catulumba Rui<br> Praca do Comercio, no 122 - 5.o<br> 1201-300 Lisboa </div> </div> <div class="section"> <p><span class="label">Servico:</span> Internet (Fibra)</p> <p><span class="label">Valor antes do IVA:</span> EUR 28,77</p> <p><span class="label">IVA (23%):</span> EUR 6,63</p> <p><span class="label">Total (IVA incluido):</span> <strong>EUR 35,40</strong></p> </div> <div class="section"> <p><span class="label">Data limite de pagamento:</span> 05/07/2025</p> <p><span class="label">Referencia MB:</span><br> Entidade: 1234567<br> Referencia: 890123456789</p> </div> <div class="footer"> <p><em>Este documento serve como fatura e comprovativo de residencia, contendo nome, morada, valor, datas e dados oficiais da Vodafone.</em></p> </div> </body> </html>

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Maurício Neves

79674822

Date: 2025-06-22 00:38:13
Score: 1
Natty:
Report link

I guess there may be something lacking between os.environ['CONDA_PREFIX'] and "share".

I wrote a python script test.py

import os
import sys

import rdkit
from rdkit import Chem
from rdkit.Chem import RDConfig

def main():
    sys.path.append(os.path.join(RDConfig.RDContribDir, "SA_Score"))
    import sascorer

    print("RDKit version:", rdkit.__version__)
    print("RDConfig.RDContribDir:", RDConfig.RDContribDir)
    print("done")

if __name__=="__main__":
    main()

and I got

$ python test.py
RDKit version: 2024.03.3
RDConfig.RDContribDir: /home/username/apps/miniforge3/envs/rdkit/share/RDKit/Contrib
done

cf.
https://sishida21.github.io/2021/08/07/rdkit-sascore-calculation-caution/
(in Japanese)

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

79674817

Date: 2025-06-22 00:16:09
Score: 1
Natty:
Report link

Since Vite has a list of default variable environment such as:

import.meta.env.MODE

You must have add prefix VITE_ before your all env variables.
So, APP_SOCKET_URL will be VITE_APP_SOCKET_URL.

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

79674811

Date: 2025-06-22 00:00:06
Score: 1
Natty:
Report link
$photos = DB::table('photos')->select('id', 'name', 'created_at');
$videos = DB::table('videos')->select('id', 'name', 'created_at');
$combined = $photos->union($videos)->tap(function($q){
    $q->orderBy('created_at', 'desc');
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Алешка Зёмин

79674804

Date: 2025-06-21 23:40:02
Score: 3
Natty:
Report link
IIf(Mid([textDate];20;2)="pm";"night";"morning")
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: دليل الخير

79674803

Date: 2025-06-21 23:35:01
Score: 2
Natty:
Report link

Recommend a simple and efficient installation method for BeyckJS using npm install Beyck (function (app) {app. defend (true)})

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

79674802

Date: 2025-06-21 23:34:01
Score: 2
Natty:
Report link

For iOS 26, the best I could approximate using the Sketch template from Apple is a ratio of 25.89% - so multiply your size by 0.2589.

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

79674792

Date: 2025-06-21 23:09:55
Score: 1
Natty:
Report link

Just for additional information purpose to @Shadow 's answer:

SET SESSION MAX_EXECUTION_TIME = 5000; -- 5 s
SELECT SLEEP(1); -- return 0
SELECT SLEEP(10); -- return 1

I then tested what will happen if it's actual data from here:

SET SESSION MAX_EXECUTION_TIME = 1; -- 1ms


SELECT SQL_NO_CACHE *
FROM STUDY_SQL.EMPLOYEES AS FIR
LEFT JOIN STUDY_SQL.EMPLOYEES AS SEC
  ON FIR.BIRTH_DATE <> SEC.BIRTH_DATE
WHERE 
  (FIR.LAST_NAME LIKE 't%o%' OR FIR.LAST_NAME LIKE 'b%i%') 
  AND FIR.FIRST_NAME LIKE '%e%'
  AND (SEC.LAST_NAME LIKE 't%o%' OR SEC.LAST_NAME LIKE 'b%i%')
  AND SEC.FIRST_NAME LIKE '%e%'
  AND SEC.FIRST_NAME LIKE '%b%';

The result is:

15:54:46    SET SESSION MAX_EXECUTION_TIME = 1  0 row(s) affected   0.000 sec

15:54:46    [complex query] LIMIT 0, 1000   Error Code: 3024. Query execution was interrupted, maximum statement execution time exceeded    0.000 sec

So it will throw an exception if it's an actual query and it exceeds the time limit.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Shadow
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Han Han

79674790

Date: 2025-06-21 23:06:53
Score: 6 🚩
Natty: 5.5
Report link

Nowadays we can find it out yet?

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

79674780

Date: 2025-06-21 22:37:47
Score: 0.5
Natty:
Report link

If anyone is still struggling with this in 2025 the regex pattern that works is

"\\(?\\d{3}\\)?-?.?\\s?\\d{3}-?.?\\s?\\d{4}"

for some reason JSX just won't use square brackets properly even when escaping them. It could also be because I have the regex expression in a ternary operator.

pattern={
                name === "phone"
                  ? "\\(?\\d{3}\\)?-?.?\\s?\\d{3}-?.?\\s?\\d{4}"
                  : name === "email"
                  ? "^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$"
                  : undefined
              }
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Reid

79674778

Date: 2025-06-21 22:34:45
Score: 2
Natty:
Report link

Try using constant sizes, like pixels for example, instead of vmin which is based on the smaller dimension of the viewport.

As for the question what is causing it I can't answer exactly it looks like a bug, because it happens on Google Chrome but it works as intended on Edge

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

79674770

Date: 2025-06-21 22:09:39
Score: 4
Natty:
Report link
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @NosakhareKingsley
  • User mentioned (0): @EstusFlask
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Nosakhare Kingsley

79674762

Date: 2025-06-21 21:51:35
Score: 1.5
Natty:
Report link

Restore your vehicle’s shine with expert car paint correction in San Marcos, CA.
Our certified technicians specialize in swirl mark removal, scratch repair, and gloss enhancement.
Using multi-stage machine polishing, we bring back that showroom-quality finish.
We treat every car with precision detailing and the highest-quality products.
Say goodbye to oxidation and dull paint—your clear coat will thank you.
Perfect for daily drivers, luxury cars, and classics needing a refresh.
We’re locally trusted, fully insured, and backed by 5-star reviews.
Pair your correction with a ceramic coating for lasting protection and shine.
Enjoy competitive pricing and —no surprises.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: client work