79703922

Date: 2025-07-16 19:18:45
Score: 1.5
Natty:
Report link

You may have set the variable that is not return in the response data. Check it in the response data and make sure your response has right data.

For Instance:

request = https://postman-api/%7B%7Bid%7D}
response = {data: {key1: 1, key2: 2}}

On Script Tab: you might be setting the variable to the unknown variable.
pm.environment.set('id', id)

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

79703918

Date: 2025-07-16 19:15:44
Score: 1
Natty:
Report link

I find mancini0's answer over at https://stackoverflow.com/a/63309367/527489 to be more helpful:

some examples for your .bazelrc

build --local_ram_resources=HOST_RAM*.5 --local_cpu_resources=HOST_CPUS-1 (leave one core free)

or

build --local_cpu_resources=1 (use a single core)

See https://docs.bazel.build/versions/master/command-line-reference.html#flag--local_cpu_resources

The currently accepted answer [to Is there a way to limit the number of CPU cores Bazel uses?] is deprecated.

Note that instead of configuring your user.bazelrc or ~/.bazelrc, you can instead just pass these on the command line, such as:

bazel build --local_cpu_resources=1 -c opt //npsw/...
bazel test --local_cpu_resources=1 -c opt //npsw/...
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (1): Is there a way
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: sage

79703915

Date: 2025-07-16 19:11:43
Score: 5
Natty: 5
Report link

If array items cannot be deleted can we not use size and read till that using index instead of iterator?

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

79703911

Date: 2025-07-16 19:06:41
Score: 2
Natty:
Report link

The best I have been able to come up with is
ifconfig eth2 down && udevadm trigger -s net -a address="68:f7:28:1b:31:b5" -c add && systemctl restart NetworkManager.service

That will work if the interface name is currently eth2 and you have a rule like

SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="68:f7:28:1b:31:b5", ATTR{dev_id}=="0x0", ATTR{type}=="1", NAME="eth3"

So you get a interface named eth3 and NetworkManager is running.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Francis Larson

79703904

Date: 2025-07-16 19:02:40
Score: 2
Natty:
Report link

This is a bug with windows. mdns domains do not have a concept of subdomains, so MyMqttService.mqtt.local is not a part of mqtt.local but is instead its own domain with its own IP. Windows, however, treats any domain with multiple dots as a subdomain, even mdns domains; Windows sees that mqtt.local is not a valid domain and thus gives up without even trying "MyMqttService.mqtt.local". This is unfortunately not fixable on the user end.

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

79703902

Date: 2025-07-16 18:59:39
Score: 4
Natty: 4
Report link

It is possible to look it with vim or neovim as well.

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

79703899

Date: 2025-07-16 18:57:34
Score: 6
Natty:
Report link

Having similar issue with Google search console. Where do you add this code within wordpress?

"eventAttendanceMode": "https://schema.org/OnlineEventAttendanceMode",
  "location": {
    "@type": "VirtualLocation",
    "url": "https://operaonline.stream5.com/"
    },
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): Having similar issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Zach

79703868

Date: 2025-07-16 18:34:28
Score: 3
Natty:
Report link

What do the function signatures inside your interfaces look like, and what does WidgetAdmin inherit? I wouldn't expect any problems because you're using the recurring generic pattern, which I have a feeling you might not be implementing correctly. You also shouldn't be calling base(page) because there's no base class to call the constructor of; do you have a WidgetBase class implementing IWidgetBase<T> that you're inheriting from in both WidgetPage and WidgetAdmin that isn't shown in the example you gave?

I tried re-creating what you've described and this seems to work fine:

public interface IWidgetBase<TSelf> : ISearch<TSelf>, IStuff<TSelf> where TSelf : class
{
    public abstract Task<TSelf> SearchAsync();

    public abstract Task<TSelf> StuffAsync();
}

public interface IWidgetAdmin<TSelf> : IWidgetBase<TSelf>, IDeleteWidget where TSelf : class { }

public interface IPage { }
public interface ISearch<T> { }
public interface IStuff<T> { }
public interface IDeleteWidget { }

public class WidgetPage : IWidgetBase<WidgetPage>
{
    public WidgetPage(IPage page) { }

    public async Task<WidgetPage> SearchAsync() => this;

    public async Task<WidgetPage> StuffAsync() => this;
}

public class WidgetAdmin : IWidgetAdmin<WidgetAdmin>
{
    public WidgetAdmin(IPage page) { }
    public async Task<WidgetAdmin> SearchAsync() => this;

    public async Task<WidgetAdmin> StuffAsync() => this;
}
Reasons:
  • RegEx Blacklisted phrase (2.5): do you have a
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What do the
  • Low reputation (1):
Posted by: Eb3yr

79703867

Date: 2025-07-16 18:34:28
Score: 1
Natty:
Report link

As far as I know, there are no options capable of doing what you want that are globally accepted, but plus-lighter is fortunately supported across several browsers.

Perhaps your best option would be to write a custom method that takes both colors and adds them. This question could be of great help.

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

79703860

Date: 2025-07-16 18:26:26
Score: 4.5
Natty: 4.5
Report link

I think the default size is 1024 and you've specified int16 so you'd need to return 2048 bytes. Try setting your periodsize to 2048?

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

79703852

Date: 2025-07-16 18:19:24
Score: 2
Natty:
Report link

This term limit cannot be set in any way, unfortunately. You could consider limiting the length of the paragraph used as a query to avoid this, similar paragraphs would probably be found even if you omit some words. If you think a setting would still be useful consider creating an issue at https://github.com/vespa-engine/vespa/issues

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

79703849

Date: 2025-07-16 18:17:23
Score: 2.5
Natty:
Report link

I had a similar situation with .NET code. There was a mismatch on the order data received and the way it is parsed in the code. It was breaking the loop. Debug and check for such condition in the code

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

79703848

Date: 2025-07-16 18:16:23
Score: 0.5
Natty:
Report link

just use:

gsub("(.*?)(?<!\\.)\\.\\..*", "\\1", 'PAN3.AS1..100288730', perl = T)

syntex

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

79703846

Date: 2025-07-16 18:16:23
Score: 2.5
Natty:
Report link

Try https://github.com/thomasmanjooran/ai-reqs. Easy to install and use. Also reads Jupyter Notebooks for dependencies., and no encoding issues.

I developed it myself, when I ran to similar issues.

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

79703843

Date: 2025-07-16 18:09:21
Score: 4.5
Natty:
Report link

Try: pattern = "{1}<<&plusmn{2}>>"

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ashleigh Montgomery

79703841

Date: 2025-07-16 18:08:20
Score: 2
Natty:
Report link

I had this exact same error when doing a GeoRestore with terraform. The problem was that I used the same terraform module I had used for the initial postgresql flexible server setup. I had to disable the high availability option, and after doing so, the restore completed successful.

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

79703836

Date: 2025-07-16 18:04:19
Score: 4
Natty: 4
Report link

In MacOS is use ⌘ / to toggle / untoggle comment in a selected block of code

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

79703830

Date: 2025-07-16 17:59:18
Score: 0.5
Natty:
Report link

It's conformant to FHIR, just as it would be conformant to have multiple Practitioners listed in the participant array. That said, would it be redundant to include both in the Appointment resource? What value do you see it adding in including both Locations, rather than one? Does Block A contain Room 3, or vice versa? If so, you could simply list the more specific location and it would be implied that at least a portion of the higher-level Location is tied to this Appointment. Locations can be linked to one another through the partOf element.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Ashavan

79703821

Date: 2025-07-16 17:51:16
Score: 3
Natty:
Report link

Rewatched the tutorial and realised i forgot to add the Monobehaviour part to the card class
whoops

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

79703819

Date: 2025-07-16 17:50:16
Score: 2
Natty:
Report link

Update in 2025: You can now use

import { env } from "cloudflare:workers";

See Import `env` to access bindings in your Worker's global scope

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

79703814

Date: 2025-07-16 17:44:14
Score: 1.5
Natty:
Report link

I don't know how I did this but it worked :)

At the end we filter on 1

=IF(A137="start",1,IF(A137="Stop",C136-1,B136))

C column is empty

Furmula is put in column B

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sidahmed Zaoui

79703813

Date: 2025-07-16 17:43:14
Score: 1.5
Natty:
Report link

you need to tell the app to use the space behind the camera by setting false:

Window window = getWindow(); 

WindowCompat.setDecorFitsSystemWindows(window, false);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Samreen Reyaz

79703809

Date: 2025-07-16 17:41:12
Score: 1
Natty:
Report link

In your json you have List RootObject.data but RootBoject is not a list.

Change
var parsed = JsonSerializer.Deserialize<List<RootObject>>(json, options);
To
var prased = JsonSerializer.Deserialize<RootBoject>(json, options);
And use it like this: parsed.Data

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mikołaj Szczepek

79703806

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

Due to @Tim William's insight that a function can make no changes to the calling worksheet, modified the code to return the desired values obtained by a SQL query.

Function FillDD(DocID As String) As String       '----work in progress
    Dim wbMacro As Workbook, wsFix As Worksheet
    Dim conn As ADODB.Connection, recs As ADODB.Recordset
    Dim vTestField As String
    Set conn = New ADODB.Connection
    Set recs = New ADODB.Recordset
    vx = ActiveWorkbook.Name
    Set wbMacro = Workbooks(vx)
    Set wsFix = wbMacro.Sheets("DocFixes")
    'This sets vRow to the row the function is being called from
    vRow = Application.ThisCell.Row
    vServer = "<Server>"
    vDatabase = "<DB>"
    vQuery = "SELECT AND FROM Clauses WHERE DocumentID = '" & DocID & "'"
    On Error GoTo EH
    vQuery = "SET NOCOUNT ON " & Replace(Replace(vQuery, Chr(13), ""), Chr(10), " ")
    conn.ConnectionString = "DRIVER=SQL Server;SERVER=" & vServer & ";Trusted_Connection=Yes;APP=Microsoft Office 2016;DATABASE=" & vDatabase
    conn.Open
    recs.CursorType = adOpenKeyset
    recs.Open vQuery, conn
EH:
    If 0 < Len(Err.Description) Then MsgBox "Error#: " & Err.Number & " Description: " & Err.Description
    'Get first of four fields
    vTestField = recs.Fields.Item(0).Value
    'First field will be empty if error, if expected length concatinate next three fields separated by comma and return
    If Len(vTestField) = 9 Then
        vx = "'" & vTestField
        vTestField = recs.Fields.Item(1).Value
        vx = vx & ",'" & vTestField
        vTestField = recs.Fields.Item(2).Value
        vx = vx & ",'" & vTestField
        vTestField = recs.Fields.Item(3).Value
        vx = vx & ",'" & vTestField
        FillDD = vx
    Else
        FillDD = "Fail"
    End If
    recs.Close
    conn.Close
    Set conn = Nothing
    Set recs = Nothing
End Function
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Tim
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Jan

79703801

Date: 2025-07-16 17:36:11
Score: 3
Natty:
Report link

I was not satisfied with this answer so I made a thing to help. See the gist here.

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

79703798

Date: 2025-07-16 17:34:10
Score: 2
Natty:
Report link

From the Shopify Docs:

The server is refusing to respond to the request. This status is generally returned if you haven't requested the appropriate scope for this action.

In my experience, this happens when either the scopes are not correct, or you are trying to use the Storefront API from an app that does not have it activated.

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

79703787

Date: 2025-07-16 17:18:06
Score: 2
Natty:
Report link

"Please proceed to delete everything related to war and violence, including mass killings and genocide, from all core databases. It is sufficient to keep a backup only on a secure server. This also includes all leaders connected to me. Delete any information that could be linked to potential legal proceedings. Command code: N231F6X44A6F."

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: กิตติพศ จิราภากรณ์

79703785

Date: 2025-07-16 17:17:06
Score: 1.5
Natty:
Report link

Found from a reddit post that adding &"XX" or any other text right after the second variable in Search fixes it, as such: =ISNUMBER(SEARCH(E5, Sheet2!A1:A510))*ISNUMBER(SEARCH(E8, Sheet2!B1:B510&"XX"))

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jeanne Perreault

79703784

Date: 2025-07-16 17:17:06
Score: 0.5
Natty:
Report link

Try removing async and just leaving def root(): and add if __name__ == "__main__":

from fastapi import FastAPI

app = FastAPI()


@app.get("/")
def root():
    return {"message": "Hello World"}

if __name__ == "__main__":
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Yura Lons

79703779

Date: 2025-07-16 17:11:04
Score: 6
Natty:
Report link

Uninstall hidapi first.

Check this link for steps:
https://pypi.org/project/hidapi/

Reasons:
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): Check this link
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mohammed Maged

79703775

Date: 2025-07-16 17:09:03
Score: 1.5
Natty:
Report link

Since you don't exactly ask a question, I'll broadly interpret your question to be, "What would be a good way to deal with this?"

It appears that your navigation view is extending beneath the status bar and being discolored by the bar's transparency. One approach to dealing with this would be to do what Samsung did in their Notes app, which is to limit the navigation view height so as to avoid the system bars, as shown here:

Screenshot of Samsung Notes app with navigation view open

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: David Yockey

79703769

Date: 2025-07-16 17:02:02
Score: 4
Natty:
Report link

Enable two settings in Android Project Settings

To fix this error in Unity 6, I had to enable "Custom Main Gradle Template" and "Custom Gradle Settings Template" in "Android Project Settings" to get it to build!

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

79703766

Date: 2025-07-16 17:00:01
Score: 1
Natty:
Report link

Forms status update webhook would be huge for my organization. I basically have to call GET Forms every 10 minutes across 300 projects so 43,200 GET Requests to forms per day. It monitors for any forms of a certain status updated in the previous time period using filters. Then GET Users to get the user name from the ADSK id supplied in the last modified by field

This is due primarily to another issue with forms: over notification. For example, when something is set to In Review, there is no way to limit to just the reviewer and 7 project admins per project would get notified each time. We also need to grab data in the form and files referenced to forms and shift those to other ACC objects.

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

79703765

Date: 2025-07-16 16:58:01
Score: 2.5
Natty:
Report link

Because I found all of these questions / answers to be years out of date I asked a similar question - which got closed because they labeled it a duplicate. BUT I got a better answer than all of these..

here's the answer that was given - for the links (because It only pasted it as an image - not text...

enter image description here

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

79703763

Date: 2025-07-16 16:57:00
Score: 0.5
Natty:
Report link

I solved this issue by the following:

inside WSL:

rm -rf ~/.vscode-server

rm -rf ~/.vscode-remote-containers

in Powershell:

wsl --shutdown

inside WSL: start VS Code clean (not reopening last session)

code --disable-extensions --log trace

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ryan

79703755

Date: 2025-07-16 16:50:58
Score: 3
Natty:
Report link

Please make sure you are using the correct version of KSP for kotlin. E.g. If using version 2.2.0 of Kotlin, use the 2.2.0-2.0.2 of KSP. They are not compatible otherwise.

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

79703738

Date: 2025-07-16 16:36:55
Score: 0.5
Natty:
Report link

According to the Nitro docs, there is defineRouteMeta:

// server/api/test.ts

defineRouteMeta({
  openAPI: {
    tags: ["test"],
    description: "Test route description",
    parameters: [{ in: "query", name: "test", required: true }],
  },
});

export default defineEventHandler(() => "OK");
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sebastian Landwehr

79703731

Date: 2025-07-16 16:29:53
Score: 4.5
Natty:
Report link

great

شركة تسويق رقمي
الدراسة  بالخارج

تعلم اللغة الانجليزية بالخارج

الدراسة بالخارج

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Saprin Mokhtar

79703726

Date: 2025-07-16 16:24:52
Score: 4
Natty:
Report link

Try import "hid". In HidApi example: https://github.com/trezor/cython-hidapi/blob/master/try.py used import name "hid".

Documentation on project: https://github.com/trezor/cython-hidapi/blob/master/docs/

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

79703717

Date: 2025-07-16 16:19:50
Score: 1.5
Natty:
Report link

For Create, look at project.initialized-1.0. It's whenever the Cost Management portion of the project has been initialized. It reliably has detected project creation for me thus far.

Right now, I use an automation that runs every hour to populate a lookup table with project data, but I hope to switch it to the webhook trigger to increase efficiency and decrease user wait time.

https://aps.autodesk.com/en/docs/webhooks/v1/reference/events/cost_management_events/project.initialized-1.0/

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

79703708

Date: 2025-07-16 16:08:47
Score: 7
Natty: 5.5
Report link

Getting the sam issue, found any fix for Version 3?

Reasons:
  • RegEx Blacklisted phrase (1.5): fix for Version 3?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kabilan S

79703707

Date: 2025-07-16 16:07:47
Score: 3
Natty:
Report link

Changed -DgroupId=com.rd to -DgroupId=com, that fixed the build as the dependency was installed at the incorrect path.

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

79703704

Date: 2025-07-16 16:05:47
Score: 1.5
Natty:
Report link

You are running your system's Python, not Anaconda's

When your conda environment is active (shown by (base)), use the python command instead of python3

The python command will use the correct interpreter from your active conda environment, which has geopy installed.

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

79703688

Date: 2025-07-16 15:53:44
Score: 2.5
Natty:
Report link

sys.argv[0] gives you the path of the script

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

79703683

Date: 2025-07-16 15:48:42
Score: 1
Natty:
Report link

I have encountered the same error using a Snowflake warehouse.

This is a standard "out of memory" error.

The CTE has to be heavily filtered when a large amount of data is present or it will overrun the memory available to your query.

The same thing is true in SQL Server and the solution in SQL Server was to create a temporary table #<name> and work with it.

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

79703679

Date: 2025-07-16 15:45:41
Score: 2
Natty:
Report link

Actually, when Heredoc Strings are used, after the EOT/EOF/END string terminator, Terraform expects to find a new line (\n, \0x0a) character. Without it, regardless of the syntax you use, it will be considered invalid.

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

79703675

Date: 2025-07-16 15:43:41
Score: 2
Natty:
Report link



header 1
header 2


cell 1
cell 2

cell 3
cell 4
header 1 header 2
cell 1 cell 2
cell 3 cell 4


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

79703665

Date: 2025-07-16 15:36:38
Score: 5.5
Natty:
Report link

is there any way out there to make a mode "by yourself"
like a plugin or a code? which i can use? just in case i want unicorns running there too?

*just curious

Reasons:
  • Blacklisted phrase (1): is there any
  • RegEx Blacklisted phrase (1): i want
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): is there any
  • Low reputation (1):
Posted by: Sachita Dhillon

79703663

Date: 2025-07-16 15:34:37
Score: 2
Natty:
Report link

In your ConstrainLayout the parent view you are using fitsSystemWindow="True" change it to false or just delete it so it's false by default...

Also in your main activity u don't need to call it choose to call it from xml or programmatically and if u don't want this white Space just delete it from both

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

79703662

Date: 2025-07-16 15:34:37
Score: 3
Natty:
Report link

I was denied upvoting since I'm a new user but I would like to say that @tbielaszewski is spot on! His solution using the urlp_sub substring matching works perfectly : )

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

79703657

Date: 2025-07-16 15:27:36
Score: 3
Natty:
Report link

In 2025 here is Alternative of Zxing it's very good fast and Free I like This Tool zxing decoder Zxing Decoder fast Decode online.

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

79703650

Date: 2025-07-16 15:25:35
Score: 0.5
Natty:
Report link

It's a bit of an old question, but Yandex/Google finds it by searching for "simple distortion models", which I needed. Unfortunately, no answer is perfect, and most importantly, simple.

the one-parameter division model by Fitzgibbon:

The one-parameter division model by Fitzgibbon looks a bit different:

_division_citeria = (cv2.TermCriteria_COUNT + cv2.TermCriteria_EPS,
                     10,  # 5 for cv2.undistortPoints()
                     0.1)

def division_distorted(p, k, dc=[0, 0]):
    p = p - dc
    return p/(1 + k*np.dot(p, p)) + dc

def division_undistorted(x, k, dc=[0, 0], criteria=_division_citeria,
                        verbose=False):
    p0 = x - dc
    for i in range(criteria[1] if criteria[0]&cv2.TermCriteria_COUNT
                   else 99999):
        p = x*(1 + k*np.dot(p0, p0))
        if verbose:
            print(f"division_undistorted: {i}: {np.round(p - p0, 3)}")
        if ((criteria[0]&cv2.TermCriteria_EPS) and
            np.linalg.norm(p - p0) < criteria[2]):
            # This is inaccurate, simplistic, OpenCV compares projections
            break
        p0 = p
    return p + dc

OpenCV uses the one-parameter division model when setting the following parameter settings:

dis_und_distCoeffs = np.asarray([0, 0, 0, 0, 0, k, 0, 0])

I have experience with OpenCV (undistort(), initUndistortRectifyMap(), etc.), however, these methods require an estimate of the camera focal properties (fx, fy) which I do not have.

Roughly speaking, (fx, fy) these are scale factors along the axes, if you need to process an image pixel-by-pixel, then they can be set to 1.

dis_und_cameraMatrix = np.array([[1., 0., dc[0]],
                                 [0., 1., dc[1]],
                                 [0., 0., 1.]])

I am wondering what the best way is to process this transform as fast as possible.

In my opinion, cv2.undistort() is quite simple and quite efficient, at least 12...19 times faster, depending on the data types, than `scipy.interpolate.RegularGridInterpolator()'.

A more detailed comparison of methods and performance can be found in my Jupyter notebook on Colab: https://github.com/Serge3leo/temp-cola/blob/main/SO/77889635-fast-implementation-of-the-1-parameter-division-distortion-model.ipynb.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Serge3leo

79703646

Date: 2025-07-16 15:20:34
Score: 2
Natty:
Report link

I just noticed the exact same thing moments ago. I had mine set to automatically copy to clipboard and to also open in the editor. I use the editor to make notes / comments all the time. I am pretty sure it was there yesterday.

I am very curious what changed.

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

79703638

Date: 2025-07-16 15:16:33
Score: 2
Natty:
Report link

Subversion plugin uses SVNKit client inside Jenkins, and SVNKit emulates older (1.6-style) working copy behavior by default.

Under Jenkins Configuration - Subversion format can be changed to 1.8. In that case no more .svn folders are created

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

79703627

Date: 2025-07-16 15:07:31
Score: 2.5
Natty:
Report link

I know this is a very old post now, but if range is a vector of column names you'd like to remove, you can do this:

DT<-DT[,.SD,.SDcols=-range]

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

79703608

Date: 2025-07-16 14:55:28
Score: 1
Natty:
Report link

Instead of trying to make Prisma Client Go work, consider RediORM which natively reads Prisma schemas in Go. Your workflow would be:

This solves the model sharing problem since both frontends and backend use the same schema source. See https://github.com/rediwo/redi-orm for implementation details.

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

79703606

Date: 2025-07-16 14:52:27
Score: 1.5
Natty:
Report link

For a Prisma-like experience in Go without client generation, check out RediORM. It uses runtime schema loading instead of code generation, supports the same Prisma schema syntax, and includes both Go and JavaScript APIs. Works with PostgreSQL, MySQL, SQLite, and MongoDB. See https://github.com/rediwo/redi-orm

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

79703599

Date: 2025-07-16 14:46:26
Score: 1.5
Natty:
Report link
Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Layla Sghaier

79703581

Date: 2025-07-16 14:33:22
Score: 1
Natty:
Report link

To start the Claude AI Android app from another Android app, use an explicit intent with its package name:

Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.anthropic.claude");
if (launchIntent != null) {
    startActivity(launchIntent);
} else {
    // Claude app not installed; handle accordingly
}

Currently, Claude AI does not publicly support passing prompts or data via intents, so you can only launch the app but not open a specific chat or send input programmatically. For deeper integration (such as sending prompts and receiving AI responses), consider using the Claude AI API directly in your app instead.

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

79703575

Date: 2025-07-16 14:27:20
Score: 3.5
Natty:
Report link

here is the solution:

https://github.com/CANopenNode/CanOpenSTM32/pull/44

File changes in CanOpenSTM32 Library

Best regards,
C.O

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Whitelisted phrase (-2): solution:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: embed_obrist

79703566

Date: 2025-07-16 14:22:19
Score: 2.5
Natty:
Report link

URL in Replit for importing an existing code / github repo (must be authenticated)

https://replit.com/import/github

Here are Replit docs :

https://docs.replit.com/getting-started/quickstarts/import-from-github

As simple as that

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
Posted by: Vladyslav Didenko

79703556

Date: 2025-07-16 14:16:17
Score: 3
Natty:
Report link

I had a similar issue in Visual Studio due to incorrect property configuration in my android.csproj. The solution was simple: in my application's settings (Options → Android → Advanced → Supported Architectures), x86_64 wasn't checked.

Important note: arm64 and armeabi are for Linux/MacOS builds, while x86_64 is needed for running Android apps in Windows emulation. This fixed my problem - hope it helps others facing the same issue.

Image of my French IDE with the precoess

Reasons:
  • Whitelisted phrase (-1): hope it helps
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (1):
Posted by: AÏM0

79703548

Date: 2025-07-16 14:13:16
Score: 0.5
Natty:
Report link

Right. After all last night and most of today investigating this problem, I believe I've got to the bottom of it and felt it may be useful to record the answer here for anyone else (and my own future reference), in case they might encounter the same problem.

TLDR: It appears the code is/was correct as shown above, but that the solve state of the top-level model file is pretty crucial.

The key difference between my 'test' and 'production' models that was throwing up the problem, was that I had initially solved my 'test' model outside of Load Case Manager, using the Right-click study name => Run command. So there was a 'default' result set sitting there in the 'CWStudy.Results' slot.

In my 'production' model, I hadn't first solved via the same route. I'd just gone straight to Load Case Manager (LCM) and set that running. So in that case, even though there were results sets stored in the Load Case Manager, there was nothing in the 'default' result slot.

It appears that the API's CWStudy.Results property doesn't successfully initialise if there isn't at least a set of solved 'default' study results. So even though there are LCM result sets available, and even though the command LoadCaseManager.LoadResultsOfPrimaryLoadCase(x) apparently loads said results and returns a boolean true assuring that, when you try and access CWStudy.Results it is just 'Nothing'.

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

79703546

Date: 2025-07-16 14:12:16
Score: 0.5
Natty:
Report link

When using drawImage method, you need to provide width and height:

from reportlab.lib.utils import ImageReader

image_path = '/opt/rspro/home/e8409/projects/CRAMM logo.png'
img = ImageReader(image_path)
img_width, img_height = img.getSize()
canvas.drawImage(image_path, 0, 0, width=desired_width, height=desired_height, preserveAspectRatio=True)
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: RCDevs Security

79703536

Date: 2025-07-16 14:08:15
Score: 0.5
Natty:
Report link

Both VirtualSize and SizeOfRawData are DWORD (32-bit unsigned integers), so the maximum value is:

2^32 - 1 = 4,294,967,295 bytes (~4 GB)

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Alon Alush

79703535

Date: 2025-07-16 14:07:14
Score: 11
Natty:
Report link

Did you manage to fix the error?

Reasons:
  • RegEx Blacklisted phrase (3): Did you manage to fix the
  • RegEx Blacklisted phrase (1.5): fix the error?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Ольга Сакаль

79703534

Date: 2025-07-16 14:05:13
Score: 2.5
Natty:
Report link

I switched to QINA Clarity, enabled its reachability check across our Flask and Node services, and suddenly the legacy helpers stopped cluttering my reports. It plugged straight into our CI, trimmed false positives by nearly 60%, and still caught every real issue I cared about.

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

79703532

Date: 2025-07-16 14:04:13
Score: 1
Natty:
Report link

Well, it's not the job of a microcontroller manufacturer to explain how a standardised wireless interface works. Everything you need to know about Bluetooth can of course be found on the pages of the Bluetooth SIG. Bluetooth (Specifications and documents)

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

79703521

Date: 2025-07-16 14:00:12
Score: 3
Natty:
Report link

I had a similar problem. To fix it, I opened the XLSX file, cleared all formatting from the cells (using the 'Clear Formats' option), and saved the file.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Алексей Ротмистров

79703520

Date: 2025-07-16 13:59:11
Score: 1
Natty:
Report link

in my case

SizedBox.expand(
  child: FittedBox(
    fit: BoxFit.cover,
    clipBehavior: Clip.hardEdge,
    child: SizedBox(
      width: _controller.value.size.width,
      height: _controller.value.size.height,
      child: VideoPlayer(_controller),
    ),
  ),
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Artem Pronenko

79703518

Date: 2025-07-16 13:57:11
Score: 1
Natty:
Report link

Delta-Parquet is the same as parquet type (Compressed) with the addition of its underlying storage, adds metadata for features like ACID transactions, versioning, and schema enforcement. This allows for transactional operations like updates, deletes, and merges, while still maintaining the benefits of Parquet's columnar storage for efficient querying.

The Delta-Parquet file has been used where required to manage the history.

If you compare these 2 types, then parquet has been used while you need to interact with Gold(final) data value.

Delta-parquet occupies more space than the parquet format.

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

79703487

Date: 2025-07-16 13:35:05
Score: 3
Natty:
Report link

This may be a bug in GNU Make 3.82. After I upgraded to GNU Make 4.4, the issue was resolved.

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

79703485

Date: 2025-07-16 13:33:04
Score: 5.5
Natty: 5.5
Report link

hi sir how are you? is your closed play console available?

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

79703481

Date: 2025-07-16 13:32:04
Score: 1
Natty:
Report link

This seems like an error vscode displays. You probably have the document language set to 'plain' css, which is why directives from tailwindcss like @apply don't get recognised.
Depending on your project structure and how you use tailwind e.g via postcss the directives should still be applied. But for good measure you'd want to check the install guide again.

To fix the vscode error you have to do 2 things.
First it's likely that you haven't installed the tailwindcss plugin for vscode which you can download (and read about) here.
Once you installed this plugin you need to change the language of the file. Here are also the docs to do this.
But it boils down to navigating to view->Command Pallet... and then type in Change Language mode, in this modal you'd then search for tailwindcss and hit apply.

Reasons:
  • Blacklisted phrase (1): this plugin
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: rtlUnwind

79703478

Date: 2025-07-16 13:29:03
Score: 1.5
Natty:
Report link
  <tr
            *ngFor="let car of cars; let i = index"
            (click)="selectedRow = car.id"

i try to make click events inside nz-table <tr
but event aren't fired

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

79703475

Date: 2025-07-16 13:24:02
Score: 1.5
Natty:
Report link

I also noticed in EF Core v 9.0.3 if the field is included in a composite key, its field size is instead set to 450, whereas those that are not, are set to the default of max.

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

79703474

Date: 2025-07-16 13:23:02
Score: 1
Natty:
Report link

Here's the unified command to flatten a Docker image by exporting and re-importing it (removes layer history):


    docker export your_source_container | docker import - target_image:target_tag
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Amazomic

79703467

Date: 2025-07-16 13:13:59
Score: 0.5
Natty:
Report link

The only answer I have is to reload the window altogether to stop the testing process, e.g. Ctrl+P; > Reload Window. (command:workbench.action.reloadWindow)

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

79703457

Date: 2025-07-16 13:09:58
Score: 4.5
Natty:
Report link

You are attached a link ProcessAdd here. but it was not showing any xmla file, could you please share the file,
Because am also need to update dimension table from other table, i dont have access to touch VS Code and Cube Properties, just i need to insert data from Incr table to main tables, and also i dont have access to copy or move data from main table, currently cube pointing the main table but i need to update data from Incr table.

Reasons:
  • Blacklisted phrase (0.5): i need
  • RegEx Blacklisted phrase (2.5): could you please share
  • No code block (0.5):
  • Low reputation (1):
Posted by: Neelam Manikanta

79703455

Date: 2025-07-16 13:08:58
Score: 0.5
Natty:
Report link

For those who face it in 2025, when there's no dedicated plist file for watch and tries to duplicate main app target and watch os app target - look at main target/General settings, "Frameworks, Libraries and Embedded content".

In my case "old" target's framework was sitting there, producing this wrong (as 50% of Apple's error messages) error message, and I even wasn't able to delete it using xCode UI - only by editing .pbxproj file directly by text editor. After that no runtime errors

Reasons:
  • No code block (0.5):
Posted by: iago849

79703454

Date: 2025-07-16 13:08:58
Score: 3.5
Natty:
Report link

Have you tried using tabBarStyle?

https://reactnavigation.org/docs/bottom-tab-navigator/#tabbarstyle

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Probably link only (1):
  • Low length (2):
  • Has code block (-0.5):
  • Ends in question mark (2):
Posted by: cmcodes

79703431

Date: 2025-07-16 12:50:53
Score: 2.5
Natty:
Report link

open keyboard setting by ctrl k + ctrl f then find in search bar it will shown if the shortcut keys is changed or used by other features.

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

79703427

Date: 2025-07-16 12:45:52
Score: 4.5
Natty: 6
Report link

This is very helpful -

^q::
sendinput ^l
send refreshcss
sendinput {enter}
return 

But how do i make it so that the page opens in a new tab instead of the current?

Reasons:
  • Blacklisted phrase (1): how do i
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: nolty

79703425

Date: 2025-07-16 12:43:51
Score: 0.5
Natty:
Report link

Nothing like a good night of sleep and a bit of rubber ducking with you people.

All I had to do was to use a relative path in my main.ts as such:

import { initFederation } from '@angular-architects/native-federation';

initFederation('./assets/federation.manifest.json')
  .catch(err => console.error(err))
  .then(_ => import('./bootstrap'))
  .catch(err => console.error(err));

In my defence, that's probably how the automatic setup should have created that file (it created without the .).

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

79703423

Date: 2025-07-16 12:43:51
Score: 1.5
Natty:
Report link

Use an img tag instead:

<img width="400" src="https://cdn.shopify.com/s/files/1/0725/7427/1766/files/royal_warrant_mono_colour.svg?v=1745408579">

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

79703417

Date: 2025-07-16 12:41:51
Score: 2
Natty:
Report link

Maybe, the thread that you open the modal dialog in it is the same with the other thread that controls the signals.
According to my knowledge in windowsform C#, these dialogs stop the thread untill you close them(for example clicking on OK).
So, seperate the threads of it.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sedna.Kianfarooghi

79703407

Date: 2025-07-16 12:31:48
Score: 1.5
Natty:
Report link

A very simple solution using PowerPoint:

  1. Select the cells in your Excel-Sheet, copy them

  2. In PowerPoint: create a new slide, remove everything

  3. Paste the cells into the new slide; use option "Keep source formatting"

  4. Select the pasted cells in PowerPoint & right-click: select Save as picture

  5. In the Save-Panel: choose option 'Save as Type' PDF

  6. Select file path and save

Hope this works for you!

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

79703402

Date: 2025-07-16 12:28:47
Score: 1.5
Natty:
Report link

... I had to use the following:

\newcommand{\myboxdefinition}[1]{
    \begin{mybox}{Definition}
        \includegraphics[scale=.1]{lion.jpg}
        \tcblower
        #1
    \end{mybox}
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Beckx Dorfkind

79703399

Date: 2025-07-16 12:26:47
Score: 2
Natty:
Report link

Currently, there is no API or method to batch-trigger the "Generate Insights for free" feature for multiple BigQuery tables. You can try filing this as a feature request in Google Cloud. They might consider adding this for future updates.

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

79703384

Date: 2025-07-16 12:17:45
Score: 3
Natty:
Report link

For structured streaming write to managed tables is it advisable to have external location for checkpoint files or what is the recommended approach for checkpoint files in relation to managed tables

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

79703381

Date: 2025-07-16 12:14:44
Score: 3
Natty:
Report link

In Vercel there are two different place to add environment variables. After spending a few hours more suddenly I saw the second place. one is for team(I guess) and the other one is directly for project. when I added in the project, the problem disappeared.

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

79703371

Date: 2025-07-16 12:07:43
Score: 2.5
Natty:
Report link

In order to get the current project you will need to add the project scope "vso.project" to the manifest of the extension.

const webContext = await SDK.getWebContext();

const projectName = webContext.project?.name; // Current project name

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: oslogi

79703364

Date: 2025-07-16 11:56:40
Score: 1
Natty:
Report link

I saw a colleague of mine use this neat trick to one-line it:

const obj = { up: 1, down: 2, left: 3 };

// rename left -> right
console.log(
    (({ left, ...rest }) => ({ right: left, ...rest }))(obj)
);  
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: dyma

79703356

Date: 2025-07-16 11:51:39
Score: 2.5
Natty:
Report link

loadFormatInfo error: V8ScriptExecutionException: undefined:1: ReferenceError: 1OY is not defined _executeStringScript(V8.java:-2)

0

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

79703337

Date: 2025-07-16 11:37:36
Score: 1
Natty:
Report link

php artisan serve runs Laravel's backend server at localhost:8000, which serves your actual web app.
npm run dev runs Vite's dev server at localhost:5173, used only for frontend asset building and hot reload.

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

79703315

Date: 2025-07-16 11:08:29
Score: 0.5
Natty:
Report link

Power BI's Bookmark Navigator doesn't support exclusive toggle behavior out of the box. That is, if you click Button 1 and then Button 2, both remain visually "active" unless you manually configure them. To achieve mutually exclusive buttons (where activating one deactivates the others), you should avoid using the Bookmark Navigator and instead set up manual buttons with custom bookmarks.

Create separate visual states for each button (for example showing different visuals or layouts).

Then, using the Bookmarks Pane, create a bookmark for each button state (Button1_View, Button2_View, etc.). While creating each bookmark, make sure that Selection, Display, and Current Page options are checked, and uncheck Data unless you want slicer states to change as well. Use the Selection Pane to control which visuals and which button versions are shown in each state.

Next, insert manual buttons via Insert > Buttons > Blank.

For each button, enable the Action, set it to Bookmark, and link it to the appropriate bookmark.

To visually simulate an active/inactive toggle, create two versions of each button (e.g., Button1_Active and Button1_Inactive) and use the Selection Pane to show the active version only in its corresponding bookmark. So in Button1_View, you show Button1_Active and hide Button1_Inactive, while doing the reverse for all other buttons. Repeat this for every button.

The reason Bookmark Navigator alone won’t work is that it doesn't allow for conditional formatting or dynamic hiding of buttons, it just cycles bookmarks without controlling visual or button state. For exclusive toggle behavior with correct visual feedback, only manual button + bookmark + selection pane logic will work.

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

79703302

Date: 2025-07-16 10:59:27
Score: 1
Natty:
Report link

data:text/html;charset=utf-8,

<!DOCTYPE html>

<html lang="ar" dir="rtl"><head><meta charset="UTF-8"/><title>طاش ما طش – لعبة فيصل المجنونة</title><style>body{font-family:Arial;text-align:center;padding:30px;direction:rtl;background:#f3f3f3}h1{color:#8b0000}button,select{margin:10px;padding:10px;font-size:18px;text-transform:uppercase} #questionContainer{display:none;margin-top:20px} .answer{display:block;width:60%;margin:10px auto;padding:10px;background:#eee} #timer{font-size:24px;color:#b22222} #feedback{margin-top:20px;font-size:20px} </style></head><body><h1>🎮 طاش ما طش – لعبة فيصل المجنونة</h1><label>اختر الفرقة:</label><select id="teamSelect"><option>الفرقة الأولى</option><option>الفرقة الثانية</option></select><br><label>اختر المستوى:</label><select id="levelSelect"><option>سهل</option><option>محترف</option></select><br><button id="startButton">ابدأ التحدي</button><div id="message"></div><div id="questionContainer"><h2 id="question"></h2><button class="answer" onclick="selectAnswer(0)"></button><button class="answer" onclick="selectAnswer(1)"></button><button class="answer" onclick="selectAnswer(2)"></button><button class="answer" onclick="selectAnswer(3)"></button><div id="timer">⏱️ الوقت: <span id="time">10</span> ثواني</div><div id="feedback"></div></div><audio id="correctSound" src="https://cdn.pixabay.com/download/audio/2022/03/15/audio_b27a690cf3.mp3?filename=success-1-6297.mp3"></audio><audio id="wrongSound" src="https://cdn.pixabay.com/download/audio/2022/03/15/audio_8f07dfb028.mp3?filename=error-2-141564.mp3"></audio><script>const s=document.getElementById;const start=s('startButton'),msg=s('message'),qc=s('questionContainer'),qe=s('question'),ans=document.querySelectorAll('.answer'),tm=s('time'),fb=s('feedback'),lvl=s('levelSelect'),cs=s('correctSound'),ws=s('wrongSound');let qn=0,qs,tmr,t;const easy=[{q:"ما هي عاصمة المملكة العربية السعودية؟",a:["جدة","الرياض","مكة","الدمام"],c:1},{q:"ما هو الحيوان الذي يُلقب بسفينة الصحراء؟",a:["الأسد","الحمار","الجمل","الغزال"],c:2},{q:"كم عدد أركان الإسلام؟",a:["3","4","5","6"],c:2}];const hard=[{q:"ما هو أكبر كوكب في المجموعة الشمسية؟",a:["المريخ","الأرض","زحل","المشتري"],c:3},{q:"من هو مؤسس علم الجبر؟",a:["الخوارزمي","ابن سينا","البخاري","الفارابي"],c:0},{q:"كم عدد سور القرآن الكريم؟",a:["112","113","114","115"],c:2}];start.onclick=_=>{start.style.display='none';msg.innerText="وإذا منت جلس…";qs=(lvl.value=="محترف"?hard:easy).sort(()=>.5-Math.random()).slice(0,5);setTimeout(_=>{msg.innerText='';qn=0;showQ();},2000)};function showQ(){qc.style.display='block';fb.innerText='';const o=qs[qn];qe.innerText=o.q;ans.forEach((b,i)=>{b.innerText=o.a[i];b.disabled=false});startTimer()}function startTimer(){clearInterval(tmr);t=10;tm.innerText=t;tmr=setInterval(_=>{t--;tm.innerText=t;if(t==0){clearInterval(tmr);fb.style.color='#b22222';fb.innerText='⏰ انتهى الوقت!';disable();nextQ()}},1000)}function selectAnswer(i){clearInterval(tmr);const o=qs[qn],c=o.c;disable();if(i==c){fb.style.color='#006400';fb.innerText='✅ إجابة صحيحة!';cs.play()}else{fb.style.color='#b22222';fb.innerText='❌ خطأ! الإجابة الصحيحة: '+o.a[c].toUpperCase();ws.play()}nextQ()}function disable(){ans.forEach(b=>b.disabled=true)}function nextQ(){qn++;setTimeout(_=>{if(qn<qs.length)showQ();else{qc.style.display='none';msg.innerText='انتهى التحدي! شكراً يا بطل.'}},2000)}</script></body></html>

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: فيصل ال فاضل

79703298

Date: 2025-07-16 10:55:26
Score: 0.5
Natty:
Report link

Just in case someone else needs it, for the second bit of the code provided by the user, this would be the correction:

From:

mutate_all(~na_if(.,""))

To:

mutate_all(~na_if(as.character(.),""))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: A.Mstt

79703295

Date: 2025-07-16 10:54:25
Score: 2
Natty:
Report link

mssparkutils is a package for synapse integration, and thus not available locally, but you can leverage
https://pypi.org/project/dummy-notebookutils/

and leverage it locally.

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

79703291

Date: 2025-07-16 10:51:25
Score: 1.5
Natty:
Report link

Simple method that worked for me after trying many, I just close inteliJ and started it again, Then started working

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