79708822

Date: 2025-07-21 09:17:57
Score: 1.5
Natty:
Report link

SELECT DISTINCT Number() rowid,

A.COMP_CODE,A.BRANCH_CODE,A.CURRENCY_CODE,A.GL_CODE,A.CIF_SUB_NO,A.SL_NO,A.CV_AMOUNT,('REVERSAL'+''+'TEST' + '' + A.DESCRIPTION) AS A_DESCRIPTION,B.COMP_CODE,B.BRANCH_CODE,B.CURRENCY_CODE,B.GL_CODE,B.CIF_SUB_NO,B.SL_NO,GETDATE() 'INSERT_DATE' ,GETDATE() 'UPDATE_DATE','0' STATUS

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

79708821

Date: 2025-07-21 09:14:56
Score: 3
Natty:
Report link

Unfortunately, there is no such setting - after pasting the code, you have to hit Alt + Enter to import the missing units.

But sounds like an interesting feature to me - maybe you wanna file a feature request here?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: mu88

79708816

Date: 2025-07-21 09:11:55
Score: 1.5
Natty:
Report link

This is caused by a case-sensitivity issue, foo and Foo.
This can be resolved by adding
.config("spark.sql.caseSensitive", "true")

It will treat foo and Foo as different columns.

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

79708805

Date: 2025-07-21 09:03:53
Score: 0.5
Natty:
Report link

Yes, storing data for a web application as a Python dictionary inside the program is feasible — especially for small-scale. But there are important pros and cons to consider. Also, if you want a slightly more scalable approach without going full-on database, libraries like persidict can be an ideal compromise.

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

79708804

Date: 2025-07-21 09:02:52
Score: 1
Natty:
Report link
-- Query to pivot the data
SELECT
    p.Name AS Person,
    MAX(CASE WHEN d.IDIndex = 1 THEN d.Topic END) AS [Index 1 Topic],
    MAX(CASE WHEN d.IDIndex = 1 THEN d.Rating END) AS [Index 1 Rating],
    MAX(CASE WHEN d.IDIndex = 2 THEN d.Topic END) AS [Index 2 Topic],
    MAX(CASE WHEN d.IDIndex = 2 THEN d.Rating END) AS [Index 2 Rating]
FROM
    Person p
LEFT JOIN
    Data d ON p.IDPerson = d.IDPerson
GROUP BY
    p.IDPerson, p.Name
ORDER BY
    p.IDPerson;
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: showsql

79708801

Date: 2025-07-21 08:56:51
Score: 0.5
Natty:
Report link

Since you haven't received any answers yet, I thought I give it a try although it's not exactly what you're looking for.

Instead of changing an existing property, you could create a R# template for a new property. Those templates come with some built-in macros to automate various things, the following docs will give you a good starting point:

I also wrote two blog posts which touch this topic - you might find them useful:

Reasons:
  • Contains signature (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: mu88

79708798

Date: 2025-07-21 08:53:50
Score: 0.5
Natty:
Report link

As of 21.07.2025, there exists a Bulk Data Ingest API for SFMC that is meant for bulk data import jobs.

You create a job definition, then upload data in "chunks", and close the job to initiate its processing. Afterwards, you can check the status of processing.

Uploading data into the job is called staging data. Data needs to be sent in JSON format. You are limited to 1000 data stage calls per job. Recommended size for a staging payload is between 2 and 4 MB, with a hard limit of 6 MB. So you are limited to 1000 * 6 MB JSON data in one job.

You can find the reference here: https://developer.salesforce.com/docs/marketing/marketing-cloud/references/mc_rest_bulk_ingest?meta=Summary

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

79708797

Date: 2025-07-21 08:53:50
Score: 3
Natty:
Report link

I just installed Microsoft.AspNetCore.Mvc.NewtonsoftJson and register this into DI , It resolved

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

79708796

Date: 2025-07-21 08:51:50
Score: 0.5
Natty:
Report link

No, you can not do that. For this purpose, you may use Analytics views: https://learn.microsoft.com/en-us/azure/devops/report/powerbi/what-are-analytics-views?view=azure-devops

or Time Tracking systems: https://marketplace.visualstudio.com/search?term=tim%20traking&target=AzureDevOps&category=All%20categories&sortBy=Relevance

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

79708792

Date: 2025-07-21 08:49:49
Score: 4
Natty:
Report link

Upgrade Aspire.Hosting.Azure to 9.3.2 will fix the PowerShell module SqlServer issue
https://github.com/dotnet/aspire/issues/9926

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

79708789

Date: 2025-07-21 08:48:48
Score: 1
Natty:
Report link

Here's a comparison of R-CNN, Fast R-CNN, Faster R-CNN, and YOLO based on your criteria:

FeatureR-CNNFast R-CNNFaster R-CNNYOLO(1) PrecisionHigh (but slow & outdated)Better than R-CNNBest among R-CNN variants (~83% mAP)Slightly lower (~60-75% mAP) but improves in newer versions (YOLOv8 ~85%)(2) Runtime (Same Image Size)Very Slow (per-region CNN)Faster (shared CNN features)Much Faster (Region Proposal Network)Fastest (single-shot detection)(3) Android Porting SupportPoor (too heavy)Poor (still heavy)Moderate (complex but possible with optimizations)Best (lightweight versions like YOLOv5n, YOLOv8n available)


Best Choice Based on Your Criteria:

  1. If Precision is Top PriorityFaster R-CNN (best accuracy, but slower)

  2. If Runtime is CriticalYOLO (real-time performance, good for mobile)

  3. If Android Porting is NeededYOLO (Tiny versions like YOLOv5n/YOLOv8n)

Overall Best for All Three?YOLO (especially YOLOv5 or YOLOv8 Tiny)

For real-time Android applications, YOLO is the best trade-off. If absolute precision is needed (e.g., medical imaging), Faster R-CNN may still be better, but with higher computational cost.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Kiruthik Roshan

79708784

Date: 2025-07-21 08:42:47
Score: 0.5
Natty:
Report link

If you have a table with recorded created_at and updated_at, it's very likely that at some point you will need to sort query results by updated_at column. For this reason this is worth having updated_at defined as NOT NULL and set whenever new row is inserted.

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

79708779

Date: 2025-07-21 08:37:46
Score: 0.5
Natty:
Report link

Another Go library that would be used: https://github.com/kbinani/screenshot

Install:

go get github.com/kbinani/screenshot

Example:

 package main

 import (
    "github.com/kbinani/screenshot"
    "image/png"
    "os"
    "fmt"
 )

 func main() {
    n := screenshot.NumActiveDisplays()

    for i := 0; i < n; i++ {
        bounds := screenshot.GetDisplayBounds(i)

        img, err := screenshot.CaptureRect(bounds)
        if err != nil {
            panic(err)
        }
        fileName := fmt.Sprintf("%d_%dx%d.png", i, bounds.Dx(), bounds.Dy())
        file, _ := os.Create(fileName)
        defer file.Close()
        png.Encode(file, img)

        fmt.Printf("#%d : %v \"%s\"\n", i, bounds, fileName)
    }
 }
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Miguel A. C.

79708776

Date: 2025-07-21 08:34:45
Score: 1
Natty:
Report link

The best solution is to use yt-dlp.exe and configure a updater that checks and update yt-dlp.exe to latest version. Make you updater more advance and easy to use. Check out this repo, how it uses yt-dlp.exe and a updater --> https://github.com/ukr-projects/yt-downloader-gui. It has been one month I downloaded 100 of videos/shorts and I did not had a single problem while downloading the video. If any type of issue arises, the developer is very fast to respond and solves your error.

Reasons:
  • Whitelisted phrase (-1): solution is
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: nameless monster

79708771

Date: 2025-07-21 08:31:45
Score: 2
Natty:
Report link

Since flutter 3.29, impeller is mandatory on ios, as it is mentionned here :

https://docs.flutter.dev/perf/impeller

If you are on a MAC OS VM on VMWARE workstation (pro or not) you CANNOT enable GPU passtrough.
So you cannot use ios SIMULATOR on that VM MAC OS.

In conclusion, since flutter 3.29, you MUST use a physical MAC OS computer to BUILD and test and RELEASE a flutter ios application.

Maybe there is a way to do it with QEMU on a Ubuntu computer that host a MAC OS VM, but I haven't tried yet.

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

79708766

Date: 2025-07-21 08:27:43
Score: 2.5
Natty:
Report link

You can create the required rules in Requestly and then using its APIs, import them in your automation where Requestly extension is installed. Your modified JavaScript would appear.

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

79708760

Date: 2025-07-21 08:19:41
Score: 9
Natty: 8
Report link

Can anybody please guide, I have specified a time range suppose 1:13pm, and I had a timer whose ending time is 1.5min or 5 min.
What I want is the steps, calories record within that time frame.
Is it possible to achieve it?

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • RegEx Blacklisted phrase (2.5): Can anybody please guide
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can anybody please
  • Low reputation (1):
Posted by: Jawad Khan

79708758

Date: 2025-07-21 08:18:41
Score: 2.5
Natty:
Report link

So, right now the minimum sdk version should be atlease 33 or 34. Try downloading either of the two and then your problem will be solved.

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

79708753

Date: 2025-07-21 08:15:40
Score: 0.5
Natty:
Report link

What annoying this.. From the CLI

duckdb -c "ATTACH 'sqlitedatabase.db' AS sqlite_db (TYPE sqlite); USE sqlite_db; SELECT * FROM Windows10"

And indeed.. 68 rows (40 shown) 6 columns
Even when you choose HTML format or CSV it doesn't show all data!

Yes there is a workaround that you use .maxrows 9999 for example.

That would make the command:

duckdb -c ".maxrows 9999" -c ".maxwidth 9999" -c "ATTACH 'sqlitedatabase.db' AS sqlite_db (TYPE sqlite); USE sqlite_db; SELECT * FROM Windows10"

But still if you ask an export you want it all! And if otherwise you had used LIMIT 10 in your SQL-Query.
Real weird decision from the makers of DuckDB.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: bshogeman

79708746

Date: 2025-07-21 08:10:39
Score: 0.5
Natty:
Report link

Canvas is by default an inline element. And inline elements have a white space underneath them, for the descenders, parts of the letter like "g" or "y" that are below the baseline.

So, just set your canvas to block:

canvas.style.display = 'block';

Or with CSS.

And the meta viewport is a comma-separated list:

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): Can
  • Low reputation (0.5):
Posted by: Prango

79708741

Date: 2025-07-21 08:06:37
Score: 0.5
Natty:
Report link

Thanks to the comments by @musicamante, I realized that I had misunderstood how QMenu works in relation to QActions (which is also reflected in the OP code).

So, if I want to style the item that displays "Options", even if it is created via options_menu = CustomMenu("Options", self), I actually have to set the style in the QMenu that ends up containing this item - which is the menu = QMenu(self).

So, a quick hack of the OP code to demonstrate this is:

# ...
    def contextMenuEvent(self, event):
        menu = QMenu(self)
        style = MenuProxyStyle()          # added
        style.setBaseStyle(menu.style())  # added
        menu.setStyle(style)              # added
# ...

With this, the application renders the "Options" menu as disabled, however reaction to mouse move events is still active, so the submenu popup opens as usual:

app screenshot

... which is basically what I was looking for in OP.

Except, now all items in the main context menu = QMenu(self) appear disabled, whereas I wanted to select only certain items in the menu to appear disabled - so now will have to figure that out ...

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @musicamante
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: sdbbs

79708740

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

User's custom config can be injected to overall RunnableConfig:

from typing import TypedDict

class UserConfig(TypedDict):
    user_id: str

user_config = UserConfig(user_id = "user-123")
config: RunnableConfig = {
    "configurable": {
        "thread_id": "thread-123",
        **user_config
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ebwood

79708725

Date: 2025-07-21 07:52:34
Score: 2
Natty:
Report link

You can use these free tool to do that.
Disclaimer: I have built it :-)

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Yonatan

79708717

Date: 2025-07-21 07:44:32
Score: 3.5
Natty:
Report link

me too. just run get_oauth_token.php again to get new refreshToken

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

79708712

Date: 2025-07-21 07:41:31
Score: 1
Natty:
Report link

Use

jacksonObjectMapper()

from

import com.fasterxml.jackson.module.kotlin.jacksonObjectMapper

(*) in gradle:

implementation("com.fasterxml.jackson.module:jackson-module-kotlin:${jacksonVersion}")

Instead of

ObjectMapper()

And you won't need a

@JsonProperty

for data class.

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

79708710

Date: 2025-07-21 07:37:30
Score: 3.5
Natty:
Report link

Refer this link.
Messaging is not stored in event data . There is a separate table project_id.firebase_messaging.data

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

79708704

Date: 2025-07-21 07:35:30
Score: 1
Natty:
Report link

As observed by Clifford in the comments, the problem was indeed caused by the logpoints in use. According to https://code.visualstudio.com/blogs/2018/07/12/introducing-logpoints-and-auto-attach:

A Logpoint is a breakpoint variant that does not "break" into the debugger but instead logs a message to the console... The concept for Logpoints isn't new... we have seen different flavors of this concept in tools like Visual Studio, Edge DevTools and GDB under several names such as Tracepoints and Logpoints.

The thing that I've missed here is that these can have substantial implications in embedded applications. I had 2 of them set inside the time-sensitive ISR, which disrupted its behavior - possibly halting its execution in order to allow the debugger to evaluate and print the log messages.

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

79708702

Date: 2025-07-21 07:31:28
Score: 9.5
Natty: 6.5
Report link

Have you find any solutions yet ? I was also trying to create one .

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (2): Have you find
  • RegEx Blacklisted phrase (2): any solutions yet ?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mohammed Kasim

79708693

Date: 2025-07-21 07:22:26
Score: 1.5
Natty:
Report link

1)","distributor_id":"com.apple.AppStore","name":"WhatsApp","incident_id":"0BBBC6C9-5A56-41D9-88C3-D3BD57643A66"}

Date/Time: 2025-02-22 23:45:43.185 -0600

End time: 2025-02-22 23:45:46.419 -0600

OS Version: iPhone OS 18.1.1 (Build 22B91)

Architecture: arm64e

Report Version: 53

Incident Identifier: 0BBBC6C9-

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

79708690

Date: 2025-07-21 07:19:25
Score: 0.5
Natty:
Report link

It will work with "sudo reboot" . I was facing this issue in VS Code .

When I login using cmd it worked great , groups were giving dialout and docker but since somehow i suspect vs code preserves the session so closing and restart vs code wasn't working. But Sudo reboot will go for fresh connection. Hence it works

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Low reputation (1):
Posted by: naman anand

79708687

Date: 2025-07-21 07:09:23
Score: 3
Natty:
Report link

dont know what but when i replaced the lookback to 6998, the error was gone. i guess TV wants us to abuse its servers

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

79708685

Date: 2025-07-21 07:08:17
Score: 6
Natty:
Report link

am facing the same issue. has anyone managed to solve it

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Samuel Lukudu

79708684

Date: 2025-07-21 07:07:17
Score: 1
Natty:
Report link

You can try Requestly. You can override inline as well as dynamically injected scripts (like those in data: URLs).

Create "Modify Response Body" rule to target the HTML of the page loading the data: script and replace with your own version.

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

79708682

Date: 2025-07-21 07:04:16
Score: 3.5
Natty:
Report link

The Pyspark version being used was 4.0.0, then It got resolved when I installed lower version of Pyspark that is Pyspark 3.5.6 hence its compatible with JDK11.

Thanks

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

79708664

Date: 2025-07-21 06:46:11
Score: 10.5
Natty: 4.5
Report link

Would you please share your neg sampling function?

I am having a similar issue where my AUC hovers around 0.6. My graph is so low in density (among all possible links, only ~10% actual exists), so I feel the neg sampling would be the bottleneck. I believe your solution can inspire me a lot. Thanks in advance!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): please share your
  • RegEx Blacklisted phrase (3): Thanks in advance
  • No code block (0.5):
  • Me too answer (2.5): I am having a similar issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Hugh LIU

79708655

Date: 2025-07-21 06:42:10
Score: 0.5
Natty:
Report link

check_age is not a node, it should be the router from greet to other three nodes, below is my code:

# https://stackoverflow.com/questions/79702608/why-the-condition-in-the-langraph-is-not-working

from IPython.display import display, Image
from langgraph.graph import StateGraph, START, END
from typing import TypedDict, Literal



class PersonDetails(TypedDict):
    name: str
    age: int


def greet(state: PersonDetails):
    print(f"Hello {state["name"]}")
    return state

# Add Literal here to indicates where the router should go
def check_age(state: PersonDetails) -> Literal["can_drink", "can_drive", "minor"]:
    age = state["age"]
    if age >= 21:
        return "can_drink"
    elif age >= 16:
        return "can_drive"
    else:
        return "minor"


def can_drink(state: PersonDetails):
    print("You can legally drink 🍺")
    return state


def can_drive(state: PersonDetails):
    print("You can drive 🚗")
    return state


def minor(state: PersonDetails):
    print("You're a minor 🚫")
    return state


graph = StateGraph(PersonDetails)
graph.add_node("greet", greet)
graph.add_node("can_drink", can_drink)
graph.add_node("can_drive", can_drive)
graph.add_node("minor", minor)

graph.add_edge(START, "greet")
graph.add_conditional_edges(
    "greet",
    check_age,
    {
        "can_drink": "can_drink",
        "can_drive": "can_drive",
        "minor": "minor"
    }
)

graph.add_edge("can_drink", END)
graph.add_edge("can_drive", END)
graph.add_edge("minor", END)

app = graph.compile()

# can should the whole graph in xx.ipynb notebook
display(Image(app.get_graph().draw_mermaid_png()))
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ebwood

79708645

Date: 2025-07-21 06:36:09
Score: 2
Natty:
Report link
SELECT ... FROM ... USING(cola,colb,colc)

looks like the way to go. It's SQLite too https://www.sqlite.org/syntax/join-constraint.html

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

79708641

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

import shutil

# Move the APK file to a user-friendly name and location

source_path = "/mnt/data/ApnaBazzar_UrvishPatel.apk"

destination_path = "/mnt/data/ApnaBazzar_UrvishPatel_GDrive.apk"

# Copying file to make it ready for Drive sharing

shutil.copy(source_path, destination_path)

destination_path

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

79708638

Date: 2025-07-21 06:31:07
Score: 1.5
Natty:
Report link

The issue is that an id is not assigned to your row.

NavigationLink {
} label: {
    Row(data: row)
        .id(row.id)
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Guru Divagar

79708633

Date: 2025-07-21 06:26:06
Score: 6
Natty: 7
Report link

Can i keep the socket in the room after it is disconnected?

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

79708632

Date: 2025-07-21 06:25:05
Score: 1
Natty:
Report link

Setting up system proxy in Android Studio:

1- open http

2-Find proxy settings

Find proxy settings in android studio

3-copy address and port

address and port in windowse

4-set in android

.set in Settings proxy android studio

set in Settings proxy android studio

or

.set in address and port in gradle.properties

systemProp.http.proxyHost=your address
systemProp.http.proxyPort=your port
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: company meerkats

79708621

Date: 2025-07-21 06:13:02
Score: 4.5
Natty:
Report link

It was my mistake. Problem resolved.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Кирилл Корсук

79708618

Date: 2025-07-21 06:11:01
Score: 0.5
Natty:
Report link

If you're using PyGithub, use github.Github.requester.graphql_query()

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

79708617

Date: 2025-07-21 06:09:00
Score: 2
Natty:
Report link

"is_official_build" worked. Didn't use it earlier as it was inside the section for official chrome branded builds and mentioned it required src-internal. But apparently that's only for Chrome branding and the is_official_build flag can be used in public source and it also controls a bunch of optimizations.

For completeness, I had to also use "chrome_pgo_phase = 0" and set "sudo sysctl -w vm.max_map_count=262144" on linux as per the documentation.

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

79708610

Date: 2025-07-21 06:06:00
Score: 4.5
Natty: 5
Report link

It is possible to connect, like described here: https://blog.consol.de/software-engineering/ibm-mq-jmstoolbox/

It includes also a way to troubleshoot.

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

79708608

Date: 2025-07-21 06:03:59
Score: 3
Natty:
Report link

You could use pod name by setting the pod name as environment variable and accessing it on Spring configuration class

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

79708606

Date: 2025-07-21 06:01:58
Score: 8
Natty: 4.5
Report link

Is it possible to get rid of this?
I bought my skript long tinme agofrom them, but i have no good feelings to get checked from them in any way?
btw. we did a lot of changes, and we would not like to get any 'updates' or insights from them..

(Or to say it clear, is it possible to overwrite this with official laramin?)
Thanks in advance for any comment..

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Is it possible to
  • Blacklisted phrase (1): is it possible to
  • RegEx Blacklisted phrase (3): Thanks in advance
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: Thomas Trawöger

79708592

Date: 2025-07-21 05:48:55
Score: 2
Natty:
Report link

For me, The original Android Emulator version ins 35.6.11, which experienced the same error.

And I downgrade the Android Emulator from 35.6.11 to 34.2.15, and it works.

Go to: https://developer.android.com/studio/emulator_archive

Follow the guide

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

79708590

Date: 2025-07-21 05:44:54
Score: 1.5
Natty:
Report link

For Windows:

If you are on Windows, and this is happening, you can move up the path of your AWS & AWS CLI Installation before the path of your Python Installation in your System Environment Variables. After that restart your terminals, or restart your PC.

Check the attached screenshots for detailed steps:

  1. Open Advanced System Settings

Open Advanced System Settings


  1. Open Advanced System Settings

Edit Environment Variables


  1. Select Path in System Variables and Click Edit ( In case the edit button is disabled, you might not be an administrator or you directly opened environment variables from the start menu, don't do that. Open it from the settings. )

Edit Environment Path Variable


  1. Move Up your AWS Installation Paths, make sure they are before your Python Installation

Move your paths


  1. Restart all your terminals or restart your PC.
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Kuldeep

79708578

Date: 2025-07-21 05:25:50
Score: 2.5
Natty:
Report link

I recommend creating an Intune config profile to sync a Library to Onedrive. Once the policy is created, use the generated values in this script. It works, percentage signs and all.

The only thing the config policy does not generate is the site name. Get the site name from the SharePoint admin page.

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

79708576

Date: 2025-07-21 05:24:50
Score: 1
Natty:
Report link
{
  "error": {
    "code": 403,
    "message": "The request is missing a valid API key.",
    "errors": [
      {
        "message": "The request is missing a valid API key.",
        "domain": "global",
        "reason": "forbidden"
      }
    ]
  }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ahasan Ahasan

79708569

Date: 2025-07-21 05:19:48
Score: 4
Natty:
Report link

@CamilleMcLamb@BigHomieEnt@kevinallenfilms@crossoverphotos@djsashasavic@Beatbyarie23@CeciliaJaneArt@JaynaMarieMUA@trinityviewfarm@TheWhetPalette@JoelTodero@susie_gill@missabowbissa@MANNEQUINSKIN@snicolelane@stormgraysonPW@DannyChaimson@RickPetko@Anthony_MAFS@lovebirdevents@lebkattz@IanMBeckman@Smoko_Ono@djraintree@DjAntoine79@corntgo@lordoftwitt@mastersteveyall@apbenven@COSFilmsINC@JackHaynesArt(duplicate?)@DeLaSoulsDugout@ali_drucker@april_event@fatmoe07@pookieirl@djdmarsh

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: swadhin adhikari

79708567

Date: 2025-07-21 05:15:47
Score: 3
Natty:
Report link

Im getting this error for refresh token why is that:

{
    "error": "unauthorized_client",
    "error_description": "Client certificate missing, or its thumbprint and one in the refresh token did NOT match"
}
Reasons:
  • RegEx Blacklisted phrase (1): Im getting this error
  • RegEx Blacklisted phrase (0.5): why is that
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31100724

79708563

Date: 2025-07-21 05:05:45
Score: 3.5
Natty:
Report link

I know this is a late addition, but would using derived types like token or normalizedString provide you this solution, or do you need to allow for interior line breaks and repetitious whitespace?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: P. Mayo

79708562

Date: 2025-07-21 05:03:44
Score: 2
Natty:
Report link

I think the issue is that, you are not able to resume the workflow graph , after the interrupt is triggered. You need to use Command(resume="some value") to resume the workflow graph, after interrupt is raised.

Here is detailed approach on how to handle interrupts with FastAPI --- https://medium.com/generative-ai/when-llms-need-humans-managing-langgraph-interrupts-through-fastapi-97d0912fb6af

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: chamanthmvs

79708560

Date: 2025-07-21 05:02:44
Score: 2.5
Natty:
Report link

node.children returns only the direct child elements of a node (excluding text and comments) and updates live with DOM changes. In contrast, node.querySelectorAll('*') returns a static list of all descendant elements, not just direct children, and is typically slower due to deeper traversal.

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

79708556

Date: 2025-07-21 04:52:42
Score: 1
Natty:
Report link

Liquid Glass TabView

The Find My app does not appear to use the new Liquid Glass TabView. See attached the UI animations from iOS 26 for a TabView. I think it is likely to be a presentationDetents.

E.g.
.presentationDetents([.fraction(0.1), .medium, .large])

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

79708550

Date: 2025-07-21 04:43:40
Score: 1
Natty:
Report link

I suggest you using an enum inside your entity

public enum IsPrimaryEnum  {
  Y, N
}

Change the entity field to:

@Enumerated(EnumType.STRING)
@Column(name = "is_primary")
private IsPrimaryEnum deviceIsPrimary = IsPrimaryEnum.N;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mohammad Taghi Ahadi

79708548

Date: 2025-07-21 04:39:39
Score: 0.5
Natty:
Report link

You can easily reverse the order of the rows in a column, either in formula, or in a different cell, using:

=INDEX(B1:B6,ROWS(B1:B6)+1-ROW(B1:B6))

(In this case, the range to reverse is B1:B6.)

For use inside a formula, just drop the leading "=" and you're good to go. This will work with any version of Excel back to 2007 when it added the ROWS function. INDEX goes back to my early days with it in 1991, to the best of my recollection. If needed, there are substitutes for the use of ROWS, but they involve functions usually considered less desirable.

The reversed range has no limit on size that its source does not have. And it yields elements that are the same data type as their originals.

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

79708535

Date: 2025-07-21 04:13:34
Score: 1.5
Natty:
Report link

Here is the English prompt (description) for generating an AI video, while keeping the dialogue in Uzbek as you requested:


Prompt (for AI video generation):

A scene outside a mosque. It's daytime. An 80-year-old Uzbek man (otaxon) is slowly walking out of a mosque. The background shows the mosque gate with some people around. A 30-year-old male journalist (muhbir) politely approaches the old man with a microphone. The video has a natural, warm tone.

The dialogue happens in Uzbek:

Muhbir (journalist):
“Assalomu alaykum, amaki. Siz kimning ma’ruzalarini ko‘proq yoqtirasiz?”

Otaxon (elderly man):
“Vaalaykum assalom, bolam. Menga Rahmatulloh domlani ma’ruzalari juda yoqadi. Gaplari yurakka yetib boradi, ko‘ngilga o‘rnashadi.”

Muhbir (with a kind smile):
“Rahmat, amaki, javobingiz uchun katta rahmat!”


Let me know if you want me to generate the video with voice, image, and movement — or need it in a certain style (realistic, animation, etc.).

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Abdulhafiz Abdunazarov

79708534

Date: 2025-07-21 04:11:33
Score: 4
Natty: 6
Report link

You just need to disable "inline suggest" under suggestions.

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

79708529

Date: 2025-07-21 04:02:30
Score: 0.5
Natty:
Report link

As of version 2.7.10, this now works. HeroUI has since fixed the bug with form errors not displaying despite having set validationErrors. Your original implementation will show the errors under the inputs as expected once you upgrade to a newer version of the library:

npm install @heroui@latest
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Eric Amshukov

79708527

Date: 2025-07-21 03:56:29
Score: 1
Natty:
Report link

A simple fix, if you can't install the gymnasium package:

import numpy as np
np.bool8 = np.bool
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: DEEPAK S.V.

79708526

Date: 2025-07-21 03:56:28
Score: 4
Natty:
Report link

Are you looking for $_SERVER['SERVER_NAME'] ?

You can echo all the super globals.

<?php

echo '<pre>';

print_r($_SERVER[]);

echo '</pre>';

?>

But what @okneloper said is correct.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @okneloper
  • Low reputation (1):
Posted by: Oppie

79708522

Date: 2025-07-21 03:44:25
Score: 4
Natty: 4
Report link

Separate LLM from Action Server

ref:

https://forum.rasa.com/t/packaging-version-conflict-with-rasa-and-langchain/61361/9

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

79708517

Date: 2025-07-21 03:28:22
Score: 1
Natty:
Report link

You can also use @rendermode Razor directive and applying a render mode to a component definition.

This works on my end:

@rendermode InteractiveAuto

or to be more specific:

@rendermode InteractiveServer

By applying this directive, it could also solve the given exception.

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

79708508

Date: 2025-07-21 03:11:19
Score: 0.5
Natty:
Report link

When you want to introduce a new dependency through CMake, you need to ensure that you have configured the environment variables for the dependency.

The find_mackage command retrieves these files by searching for environment variables. You need to find the directory where these files are located in the dependencies and add them to the system's environment variables.

If you don't want it to pollute your environment variables, you can also set CMAKE_MODULE_PATH to tell CMake where these files are:

set(CMAKE_MODULE_PATH "path/to/Eigen3Config.cmake") # May be "path/to/eigen3-config.cmake"

CMake does not support automatic downloading of dependencies from the Internet, so you need to download dependencies to your computer in advance before introducing them.

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

79708504

Date: 2025-07-21 03:07:18
Score: 0.5
Natty:
Report link

Following Fildor's advice I decided to implement a source generator to solve this issue. I've never implemented one before, so I'm open to feedback on how to improve this code. Specifically, if anyone has a working example of how to ensure that the ImmutableArray<> class is indeed the System.Collections.Immutable variant I'd be interested.

This code should account for edge cases such as the record being nested within interfaces/classes/records, the record being generic, the ImmutableArrays being nullable, custom Equals/GetHashCode methods already existing, etc.

I decided against locating the records via an attribute, as I want this to be the default behaviour for all of my libraries. I also have the partial check disabled in my codebase, as I want to be notified when I've created a record that has an ImmutableArray property/field and no override of the equals check, as I feel the lack of sequence equality is 'surprising' behaviour despite being the .NET default.

I've also added a custom attribute Key to decorate properties/fields when a subset of fields should uniquely identify the record. This allows for GetHashCode to be more performant by excluding other fields.

Here is the code for the source generator:

using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Text;
using System.Threading;

namespace SourceGenerator;

[Generator(LanguageNames.CSharp)]
public sealed class RecordEqualityGenerator : IIncrementalGenerator {
    private sealed record Field {
        internal Field(string name, bool isImmutableArray, bool isKey) {
            Name = name;
            IsImmutableArray = isImmutableArray;
            IsKey = isKey;
        }

        internal string Name { get; }
        internal bool IsImmutableArray { get; }
        internal bool IsKey { get; }
    }

    public void Initialize(IncrementalGeneratorInitializationContext context) {
        var provider = context.SyntaxProvider.CreateSyntaxProvider(Predicate, Transform);
        context.RegisterSourceOutput(provider, Execute);
    }

    private static bool Predicate(SyntaxNode node, CancellationToken _) {
        if (node is not RecordDeclarationSyntax record)
            return false;

        if (!record.Modifiers.Any(m => m.Text == "partial"))
            return false;

        var hasImmutableArray = false;
        var hasEquals = false;
        var hasGetHashCode = false;
        foreach (var member in record.Members) {
            if (IsImmutableArrayPropertyOrField(member))
                hasImmutableArray = true;
            if (IsEqualsMethod(member, record))
                hasEquals = true;
            if (IsGetHashCodeMethod(member))
                hasGetHashCode = true;
        }

        return hasImmutableArray && (!hasEquals || !hasGetHashCode);
    }

    private static RecordDeclarationSyntax Transform(GeneratorSyntaxContext ctx, CancellationToken _) => (RecordDeclarationSyntax)ctx.Node;

    private static void Execute(SourceProductionContext context, RecordDeclarationSyntax record) {
        const string Indent = "    ";

        var (hasEquals, hasGetHashCode) = HasEqualsAndGetHashCodeMethods(record);

        var recordName = GetNameWithGenericParameters(record);
        var scopes = GetScopes(record);
        var fields = GetPropertyAndFieldNames(record);
        var hashes = GetHashes(fields);
        var filename = GetFilename(record);

        var codeBuilder = new StringBuilder()
            .AppendLine("using SourceGenerator;")
            .AppendLine("using System.Linq;")
            .AppendLine();

        var indent = string.Empty;
        foreach (var scope in scopes) {
            _ = codeBuilder.AppendLine($"{indent}{scope}");
            if (scope.Last() == '{')
                indent += Indent;
        }

        if (!hasEquals) {
            if (fields.Length == 1) {
                _ = codeBuilder.AppendLine($"{indent}public bool Equals({recordName}? other) => other?.{fields[0].Name}.SequenceEqual({fields[0].Name}) ?? false;");
            }
            else {
                var equalityText = GetEqualityText(fields);
                _ = codeBuilder
                    .AppendLine($"{indent}public bool Equals({recordName}? other) {{")
                    .AppendLine($"{indent}    if (other == null)")
                    .AppendLine($"{indent}        return false;")
                    .AppendLine($"{indent}    if (ReferenceEquals(this, other))")
                    .AppendLine($"{indent}        return true;")
                    .AppendLine()
                    .AppendLine($"{indent}    return {equalityText};")
                    .AppendLine($"{indent}}}");
            }

            if (!hasGetHashCode)
                _ = codeBuilder.AppendLine();
        }

        if (!hasGetHashCode) {
            if (hashes.Length == 1) {
                _ = codeBuilder.AppendLine($"{indent}public override int GetHashCode() => {hashes[0]};");
            }
            else {
                _ = codeBuilder
                    .AppendLine($"{indent}public override int GetHashCode() {{")
                    .AppendLine($"{indent}    const int mod = 92821;")
                    .AppendLine($"{indent}    var hash = 17;")
                    .AppendLine()
                    .AppendLine($"{indent}    unchecked {{");
        
                foreach (var hash in hashes)
                    _ = codeBuilder.AppendLine($"{indent}        hash = hash * mod + {hash};");

                _ = codeBuilder
                    .AppendLine($"{indent}    }}")
                    .AppendLine()
                    .AppendLine($"{indent}    return hash;")
                    .AppendLine($"{indent}}}");
            }
        }

        foreach (var scope in scopes) {
            if (scope.Last() != '{')
                continue;

            indent = indent.Substring(0, indent.Length - Indent.Length);
            _ = codeBuilder.AppendLine($"{indent}}}");
        }

        context.AddSource(filename, codeBuilder.ToString());
    }

    private static (bool HasEquals, bool HasGetHashCode) HasEqualsAndGetHashCodeMethods(RecordDeclarationSyntax record) {
        var hasEquals = false;
        var hasGetHashCode = false;
        foreach (var member in record.Members) {
            if (member is not MethodDeclarationSyntax method)
                continue;

            switch (method.Identifier.Text) {
                case "Equals":
                    if (IsEqualsMethod(method, record))
                        hasEquals = true;
                    break;
                case "GetHashCode":
                    if (IsGetHashCodeMethod(method))
                        hasGetHashCode = true;
                    break;
                default:
                    break;
            }
        }
        return (hasEquals, hasGetHashCode);
    }

    private static bool IsEqualsMethod(MemberDeclarationSyntax member, RecordDeclarationSyntax record) {
        if (member is not MethodDeclarationSyntax method)
            return false;
        if (method.Identifier.Text != "Equals")
            return false;
        if (!method.Modifiers.Any(m => m.Text == "public"))
            return false;
        if (method.Modifiers.Any(m => m.Text == "static"))
            return false;
        if (method.ReturnType is not PredefinedTypeSyntax returnType)
            return false;
        if (returnType.Keyword.Text != "bool")
            return false;
        if (method.ParameterList.Parameters.Count != 1)
            return false;
        if (method.ParameterList.Parameters[0].Type is not NullableTypeSyntax nullableParameter)
            return false;

        if (record.TypeParameterList?.Parameters.Any() ?? false) {
            if (nullableParameter.ElementType is not GenericNameSyntax genericName)
                return false;
            if (genericName.Identifier.Text != record.Identifier.Text)
                return false;
            if (genericName.TypeArgumentList.Arguments.Count != record.TypeParameterList.Parameters.Count)
                return false;
            if (!genericName.TypeArgumentList.Arguments.All(a => a is IdentifierNameSyntax))
                return false;
            if (!genericName.TypeArgumentList.Arguments.Cast<IdentifierNameSyntax>().Select(a => a.Identifier.Text).SequenceEqual(record.TypeParameterList.Parameters.Select(p => p.Identifier.Text)))
                return false;
            return true;
        }

        if (nullableParameter.ElementType is not IdentifierNameSyntax identifierName)
            return false;
        if (identifierName.Identifier.Text != record.Identifier.Text)
            return false;
        return true;
    }

    private static bool IsGetHashCodeMethod(MemberDeclarationSyntax member) {
        if (member is not MethodDeclarationSyntax method)
            return false;
        if (method.Identifier.Text != "GetHashCode")
            return false;
        if (!method.Modifiers.Any(m => m.Text == "public"))
            return false;
        if (!method.Modifiers.Any(m => m.Text == "override"))
            return false;
        return true;
    }

    private static ImmutableArray<string> GetScopes(RecordDeclarationSyntax record) {
        return Get(record).Reverse().ToImmutableArray();

        static IEnumerable<string> Get(RecordDeclarationSyntax record) {
            for (SyntaxNode? current = record; current != null; current = current.Parent) {
                var scope = current switch {
                    FileScopedNamespaceDeclarationSyntax node => $"namespace {node.Name};\r\n",
                    NamespaceDeclarationSyntax node => $"namespace {node.Name} {{",
                    RecordDeclarationSyntax node => $"{GetModifierPrefix(node)}record {GetNameWithGenericParameters(node)} {{",
                    ClassDeclarationSyntax node => $"{GetModifierPrefix(node)}class {GetNameWithGenericParameters(node)} {{",
                    InterfaceDeclarationSyntax node => $"{GetModifierPrefix(node)}interface {GetNameWithGenericParameters(node)} {{",
                    _ => null
                };
                if (scope != null)
                    yield return scope;
            }
        }
    }

    private static string GetNameWithGenericParameters(TypeDeclarationSyntax type) {
        if (type.TypeParameterList == null || !type.TypeParameterList.Parameters.Any())
            return type.Identifier.Text;

        var parameters = type.TypeParameterList.Parameters.Select(p => p.Identifier.Text);
        var parametersText = string.Join(", ", parameters);
        return $"{type.Identifier.Text}<{parametersText}>";
    }

    private static string GetModifierPrefix(TypeDeclarationSyntax type) {
        var builder = new StringBuilder();
        foreach (var modifier in type.Modifiers)
            _ = builder.Append($"{modifier} ");
        return builder.ToString();
    }

    private static ImmutableArray<Field> GetPropertyAndFieldNames(RecordDeclarationSyntax record) {
        var fields = ImmutableArray.CreateBuilder<Field>();
        foreach (var member in record.Members) {
            if (member is PropertyDeclarationSyntax property) {
                var isImmutableArray = IsImmutableArrayProperty(property);
                var isKey = property.AttributeLists.SelectMany(l => l.Attributes).Any(a => a.Name is IdentifierNameSyntax name && name.Identifier.Text == "Key");
                fields.Add(new(property.Identifier.Text, isImmutableArray, isKey));
            }
            else if (member is FieldDeclarationSyntax field) {
                var isImmutableArray = IsImmutableArrayField(field);
                var isKey = field.AttributeLists.SelectMany(l => l.Attributes).Any(a => a.Name is IdentifierNameSyntax name && name.Identifier.Text == "Key");
                foreach (var variable in field.Declaration.Variables)
                    fields.Add(new(variable.Identifier.Text, isImmutableArray, isKey));
            }
        }
        return fields.ToImmutable();
    }


    private static bool IsImmutableArrayPropertyOrField(MemberDeclarationSyntax member) {
        if (member is PropertyDeclarationSyntax property)
            return IsImmutableArrayProperty(property);
        if (member is FieldDeclarationSyntax field)
            return IsImmutableArrayField(field);
        return false;
    }

    private static bool IsImmutableArrayProperty(PropertyDeclarationSyntax property) {
        if (property.Type is GenericNameSyntax generic) {
            if (generic.Identifier.Text != "ImmutableArray")
                return false;
            if (generic.TypeArgumentList.Arguments.Count != 1)
                return false;
            return true;
        }

        if (property.Type is not NullableTypeSyntax nullable)
            return false;
        if (nullable.ElementType is not GenericNameSyntax nullableGeneric)
            return false;
        if (nullableGeneric.Identifier.Text != "ImmutableArray")
            return false;
        if (nullableGeneric.TypeArgumentList.Arguments.Count != 1)
            return false;
        return true;
    }

    private static bool IsImmutableArrayField(FieldDeclarationSyntax field) {
        if (field.Declaration.Type is GenericNameSyntax generic) {
            if (generic.Identifier.Text != "ImmutableArray")
                return false;
            if (generic.TypeArgumentList.Arguments.Count != 1)
                return false;
            return true;
        }

        if (field.Declaration.Type is not NullableTypeSyntax nullable)
            return false;
        if (nullable.ElementType is not GenericNameSyntax nullableGeneric)
            return false;
        if (nullableGeneric.Identifier.Text != "ImmutableArray")
            return false;
        if (nullableGeneric.TypeArgumentList.Arguments.Count != 1)
            return false;
        return true;
    }

    private static string GetEqualityText(ImmutableArray<Field> fields) {
        var builder = new StringBuilder();
        var isFirst = true;
        foreach (var field in fields.Where(f => !f.IsImmutableArray)) {
            if (!isFirst)
                _ = builder.Append(" && ");
            _ = builder.Append($"{field.Name} == other.{field.Name}");
            isFirst = false;
        }
        foreach (var field in fields.Where(f => f.IsImmutableArray)) {
            if (!isFirst)
                _ = builder.Append(" && ");
            _ = builder.Append($"{field.Name}.SequenceEqual(other.{field.Name})");
            isFirst = false;
        }
        return builder.ToString();
    }

    private static ImmutableArray<string> GetHashes(ImmutableArray<Field> fields) {
        var keys = fields.Where(f => f.IsKey).ToImmutableArray();
        if (!keys.IsEmpty)
            fields = keys;

        var hashes = ImmutableArray.CreateBuilder<string>(fields.Length);
        foreach (var field in fields.Where(f => !f.IsImmutableArray))
            hashes.Add($"{field.Name}.GetHashCode()");
        foreach (var field in fields.Where(f => f.IsImmutableArray))
            hashes.Add($"{field.Name}.GenerateSequenceHashCode()");
        return hashes.MoveToImmutable();
    }

    private static string GetFilename(RecordDeclarationSyntax record) {
        var parts = GetParts(record).Reverse();
        var stem = string.Join(".", parts);
        return $"{stem}.g.cs";

        static IEnumerable<string> GetParts(RecordDeclarationSyntax record) {
            for (SyntaxNode? current = record; current != null; current = current.Parent) {
                var scope = current switch {
                    FileScopedNamespaceDeclarationSyntax node => node.Name.ToString(),
                    NamespaceDeclarationSyntax node => node.Name.ToString(),
                    RecordDeclarationSyntax node => GetFilenamePartWithGenericParameters(node),
                    ClassDeclarationSyntax node => GetFilenamePartWithGenericParameters(node),
                    InterfaceDeclarationSyntax node => GetFilenamePartWithGenericParameters(node),
                    _ => null
                };
                if (scope != null)
                    yield return scope;
            }
        }
    }

    private static string GetFilenamePartWithGenericParameters(TypeDeclarationSyntax type) {
        if (type.TypeParameterList == null || !type.TypeParameterList.Parameters.Any())
            return type.Identifier.Text;

        var parameters = type.TypeParameterList.Parameters.Select(p => p.Identifier.Text);
        var parametersText = string.Join(", ", parameters);
        return $"{type.Identifier.Text}[{parametersText}]";
    }
}

This is an attribute I implemented that enables for more efficient GetHashCode generation when a subset of fields should uniquely identify the record:

using System;

namespace SourceGenerator;

[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false, Inherited = false)]
public sealed class KeyAttribute : Attribute { }

And these are the extension methods for generating a hash code for an ImmutableArray based off the elements it contains, and for wrappering sequence equality on nullable ImmutableArrays:

using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;

namespace SourceGenerator;

public static class Extensions {
    public static bool SequenceEqual<T>(this Nullable<ImmutableArray<T>> self, Nullable<ImmutableArray<T>> other, IEqualityComparer<T>? comparer = null) {
        if (self == null)
            return other == null;
        if (other == null)
            return false;
        return self.Value.SequenceEqual(other.Value, comparer);
    }

    public static int GenerateSequenceHashCode<T>(this ImmutableArray<T> values) where T : notnull {
        const int mod = 92821;
        var hash = 17;

        unchecked {
            foreach (var value in values)
                hash = hash * mod + value.GetHashCode();
        }

        return hash;
    }

    public static int GenerateSequenceHashCode<T>(this Nullable<ImmutableArray<T>> values) where T : notnull => values != null ? values.GenerateSequenceHashCode() : 0;
}
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Bioinformagician

79708500

Date: 2025-07-21 02:52:16
Score: 1.5
Natty:
Report link

First of all, go to the folder where our script will be located and define a new environment:

python3 -m venv .

Next, install selenium:

./bin/pip install selenium

Install webdriver_manager:

./bin/pip install webdriver-manager

Now the most important thing: we specify the path to our manager. I don’t understand why it should be specified manually, but apparently it should (thanks to https://stackoverflow.com/a/63415104/28821514).

import sys
sys.path.append("./lib/python3.12/site-packages")

Then do everything according to the manual. You may have some other errors, but the webdriver_manager should be imported.

from selenium import webdriver
from selenium.webdriver.chrome.service import Service as BraveService
from webdriver_manager.chrome import ChromeDriverManager
from webdriver_manager.core.os_manager import ChromeType
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Nikulok

79708488

Date: 2025-07-21 02:27:11
Score: 2.5
Natty:
Report link

none of these is modifying my variable product out of stock message, still displays

This product is currently out of stock and unavailable.

Ive also tried this snippet

// Universal out-of-stock message for all product types (simple, variable, variations)
add_filter('woocommerce_get_availability_text', function($availability, $product) {
    if (!$product->is_in_stock()) {
        return 'Seems like this product may be only available via special order. Please <a href="/contact/">contact us</a>.';
    }
    return $availability;
}, 10, 2);

add_filter('woocommerce_get_availability', function($availability, $product) {
    if (!$product->is_in_stock()) {
        $availability['availability'] = 'Seems like this product may be only available via special order. Please <a href="/contact/">contact us</a>.';
    }
    return $availability;
}, 10, 2);

and this one too

add_filter('the_content', function($content) {
    $search = 'This product is currently out of stock and unavailable.';
    $replace = 'Seems like this product may be only available via special order. Please <a href="/contact/">contact us</a>.';
    if (strpos($content, $search) !== false) {
        $content = str_replace($search, $replace, $content);
    }
    return $content;
});

Nothing modifies that out of stock product on the variable products that have no price, any ideas?

Reasons:
  • Blacklisted phrase (1): any ideas
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Lautaro Gatti

79708473

Date: 2025-07-21 01:51:03
Score: 2
Natty:
Report link

Not sure if you're still stuck, but it seems like your glyphicons version might be incompatible with Angular 16.

I would suggest

  1. Upgrade glyphicons to latest version

  2. Use an alternative icons library

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

79708461

Date: 2025-07-21 01:18:57
Score: 2
Natty:
Report link

I have found that some fields (datatypes) can't be changed while there is data in those fields.

If possible, delete all data from that field from all documents and apply your change again, it should work. Then just re-index your data.

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

79708458

Date: 2025-07-21 00:59:54
Score: 3.5
Natty:
Report link

I typed brew install libtiff

but the system do not recognize brew

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

79708457

Date: 2025-07-21 00:57:53
Score: 2
Natty:
Report link

Just doing 'Invalidate Caches and restart' worked for me

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

79708453

Date: 2025-07-21 00:47:51
Score: 1
Natty:
Report link

there is an easy solution for this problem instead of typing:

tr{

border-bottom:...;

}

you type :

th,td,table{

 border-bottom:...;
border-collapse:collapse;

}

it should work cause i had your same problem before

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

79708445

Date: 2025-07-21 00:19:45
Score: 1.5
Natty:
Report link

Have you tried forcing a resolution?

scrcpy -m 1024

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: behelit

79708438

Date: 2025-07-20 23:43:39
Score: 1.5
Natty:
Report link

To combine multiple repositories into single repository (monorepo), you can use git subtree.

https://github.com/git/git/blob/master/contrib/subtree/git-subtree.adoc

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

79708437

Date: 2025-07-20 23:42:39
Score: 0.5
Natty:
Report link

my error on writing too: go environment path setting:

HADOOP_HOME
C:\hadoop\hadoop-3

important! Add PATH C:\hadoop\hadoop-3\bin;

make sure you have the winuntils.exe can be find

create a .env in your project, contain:

HADOOP_HOME=C:\hadoop\hadoop-3
PYSPARK_PYTHON=.venv\Scripts\python.exe
PYSPARK_DRIVER_PYTHON=.venv\Scripts\python.exe

my error as below solved:

write not work: 25/07/20 18:18:12 ERROR FileFormatWriter: Aborting job a32653e8-dddf-4a0d-8aa2-d1fc9731050f.
java.lang.UnsatisfiedLinkError: 'boolean org.apache.hadoop.io.nativeio.NativeIO$Windows.access0(java.lang.String, int)'
        at org.apache.hadoop.io.nativeio.NativeIO$Windows.access0(Native Method)
        at org.apache.hadoop.io.nativeio.NativeIO$Windows.access(NativeIO.java:793)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31099149

79708432

Date: 2025-07-20 23:20:35
Score: 2
Natty:
Report link

Try to use hero ui beta version. I use "@heroui/react": "^2.8.0-beta.8".

Set main css like in documentation of TW4 in HeroUI (https://www.heroui.com/docs/guide/tailwind-v4),

but call node_modules first, then @plugin hero.ts.

=>app/globals.css

```css

@import 'tailwindcss';

@source '../../node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}';

@custom-variant dark (&:is(.dark *));

@plugin './hero.ts';

```

It works for my project.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @plugin
  • User mentioned (0): @import
  • User mentioned (0): @source
  • User mentioned (0): @custom-variant
  • User mentioned (0): @plugin
  • Low reputation (0.5):
Posted by: achmad rizky

79708431

Date: 2025-07-20 23:19:34
Score: 2
Natty:
Report link

i was getting same issue after inspecting the page i realised it was an issue with my css not being loaded i just turned wifi then it worked after

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

79708429

Date: 2025-07-20 23:10:33
Score: 1.5
Natty:
Report link
jav

function replyToThread() { var threads = GmailApp.search('subject:"Your Subject"'); if (threads.length > 0) { threads[0].reply("Your reply message here"); }

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

79708410

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

Try activating conda manually to isolate the problem:

source ~/anaconda3/etc/profile.d/conda.sh
 conda activate base
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Marjan Esehaghi

79708398

Date: 2025-07-20 21:36:15
Score: 3.5
Natty:
Report link

Can you plz share the complete code or github if it works it tried with serval times but failed to get icon.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Abrar

79708393

Date: 2025-07-20 21:33:13
Score: 4
Natty:
Report link

https://gist.github.com/ketabbody/d1febd21ff48417bf598854a756265b3

نمونه سوالات آزمون مربیگری بدنسازی درجه 3

---------------------------------------------------------------------------------------------------------------

[email protected]

https://gist.github.com/ketabmorabi/c65329ac62eecd85892df81b36a4e9d8

کتاب مربیگری بدنسازی درجه 3

---------------------------------------------------------------------------------------------------------------

[email protected]

https://gist.github.com/soalatestekhdami/ca4780772fcd054081bf530782a6bef0

دانلود سوالات استخدامی آموزش و پرورش

---------------------------------------------------------------------------------------------------------------

[email protected]

https://gist.github.com/azmondarajese/7993f3d39a467e834a4e32be47438cd9

نمونه سوالات آزمون مربیگری بدنسازی درجه 3

---------------------------------------------------------------------------------------------------------------

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • No latin characters (2.5):
  • Filler text (0.5): ---------------------------------------------------------------------------------------------------------------
  • Filler text (0): ---------------------------------------------------------------------------------------------------------------
  • Filler text (0): ---------------------------------------------------------------------------------------------------------------
  • Filler text (0): ---------------------------------------------------------------------------------------------------------------
  • Low reputation (1):
Posted by: chadkade

79708389

Date: 2025-07-20 21:22:11
Score: 0.5
Natty:
Report link

This third party plugin is currently not actively maintained and is not compatible with Gatling 3.14. Either check with its author if he could upgrade (or contribute yourself), or downgrade your Gatling version, or switch to the other plugin as it’s actively maintained.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Stéphane LANDELLE

79708381

Date: 2025-07-20 21:11:09
Score: 0.5
Natty:
Report link

Both are statistically performance‑equivalent unless the data is not normally distributed, i.e., the condition is about fifty‑fifty true and false. Therefore, you should consider using one of the two depending on the distribution of your data. If your data consists of 90% false values, then using All() will perform poorly.

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

79708360

Date: 2025-07-20 20:44:03
Score: 2.5
Natty:
Report link

That's because you are in the IAM Identity Center and not in the IAM dashboard. You can search "Policies" in the search box, this will guide you to the IAM dashboard.

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

79708358

Date: 2025-07-20 20:41:02
Score: 2
Natty:
Report link

For uTidylib version 0.9 and later, in Windows, we can set an Environment Variable named:

TIDY_LIBRARY_FULL_PATH to: C:\Program Files\tidy 5.8.0\bin\tidy.dll

(I needed to specify the "tiny.dll" name, not just the path)

See: "Added support for specifying library full path using TIDY_LIBRARY_FULL_PATH"

https://utidylib.readthedocs.io/en/latest/#id3

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Stephen Bridgett

79708351

Date: 2025-07-20 20:28:59
Score: 0.5
Natty:
Report link

As of PHP 8.1 there's a syntax for it - https://www.php.net/manual/en/functions.first_class_callable_syntax.php

class MyClass
{
  function myFunc1()
  {
     ...
  }
  function myFunc2()
  {
    $callable = $this->myFunc1(...);
    $callable();
  }
}
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Roman Hocke

79708349

Date: 2025-07-20 20:26:59
Score: 0.5
Natty:
Report link

You should only call init_beanie once, and the other connections use from the same connection pool.

I also had some issue and had to figure this out on my own. Cheers!

from fastapi import FastAPI
from beanie import init_beanie
from motor.motor_asyncio import AsyncIOMotorClient

config = dotenv_values(".env")

conn_str = config['MONGO_URI'] # change this to the MONGO-DB connection string
database_name = config['DB_NAME'] # change this to the MONGO-DB database name

@asynccontextmanager
async def lifespan(app: FastAPI):
    app.db = AsyncIOMotorClient(conn_str).get_database(database_name)
    # ensure to add all the Models created to the `documents_models` list below
    await init_beanie(app.db, document_models=[
        Customer, CustomerID, CustomerUpdate,
        Car, CarID, CarUpdate,
        Order,
    ]) # add the Models to the DB
    # models are the database repr you created using beanie. They must all be added inside the documents-models array.

    print("DB connection successful...")
    yield
    print("!! Shutdown complete !!")
Reasons:
  • Blacklisted phrase (1): Cheers
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dayo

79708348

Date: 2025-07-20 20:25:58
Score: 0.5
Natty:
Report link

I had the same issues and I realized that all I needed was to downgrade from v4 to v3

  1. npm install tailwindcss@v3

  2. npm install -D tailwind-scrollbar@3

That's it!

Reasons:
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dennis Mbugua

79708335

Date: 2025-07-20 20:01:53
Score: 8
Natty: 5.5
Report link

bro can u give me a source to learn creating trojan whit C ?

Reasons:
  • RegEx Blacklisted phrase (2.5): can u give me
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: moh-hj

79708333

Date: 2025-07-20 19:58:51
Score: 5.5
Natty: 6
Report link

Great one to explore https://mysteryhackers.com/ and good news

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

79708332

Date: 2025-07-20 19:57:51
Score: 1.5
Natty:
Report link

I just made a CLI Tool that shares the .envs inside the root directory of a monorepo into every project we have

Just run this in the root of your repo:

npx envsyncer

https://github.com/novincode/envsyncer

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

79708330

Date: 2025-07-20 19:56:51
Score: 3.5
Natty:
Report link

Here is an article which talks about it : https://www.oxelya.com/blog/contruire-requetes-next-js, u have to catch your params in a Promise at ur initial request and then await them

Before : params = await user.id,etc....

Now : {user, userId, etc...} = await params

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

79708318

Date: 2025-07-20 19:45:48
Score: 1.5
Natty:
Report link

I was using blogger a long time ago, this problem is not because of google search console and your action with add script to some posts, it's because you disabled Blog Feed

To fix it go to Blogger settings, then make sure to set it to "Full" like in this image screenshot

enter image description here

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

79708310

Date: 2025-07-20 19:30:46
Score: 0.5
Natty:
Report link

Sage Pro ERP SDK – High-Level Overview

The Sage Pro ERP SDK is a development toolkit that enables developers to customize, extend, and integrate with the Sage Pro ERP system (formerly known as ACCPAC Pro Series). It’s designed primarily for experienced developers familiar with business logic and database systems.


Key Technologies & Interfaces


Development Capabilities


Important Notes

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

79708308

Date: 2025-07-20 19:26:45
Score: 1
Natty:
Report link

Turn out, all I needed was to remove "launchAutoHide": false option from my capacitor.config.json. In my case, it was already set to false, though. From the capacitor documentation:

Hiding the Splash Screen

By default, the Splash Screen is set to automatically hide after 500 ms.

If you want to be sure the splash screen never disappears before your app is ready, set launchAutoHide to false; the splash screen will then stay visible until manually hidden. For the best user experience, your app should call hide() as soon as possible.

If, instead, you want to show the splash screen for a fixed amount of time, set launchShowDuration in your Capacitor configuration file.

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: degD

79708295

Date: 2025-07-20 19:01:40
Score: 0.5
Natty:
Report link

A solution that does not require looking at the transcription strings and guessing if the words actual represent a new piece of speech:

I have only tested this on MacOS and not on iOS so take it with a grain of sand, but I have found that the bestTranscription will generally be emptied/reset after the speechRecognitionMetadata field in the result is not nil.

Which means that gathering the complete transcription is simply a matter of concatenating all the transcriptions when the speechRecognitionMetadata is present:

var cominedResult = ""

func combineResults(result: SFSpeechRecognitionResult) {
    if (result.speechRecognitionMetadata != nil) {
        cominedResult += ". " + result.bestTranscription.formattedString
    } 
    else {
        // I still want to print intermediate results, you might not want this.
        let intermediate = cominedResult + ". " + result.bestTranscription.formattedString
        print(intermediate)
    }
}
Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Matt

79708287

Date: 2025-07-20 18:47:37
Score: 0.5
Natty:
Report link

enter image description here i have solved most of the complex scenarios using FILTER Function here is the explanation which i have given step by step

(1.)First find the MAX-You will get the MAX number

(2.)now this MAX number at what position is present we will use SEARCH from that array.

(3.)This SEARCH will definitely give an error where it doesn't find this number from that array and a number(position) where it finds.

(4.)So obviously the FILTER function accepts Boolean data in the include argument,so we will turn this SEARCH into Boolean by ISNUMBER.

(5.)So this will convert into TRUE/FALSE.

(6.)now what we want to filter?

subjects right?

So Filter the subjects where there is TRUE

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-2): i have solved
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Aishwarya Borkar