79766131

Date: 2025-09-16 10:59:45
Score: 1
Natty:
Report link

use this
fixed your problem

import { HeroUIProvider } from "@heroui/react"

export default function ThemeProvider({ children }: { children: React.ReactNode }) {
  return <HeroUIProvider locale='fa'>{children}</HeroUIProvider>
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Amin Nazemi

79766125

Date: 2025-09-16 10:52:44
Score: 1.5
Natty:
Report link
let statusBarHeight = UIApplication.shared.connectedScenes
            .compactMap { $0 as? UIWindowScene }
            .first?.statusBarManager?.statusBarFrame.height ?? 0
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yug Modi

79766124

Date: 2025-09-16 10:50:40
Score: 6.5 đŸš©
Natty:
Report link

In your .htaccess you can add this condition to specify you don't want your folder to be passed to the URL you're visiting:

RewriteCond %{REQUEST_URI} !^/folder-name/ [NC]

Worked for me while having the same issue. Please let me know if I'm wrong since I'm new to this

Reasons:
  • Whitelisted phrase (-1): Worked for me
  • RegEx Blacklisted phrase (2.5): Please let me know
  • RegEx Blacklisted phrase (1.5): I'm new
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): having the same issue
  • Low reputation (1):
Posted by: Giorgio

79766116

Date: 2025-09-16 10:40:37
Score: 0.5
Natty:
Report link

<!DOCTYPE html> <html lang="en">

<head>

<meta charset="UTF-8" />

<title>Blinking Caret Trail</title>

<style>

body { margin: 0; background: #111; overflow: hidden; }  

svg { width: 100vw; height: 100vh; display: block; }  /\* blinking effect \*/  

rect {

fill: lime;

rx: 2;

animation: blink 1s step-start infinite;

}

@keyframes blink {

50% { opacity: 0; }

}

</style>

</head>

<body>

<svg id="canvas"></svg> <script>

const svg = document.getElementById("canvas");

const width = window.innerWidth;

const height = window.innerHeight;

const N = 25; // number of carets

const rad = 150;

let frm = 0;

const pointer = { x: 0, y: 0 };

const elems = [];

// create SVG rects as carets

for (let i = 0; i < N; i++) {

const use = document.createElementNS("http://www.w3.org/2000/svg", "rect");

use.setAttribute("x", -2);

use.setAttribute("y", -15);

use.setAttribute("width", 4);

use.setAttribute("height", 30);

svg.appendChild(use);

elems.push({ x: width/2, y: height/2, use });

}

window.addEventListener("mousemove", e => {

pointer.x = e.clientX - width / 2;

pointer.y = e.clientY - height / 2;

});

const run = () => {

requestAnimationFrame(run);

frm += 0.02;

let e = elems[0];

const ax = (Math.cos(3 * frm) * rad * width) / height;

const ay = (Math.sin(4 * frm) * rad * height) / width;

e.x += (ax - pointer.x - e.x) / 10;

e.y += (ay - pointer.y - e.y) / 10;

e.use.setAttribute("transform", `translate(${e.x + width/2}, ${e.y + height/2})`);

for (let i = 1; i < N; i++) {

let e = elems\[i\];  

let ep = elems\[i - 1\];  

const a = Math.atan2(e.y - ep.y, e.x - ep.x);  

e.x -= (ep.x - e.x - (Math.cos(a) \* (100 - i)) / 5) / 4;  

e.y -= (ep.y - e.y - (Math.sin(a) \* (100 - i)) / 5) / 4;  



e.use.setAttribute("transform",  

  \`translate(${e.x + width/2}, ${e.y + height/2}) rotate(${(180/Math.PI)\*a})\`  

);  

}

};

run();

</script> </body>

</html> ( pydhroid 3)

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @keyframes
  • Low reputation (1):
Posted by: Human Haha

79766114

Date: 2025-09-16 10:38:37
Score: 1
Natty:
Report link

A long time in the future...

There is a pin button in the top right of any popped out windows in VSCode. Somehow I had clicked it. Unpinning the window worked for me.

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

79766113

Date: 2025-09-16 10:36:36
Score: 0.5
Natty:
Report link

Just in case anyone else comes across this it now appears to work simply surrounding the text with back ticks

this is my paragraph with some `code goes here` to review

which appears as

this is my paragraph with some code goes here to review

which is handily the same syntax as these posts :-)

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

79766111

Date: 2025-09-16 10:34:35
Score: 1.5
Natty:
Report link
macro bind_doc()
    quote
        text(s::AbstractString) = println(s)
        
        macro text_str(str)
            interpolated = Meta.parse("\"$str\"")
            :(text($interpolated))
        end
    end |> esc
end
@bind_doc()

text"Hi $(1 + 2)"

Here is the implementation of getting Hi 3

Reasons:
  • Blacklisted phrase (1): :(
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mohsin Raza

79766109

Date: 2025-09-16 10:31:34
Score: 0.5
Natty:
Report link

based on https://learn.microsoft.com/en-us/azure/azure-signalr/signalr-concept-client-negotiation#self-exposing-negotiate-endpoint I managed to inject custom user identity claim from our custom incoming JWT into SignaR access token:

import { sign, decode } from "jws";

const inputSignalR = input.generic({
  type: "signalRConnectionInfo",
  name: "connectionInfo",
  hubName: "my-hub",
});

async function negotiate(request: HttpRequest, context: InvocationContext) {
  const signalRDefaultConnectionInfo = context.extraInputs.get(inputSignalR);
  const signalRConnectionString = process.env.AzureSignalRConnectionString;
  const signalRAccessKey = /AccessKey=(.*?);/.exec(signalRConnectionString)[1];

  const userId = extractUserId(request); // extract user identity claim from your JWT
  const originalDecodedToken = decode(signalRDefaultConnectionInfo.accessToken);
  const customizedToken = sign({
    header: originalDecodedToken.header,
    payload: {
      ...originalDecodedToken.payload,
      "asrs.s.uid": userId, // claim used by SignalR Service to hold user identity
      },
    secret: signalRAccessKey
  });

 return { url: signalRDefaultConnectionInfo.url, accessToken: customizedToken };
}

app.post("negotiate", {
  authLevel: "anonymous",
  handler: negotiate,
  route: "negotiate",
  extraInputs: [inputSignalR],
});
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: yohny

79766088

Date: 2025-09-16 10:11:29
Score: 0.5
Natty:
Report link

After a bit of research on gg_ordisurf github source code, the problem was coming from this part of the code function:

  # Calculate default binwidth
  # Can change the binwidth depending on how many contours you want
  if(missing(binwidth)) {
    r <- range(env.var)
    binwidth <- (r[2]-r[1])/15
  } else {
    binwidth = binwidth
  }

so I added na.rm=TRUE in the range function:

  # MODIFED gg_ordisurf function
  if(missing(binwidth)) {
    r <- range(env.var, na.rm = TRUE)
    binwidth <- (r[2]-r[1])/15
  } else {
    binwidth = binwidth
  }

and made my own gg_ordisurf function by copying the source code.

Note: the vegan::ordisurf function was working perfectly fine with this issue.

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

79766086

Date: 2025-09-16 10:10:29
Score: 0.5
Natty:
Report link

FetchHeaders failed because your application passed an empty message set. With nothing to fetch, it returned a failed status to alert you.

Ensure your code verifies the success of the `imap.Search` call. If it returns null, inspect `imap.LastErrorText` for details. Additionally, check that all prior IMAP method calls succeeded to rule out earlier failures.

Also, you can check the `Imap.SessionLog` if `Imap.KeepSessionLog` is true. See https://www.example-code.com/csharp/imap_sessionlog.asp

Reasons:
  • No code block (0.5):
Posted by: Chilkat Software

79766082

Date: 2025-09-16 10:07:28
Score: 2.5
Natty:
Report link

My solution was the next on Android.

In AndroidManifest file replaced the next android:launchMode="singleTop" to this android:launchMode="singleTask" and removed the next android:taskAffinity="" .

After the changes I needed to rebuild the whole project.

It solved my problem.

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

79766081

Date: 2025-09-16 10:07:28
Score: 2.5
Natty:
Report link
I receive null  
Element player = scriptElements.select("playerParams").first();
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Enjo Flash

79766079

Date: 2025-09-16 10:02:27
Score: 0.5
Natty:
Report link

The Inspect/Selenium method doesn’t work anymore, LinkedIn only shows relative times in the DOM, while the exact timestamp is hidden in the post ID.

For a quick solution, you can use a free tool like https://onclicktime.com/linkedin-post-date-extractor
For more details, here’s a helpful article:https://onclicktime.com/blog/how-to-see-linkedin-post-date

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

79766077

Date: 2025-09-16 10:00:26
Score: 1.5
Natty:
Report link

Ensure the Nwidart/laravel-modules version installed matches the application's Laravel version. for instance for laravel 10.0 run composer require --dev nwidart/laravel-modules:^10`

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

79766076

Date: 2025-09-16 09:58:25
Score: 2.5
Natty:
Report link
document.querySelectorAll('style, link[rel="stylesheet"]').forEach(e => e.remove());
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Zari Habibi

79766075

Date: 2025-09-16 09:57:24
Score: 1
Natty:
Report link

enter image description here

I found the solution I was using reactJs vite in my project and because it had hot reload and every change would refresh the localhost page in the browser and the translator popup would open in the default browser and I didn't pay attention to it, the autofocus would go to the browser because of the browser translator popup.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-2): I found the solution
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: H24

79766069

Date: 2025-09-16 09:48:22
Score: 4.5
Natty:
Report link

Same issue here both with ping and initialize

Reasons:
  • RegEx Blacklisted phrase (1): Same issue
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: PsyCode

79766064

Date: 2025-09-16 09:45:21
Score: 1.5
Natty:
Report link

I haven't tested it but you can apparently do it with python

import xlwings as xw

# Update these paths

iqy_file_path = r"C:\\Path\\To\\Your\\File.iqy"

excel_file_path = r"C:\\Path\\To\\Your\\Workbook.xlsx"

# Launch Excel

app = xw.App(visible=True)

wb = app.books.open(excel_file_path)

# Choose the sheet

sheet = wb.sheets['Sheet1']

# Refresh all queries

wb.api.RefreshAll()

# Save and close

wb.save()

wb.close()

app.quit()

print("Excel workbook refreshed with .iqy data.")

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

79766062

Date: 2025-09-16 09:45:21
Score: 2.5
Natty:
Report link

Once the ImportError for BigQueryCreateEmptyTableOperator has been fixed, clear the PyCache and restart the Airflow scheduler and web server. It prevents DAGs from disappearing from the user interface by refreshing DAG parsing.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pauls Creationids Interior Des

79766060

Date: 2025-09-16 09:45:21
Score: 2
Natty:
Report link

Solution in 2025:

pip uninstall pip-system-certs

pip install pip_system_certs

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

79766054

Date: 2025-09-16 09:45:21
Score: 1
Natty:
Report link

i think the problem is here.

// Initialize PEPPOL validation rules
//PeppolValidation.initStandard(validationExecutorSetRegistry);
PeppolValidation2025_05.init(validationExecutorSetRegistry);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Franco Graziani

79766051

Date: 2025-09-16 09:45:21
Score: 2
Natty:
Report link

If you are sure you did everything correctly, check your spelling. In my case, I did module.exprots instead of module.exports

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

79766050

Date: 2025-09-16 09:45:21
Score: 3.5
Natty:
Report link

Any idea to solve the above problem Omnet++ 5.7

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

79766047

Date: 2025-09-16 09:45:21
Score: 2
Natty:
Report link

After fiddling with CMake and CPack, it seems that it is not possible to use NSIS Plugin commands from there.

In general, it seems it is better to use the vanilla version of NSIS and make do with packing ExecuteCommand with the list of shell commands you want done.

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

79766046

Date: 2025-09-16 09:45:21
Score: 1
Natty:
Report link

Does, but extremely verbosely.

fn=("upload.abs.2025-09-15T20.06.37.564Z.e0f24926/1");
m1(String g){return fn+'/'+g;}
Arrays.asList(f.list()).stream().map(new java.util.function.Function(){Object apply(Object o){return m1((String)o);}}).collect(java.util.stream.Collectors.toList());
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Michael Skidan

79766044

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

The easiest way to fix it is to create a styled.d.ts file in the root of the project and paste this code:

import theme from '@/constants/theme'; // Your path
import 'styled-components';

declare module 'styled-components' {
  type MyTheme = typeof theme;

  interface DefaultTheme extends MyTheme {}
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Er Bakhshyan

79766042

Date: 2025-09-16 09:34:54
Score: 10.5 đŸš©
Natty: 5
Report link

Did you ever find a solution to this? I am having the same issue

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever find a solution to this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same issue
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: user42859607

79766036

Date: 2025-09-16 09:28:51
Score: 1
Natty:
Report link

1.If the processID is different,kill one of the processes。

2.If the processID is the same,check the tomcat workspace---webapps&ROOT。

Normally we put the jenkins.war into the webapps then will exist a file folder

named jenkins after tomcat started successfully.if you put * of the jenkins folder

into ROOT folder,then you can visit jenkins by http://ip:port/ or

http://ip:prot/jenkins.And also you will hit the problem like this。

My way is delete the ROOT folder。IF you want visit the jenkins by

http://ip:port without the postfix,you can edit the /conf/server.xml and

add Context parameter.Good luck!

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

79766013

Date: 2025-09-16 09:12:44
Score: 2.5
Natty:
Report link

Very probably you have too many lags in your VAR model. If you lower number of lags, it should help you. In the beginning you should find out optimal number of lags. In R you can do it by selectVAR function for your data and the optimal number of lags (usually it is AIC) paste to p parameter in VAR function. This kind of thing happens especially when you have low number of observations or too big number of lags.

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

79766012

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

<?xml version="1.0"?>

<Animations target="all" framePerSecond="15" showAllFrame="true" loop="true"/>

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Đ”Đ”ĐœĐžŃ Đ“Đ°ĐžĐœĐ°

79765998

Date: 2025-09-16 09:01:41
Score: 1.5
Natty:
Report link

i had this problem. and find that: you have to check this git https://github.com/JetBrains/JetBrainsRuntime

and find out what is the compitable version of JBR with JCEF with your IDE version

press double "SHIFT" to show search

select "ACTION" tab

search "choose boot java run time ..."

select compitable JBR version

wait to download

restart ide

TADAAAA your welcome

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

79765987

Date: 2025-09-16 08:47:37
Score: 1
Natty:
Report link
  1. Use the supported SDKs as per: https://learn.microsoft.com/en-us/azure/cosmos-db/hierarchical-partition-keys?tabs=net-v3%2Carm-json#limitations-and-known-issues

  2. Use this format, for a Cosmos DB SQL database with a container using the below Terraform code, the plural-version of partition-key-paths:

     partition_key_paths   = ["/parent", "/child"]
     partition_key_kind    = "MultiHash"
     partition_key_version = 2
    
  3. Once created, use https://cosmos.azure.com/ portal click on your container, Settings to view your new hierarchical setup:
    enter image description here

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

79765962

Date: 2025-09-16 08:31:33
Score: 3
Natty:
Report link

You can try DBot API / WS. It gives fast token price data (Uniswap, SushiSwap, etc.) with low cost, quick response, and free monthly quota.

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

79765961

Date: 2025-09-16 08:31:33
Score: 0.5
Natty:
Report link

It works for me from .NET 8 to .NET Framework 4.5.2, only by modifying to <TargetFramework>net8.0</TargetFramework><TargetFramework>net452</TargetFramework>. (Not TargetFrameworkVersion!)

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Surmount

79765959

Date: 2025-09-16 08:30:32
Score: 1.5
Natty:
Report link

You are using the wrong image name. It should be rancher/k3s:v1.20.11-k3s2 instead of rancher/k3s:v1.20.11+k3s2.

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

79765957

Date: 2025-09-16 08:29:32
Score: 1.5
Natty:
Report link

Delete the corresponding key from /etc/sysctl.conf or a file in /etc/sysctl.d/

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

79765955

Date: 2025-09-16 08:27:31
Score: 2.5
Natty:
Report link

Please check table definition and size of column , In my case it was tinyint(2) and hence the error.

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

79765942

Date: 2025-09-16 08:14:28
Score: 3
Natty:
Report link

Interesting question! Keeping the user experience clean is key — I faced something similar while testing features for Pak Game. We found it's better to avoid showing locked features in the free version, as it keeps users more engaged and reduces confusion. A clean UI really does make a difference

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

79765933

Date: 2025-09-16 08:11:27
Score: 3
Natty:
Report link

Since July 2025 WhatsApp Cloud API supports both inbound and outbound voice calls:

Cloud API Calling

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

79765930

Date: 2025-09-16 08:08:25
Score: 10 đŸš©
Natty: 5
Report link

I have the same problem that after 30s my OTP no longer work. How can I keep getting the updated OTP in google authenticator instead of rescan QR Code adding another account for new OTP? What can I do with the txtOTP.Text.Trim()?

My problem: Here

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): can I do
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1): What can I do
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Matthew

79765924

Date: 2025-09-16 08:04:23
Score: 1.5
Natty:
Report link
getItemInputValue({ item }) {
    return item.name;
}

The getItemInputValue function returns the value of the item. It lets you fill the search box with a new value whenever users select an item, allowing them to refine their query and retrieve more relevant results.

https://www.algolia.com/doc/ui-libraries/autocomplete/core-concepts/sources/#param-getiteminputvalue

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

79765919

Date: 2025-09-16 08:04:23
Score: 0.5
Natty:
Report link

Try subprocess.Popen():

import subprocess

p = subprocess.Popen('ping 10.1.0.1')

p.wait()

print (p.poll())
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Bending Rodriguez

79765918

Date: 2025-09-16 08:04:23
Score: 2.5
Natty:
Report link

Since this post was posted 8 years ago and if you guys can't even fix this, the only thing you can do is click the text box area at the top of the vscode(or just use CTRL+SHIFT+P) and type : " >Developer: Reload Window " , or you can select it once the dropdown appears.

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

79765916

Date: 2025-09-16 07:53:57
Score: 5.5
Natty: 6
Report link

@jmoerdyk and Toby Speight, nice to prevent me to add a comment to your comments, so I cannot justify why I put an ANSWER instead of a COMMENT.

It's just because the maximum COMMENT size is too short to contain my post, that's why I wrote an ANSWER instead...

And Thank you is a form of politeness in my country. Maybe you prefer Regards ?

:-)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): Regards
  • Blacklisted phrase (0.5): I cannot
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @jmoerdyk
  • Low reputation (1):
Posted by: Luuke

79765915

Date: 2025-09-16 07:52:57
Score: 3
Natty:
Report link

check out DBot API WS, real-time decoded DEX swaps + pool/pair prices, super fast, low cost, and comes with free monthly quota.

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

79765898

Date: 2025-09-16 07:36:52
Score: 1.5
Natty:
Report link

Same for me. This helps:

    1. Quit Xcode.

    2. Go to ~/Library/Developer/Xcode/UserData/Provisioning Profiles and delete all your profiles.

    3. Relaunch Xcode.

    4. Try again.

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

79765879

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

Thanks to everyone. Your answers were really helpful

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

79765878

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

The HTTP ERROR 400 Invalid SNI issue you encountered is because NiFi's HTTPS certificate does not match the IP/domain name you use when accessing. NiFi will strictly verify the SAN (Subject Alternative Name) in the certificate by default. If there is no corresponding IP or domain name in the certificate, the connection will be rejected

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

79765876

Date: 2025-09-16 07:14:47
Score: 1
Natty:
Report link

After reading @DazWilkin's replies, I ended up realizing that what I'm trying to do is really not a good solution. So after a bit more tinkering I finally got Signed URLs to work on my backend by using a service account and creating a service account key, which can then be used to create signed URLs on the backend.

//using expressjs

const {Storage} = require('@google-cloud/storage');
const storage = new Storage({
  projectId:"your-project",
  keyFilename:"./key-location.json"
});   

router.post("/returnSignedUrl", async (req, res) => {
    console.log('/returnSignedUrl', req.body)

    let a = req.body.data

    const options = {
      version: 'v4',
      action: 'read',
      expires: Date.now() + 15 * 60 * 1000 // 15 minutes
    };

    // Get a v4 signed URL for reading the file
    const [url] = await storage
      .bucket(a.bucket)
      .file(a.filename)
      .getSignedUrl(options).catch((err)=> console.log(err));

      console.log(url)
    res.send(url)
});

Anyway, it works now. If anyone else wants to figure out how to answer my original question, the API response is a valid UTF8 based on this package. I just never figured out how to properly convert that into a blob or something downloadable.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @DazWilkin's
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Art T.

79765868

Date: 2025-09-16 07:06:45
Score: 3.5
Natty:
Report link

I encountered the same issue and consulted ChatGPT.
According to the response, the changelog dated July 12 refers to the limitation of five repositories.

https://github.blog/changelog/2025-06-11-gain-more-control-and-clarity-with-scheduled-reminders-for-pull-requests/?utm_source=chatgpt.com

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

79765857

Date: 2025-09-16 06:53:41
Score: 2
Natty:
Report link

Delete the .xcode.env.local file once, then run pod install, and after that run the project again.

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

79765849

Date: 2025-09-16 06:41:15
Score: 6.5 đŸš©
Natty: 5.5
Report link

Yeah, Command-Shift-L does the trick. Just like before, right?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Peter Conijn

79765847

Date: 2025-09-16 06:37:14
Score: 3.5
Natty:
Report link

However, in all my tests, the import statement for MoreObjects is not being added. Can anyone explain why?

I was running into something similar tonight. I would say try using the fully qualified name in the JavaTemplate, so that maybeAddImport() detects the usage correctly. That worked me!

JavaTemplate template = JavaTemplate.builder("com.google.common.base.MoreObjects.toStringHelper(#{any()})")
.build();
Reasons:
  • Blacklisted phrase (0.5): why?
  • RegEx Blacklisted phrase (2.5): Can anyone explain
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: NaanProphet

79765844

Date: 2025-09-16 06:34:13
Score: 2.5
Natty:
Report link

the same issue,run on real iphone device
0xe800801a (This provisioning profile does not have a valid signature (or it has a valid, but untrusted signature).)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ćŒ æŽȘ慮

79765842

Date: 2025-09-16 06:31:13
Score: 2
Natty:
Report link

In Blazor WebAssembly, debugging only works reliably in Google Chrome or Microsoft Edge. I tried everything in all the other answers—nothing helped. Then I switched the debugging browser and finally reached the breakpoint.

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

79765835

Date: 2025-09-16 06:24:10
Score: 2.5
Natty:
Report link

What's Going On?

When you declare Dim Arr(0) As Long, you're creating a static (fixed-size) array. Then you pass it to DoSomethingWithArray as a Variant using ByRef. Inside that procedure, you overwrite ArrayArg with a new array (localArr), which causes VBA to attempt to reassign the reference.

But here's the catch:

This is because VBA tries to reconcile the static array reference with the new dynamic array assignment, and in doing so, it essentially resets the original array.

How to fix it?

If you want predictable behavior, use a dynamic array instead:

Sub TestFixedSizeArrayAsByRefVariantArgument()
    Dim Arr As Variant
    ReDim Arr(0) As Long
    Arr(0) = 99
    DoSomethingWithArray Arr
    Debug.Print Arr(0) ' Outputs -1 as expected
End Sub

This works because Arr is a Variant holding a dynamic array, so reassignment inside the procedure behaves as expected.

Reasons:
  • RegEx Blacklisted phrase (1.5): How to fix it?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): What's
  • Low reputation (1):
Posted by: MDragon

79765829

Date: 2025-09-16 06:18:08
Score: 2
Natty:
Report link

Iptables can only tell you that a connection occurred. To determine which process or command was involved, it's best to use ss + eBPF (auditd).

To determine the data sent, use tcpdump/ngrep or strace.

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

79765828

Date: 2025-09-16 06:17:08
Score: 1.5
Natty:
Report link
version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
   version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
   
header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mirqazab-nasiri 1123

79765826

Date: 2025-09-16 06:16:07
Score: 2.5
Natty:
Report link

Best way is to use ctrl/command + P and then type "navigate back" and see the shortcut when you forget the shortcut or are trying to memorize. You can also use this for all shortcuts.

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

79765822

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

Create a lookup table with an age column and a group/class column: Save the columns as named ranges: enter image description here

The formula in B2 is =LOOKUP(B2,age,class)

enter image description here

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

79765819

Date: 2025-09-16 06:01:05
Score: 1
Natty:
Report link

Put your index.html and shapes.js in the same folder, then use <script src="shapes.js"></script>. Place the script tag after the <canvas> or add defer so the canvas is ready. Also, use beginPath() and stroke() (or fill()) with ellipse so it actually draws.

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

79765814

Date: 2025-09-16 05:56:03
Score: 2.5
Natty:
Report link

Thanks everyone for the replies.

This issue occurs with version 2.5.0. It has already been reported on GitHub: Issue #803 .

For now, the workaround is to use version 2.4.0, which I’ve tested and confirmed works fine with Angular 20 (at least for Google login).

So until the maintainers release a fix, it’s better to stick with 2.4.0.

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

79765808

Date: 2025-09-16 05:44:01
Score: 1.5
Natty:
Report link

I had this same problem, it was caused by the settings in the listener.ora being modified so that the global_dbname setting didn't patch the result of select global_name from global_names.

In my case the entry in the listener was changed to lowercase, after that I could only see the domain name in the listener status.

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

79765793

Date: 2025-09-16 04:56:52
Score: 1.5
Natty:
Report link

I know how frustrating this is. Triggers work fine one day and then suddenly stop. Sometimes it’s because of changes in account ownership or domains. I eventually moved over to NexoPDF because it doesn’t depend on Google Script triggers. I just prepare my spreadsheet, hit generate, and the PDFs are created automatically without worrying about broken schedules.

https://www.nexopdf.com

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

79765789

Date: 2025-09-16 04:45:49
Score: 2.5
Natty:
Report link

Got it ✅. I’ll provide you with answers for all the questions from the exam paper shown in the image.

---

Q.1 Long Answer Questions (Any Three)

(5 Marks each = 15 Marks)

  1. Define community pharmacy and mention development of it.

Definition: Community pharmacy is the branch of pharmacy that deals with the provision of medicines and pharmaceutical services directly to the community, usually through retail pharmacies or drug stores.

Development:

In the past, pharmacies were mainly focused on compounding and dispensing.

Later, industrialization shifted focus towards ready-made dosage forms.

In modern practice, community pharmacies provide patient counseling, drug information, health education, preventive care, vaccination, and monitoring of chronic diseases.

Development is driven by Good Pharmacy Practice (GPP), WHO guidelines, and clinical pharmacy evolution.

---

  1. Explain role of community pharmacist.

Dispensing prescription medicines safely and accurately.

Providing drug information and patient counseling.

Monitoring therapy outcomes and adverse drug reactions.

Offering health screening services (BP, sugar, cholesterol).

Promoting rational drug use.

Educating about lifestyle modification, smoking cessation, nutrition, and immunization.

Maintaining patient records and confidentiality.

Ensuring availability of essential medicines.

---

  1. Write parts of prescription.

A standard prescription has the following parts:

1. Superscription – Symbol "Rx" meaning “take thou”.

2. Inscription – The body of prescription containing names and doses of drugs.

3. Subscription – Directions to the pharmacist (e.g., how to prepare medicine).

4. Signa (or Signature) – Instructions to the patient (e.g., how to take medicine).

5. Date – When prescription was written.

6. Name, age, sex, address of patient.

7. Prescriber’s details – Name, signature, registration number, and address.

---

  1. Write a note on body language in effective communication skill.

Body language is a form of non-verbal communication that expresses feelings, attitudes, and emotions through gestures, posture, facial expressions, and eye contact.

It contributes about 55% of total communication.

Positive body language: eye contact, open posture, nodding, smiling – builds trust and confidence.

Negative body language: crossed arms, avoiding eye contact, frowning – creates barriers in communication.

In pharmacy practice, effective body language ensures better patient counseling and rapport building.

---

Q.2 Short Answer Questions (Any Five)

(3 Marks each = 15 Marks)

  1. Pharmacy practice in China:

Ancient Chinese pharmacy is based on traditional Chinese medicine (TCM) using herbs, acupuncture, and natural remedies.

Modern China has integrated western pharmacy with TCM.

Pharmacists in China provide drug dispensing, counseling, and are trained in both herbal and modern medicine.

  1. Explain nutrition counselling.

It is a process where pharmacists guide patients about diet and nutrition to improve health.

It includes advice on balanced diet, weight management, vitamins, minerals, prevention of malnutrition, and managing chronic diseases like diabetes, hypertension, obesity.

  1. Types of prescription:

1. General prescription – for common medicines.

2. Special prescription – for narcotics, psychotropics, antibiotics etc.

3. Hospital prescription – issued within hospitals.

4. Electronic prescription – digitally generated prescriptions.

  1. Describe types of communication:

Verbal Communication – spoken or written words.

Non-verbal Communication – gestures, facial expressions, posture, body language.

Visual Communication – signs, symbols, pictures, graphs.

  1. Types of verbal communication:

Oral communication (face-to-face, phone calls, meetings).

Written communication (letters, prescriptions, emails, reports).

  1. Areas covered by SOPs (Standard Operating Procedures):

Dispensing of medicines.

Storage of drugs.

Patient counseling.

Handling of narcotics.

Equipment maintenance.

Quality assurance and record keeping.

---

Q.3 Multiple Choice Questions (All Compulsory)

(10 Marks – 2 Marks each)

  1. NHS introduced in which year?

👉 B) 1948

  1. GPP stands for

👉 B) Good Pharmacy Practice

  1. Superscription express by

👉 B) Rx

  1. The impression of body language visuals in communication is approximately ____ percent.

👉 A) 55

  1. Which office announced women health?

👉 B) US FDA

  1. Define community pharmacy.

👉 Community pharmacy is a branch of pharmacy that provides medicines, healthcare advice, and pharmaceutical services directly to the public through retail pharmacies or drug stores.

---

✅ That covers all answers from your exam paper in clear and concise form.

Do you want me to also make a point-wise condensed version (perfect for last-minute revision before the exam)?

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

79765781

Date: 2025-09-16 04:26:22
Score: 4
Natty: 4.5
Report link

a simple test project found about this subject here

https://drive.google.com/file/d/1ED67RCqa6_rpW3D23D4gwzT3xuEjJFSS/view?usp=drivesdk

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

79765766

Date: 2025-09-16 03:59:16
Score: 3
Natty:
Report link

<p>Name: Juliana Marie F. Custodio <br>

Grade and Section: Grade 10 masipag B <p> <br>

<hr/> < P- align= My Autobiography </p> <br>

<hr color = #27DAF5 >

<p>Hi my name is <mark> Juliana F. Custodio<mark> <I am 16 year old<mark><mark> I live at Rajal Balungao Pangasinan<mark>

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Juliana Marie F. Custodio

79765761

Date: 2025-09-16 03:48:13
Score: 2.5
Natty:
Report link

You can't enforce coroutines 1.8.1 in Kotlin 2.2.x/Compose 2.2.x.The correct approach is to upgrade to kotlinx.coroutines 1.10.x and align it with enforcedPlatform. The latest version of the Firebase BOM and coroutines 1.10.x are a compatible combination.

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

79765759

Date: 2025-09-16 03:37:11
Score: 4
Natty:
Report link

https://docs.google.com/document/d/1E3s7i5KBmUNDHTRVrYx9pEwzxFwqMefgrX0MPOJG4BU/edit?tab=t.0

URGENT SAFETY WARNING - Predatory Behavior & Theft by Derek Chan (0432900805)

Subject: URGENT SAFETY WARNING - Predatory Behavior & Theft by Derek Chan

ATTENTION Community Members, Sex Workers, and Allies,

Reasons:
  • RegEx Blacklisted phrase (2): URGENT
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kala Kutta

79765758

Date: 2025-09-16 03:36:07
Score: 8 đŸš©
Natty:
Report link

me to bro...me too..................................

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (2):
  • Filler text (0.5): ..................................
  • Low entropy (1):
  • Low reputation (1):
Posted by: TrueSigmatisime

79765752

Date: 2025-09-16 03:17:40
Score: 4
Natty:
Report link
yf.Ticker('msft').get_financials()
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ustekovf

79765751

Date: 2025-09-16 03:17:40
Score: 3
Natty:
Report link

If it is a temporary test → use nohup ... & disown. If it is a long-term online service → must use systemd (or pm2), because it has restart and log management

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

79765745

Date: 2025-09-16 03:05:38
Score: 2.5
Natty:
Report link

You may want to consider Python scraping tools. for example, Scrapy, Selenium, or BeautifulSoup. If you already have the DOI, URl, title, and PubMed ID in a CSV file, you can loop through each item in the CSV, fetch e.g. the URL and title, then scrape the text.

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

79765740

Date: 2025-09-16 02:42:33
Score: 2
Natty:
Report link

Make sure that the custom replication instance you selected has network access to both endpoints; that is, the Security Group and Subnet are correct, the Postgres port is open, and if S3 is private, it has the necessary IAM role and policy or a VPC endpoint for S3 defined. In fact, a "Connection refused" error during the assessment phase usually indicates an issue with the replication instance’s access to the target or S3, not the endpoint test itself.

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

79765733

Date: 2025-09-16 02:32:31
Score: 3
Natty:
Report link

As of 16/09/2025 ~1:00 UTC, there seems to be an ongoing problem affecting provisioning profile generation. It is currently under investigation by the Apple developer team.

enter image description here

https://developer.apple.com/forums/thread/800521?answerId=858192022#858192022

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

79765728

Date: 2025-09-16 02:26:29
Score: 2.5
Natty:
Report link

Don't bother yourself with downgrading to lower Xcode versions 16.3, 16.2, 16.1. It seems like a global change to rob poor devs for 100$... If that was intensional, then I become Android dev. If apple is thaaat greedy...

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

79765722

Date: 2025-09-16 02:14:27
Score: 2.5
Natty:
Report link

I am thinking, due to performance issues, VSCode's hover documentation is not configured to automatically show the full python.org documentation. It's designed to just show the condensed local docstring information.

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

79765721

Date: 2025-09-16 02:12:26
Score: 2
Natty:
Report link

The issue is that Cloud9 can’t directly connect to the private address of a server in a private subnet unless both are in the same VPC with proper internal routing. Usually, it’s enough to make sure Cloud9 and the EC2 instance are in the same VPC and that the server’s Security Group allows access from Cloud9. If Cloud9 is in a different VPC, you’ll need to set up VPC peering or a similar connection between them.

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

79765719

Date: 2025-09-16 02:09:25
Score: 2.5
Natty:
Report link

I just had this happen due to CPG usage, devops restarted the machine and seeing if this helps.

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

79765718

Date: 2025-09-16 02:07:25
Score: 1
Natty:
Report link

As of 2025, jupyter_server is the correct library to generate hash value of a string. I got a result with this config.

from jupyter_server.auth import passwd
passwd('PASS')

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

79765709

Date: 2025-09-16 01:42:56
Score: 6.5 đŸš©
Natty:
Report link

Getting the same issue, never had it before. think it may be on apples side.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Getting the same issue
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ash

79765705

Date: 2025-09-16 01:25:53
Score: 1.5
Natty:
Report link

-- Count number of rows

SELECT COUNT(*)

FROM table_name;

-- Count with condition

SELECT COUNT(*)

FROM table_name

WHERE column_name = 'value';

-- Sum a column

SELECT SUM(column_name)

FROM table_name;

-- Combine SUM and COUNT

SELECT COUNT(*), SUM(column_name)

FROM table_name;

-- Group results

SELECT column_name, COUNT(*), SUM(other_column)

FROM table_name

GROUP BY column_name;

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: MHEA ERICA EMFESTAN

79765703

Date: 2025-09-16 01:17:51
Score: 1.5
Natty:
Report link

Since May 27, 2025, Crashlytics has started displaying Tombstone traces.
I assume this feature is only available on Android 12 and higher.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-2):
Posted by: Aldo Wachyudi

79765683

Date: 2025-09-16 00:02:38
Score: 3
Natty:
Report link

Just for the record, the flag that solves this problem in the URL connection is:

jdbc:sqlserver://;serverName=localhost;databaseName=master;sendStringParametersAsUnicode=false

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

79765677

Date: 2025-09-15 23:55:36
Score: 3
Natty:
Report link

The "Require linear history" ruleset rule might also be blocking simple Merging as a way of merging pull requests:
Screenshot of github ruleset settings.

Disabling "Require linear history" fixed it for me.

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

79765671

Date: 2025-09-15 23:26:30
Score: 10.5 đŸš©
Natty: 5
Report link

did you find any solution for this problem ?

    "react-native": "0.76.1",
    "react-native-gesture-handler": "2.22.0",
Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you find any solution
  • RegEx Blacklisted phrase (2): any solution for this problem ?
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): did you find any solution for this
  • Low reputation (1):
Posted by: Ksiks

79765670

Date: 2025-09-15 23:25:29
Score: 1
Natty:
Report link
    • Choose a hypothetical organization (e.g., an online store, healthcare provider, or financial institution) and design the database schema.

    • Create an Entity-Relationship (ER) diagram for the system using Lucidchart. Include at least 5 entities and define their attributes and relationships.

      • Ensure that your design incorporates the concepts of primary keys, foreign keys, and one-to-many or many-to-manyrelationships.
    • Deliverable:

      • Submit the ER Diagram in PDF or image format, along with a brief explanation of each entity and its relationships.
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Adam Marchand

79765664

Date: 2025-09-15 23:05:03
Score: 4
Natty: 6
Report link

I am developing a project that can calculate mean ,median and mode and this is the design interface I have list box that receive items from the text box and combo box that provides the option for selecting meam, median and mood now I am finding it difficult to code all these three items [mean , median and mood]. I need a video content that can guide me to do it, I have only tomorrow next to make it available for presentation. Thanks counting on your help.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): guide me
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bessah Tsagli

79765663

Date: 2025-09-15 23:01:01
Score: 2.5
Natty:
Report link

It turns out this is a bug in GitLab.

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

79765661

Date: 2025-09-15 22:53:00
Score: 0.5
Natty:
Report link

If you are using Linux (Ubuntu), the service most likely tries to use IPv6 first, which may cause the error.
You can force Node.js to prefer IPv4 by setting the following environment variable:

export NODE_OPTIONS=--dns-result-order=ipv4first

In most cases, this will resolve the problem.

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

79765659

Date: 2025-09-15 22:44:58
Score: 1.5
Natty:
Report link
input type="button" value="show image" onclick="showImg()" />
<div id="welcomeDiv"  style="display:none;">
    <img src="http://www.w3schools.com/css/paris.jpg" alt="Paris" style="width:40%">
</div>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Alex

79765643

Date: 2025-09-15 22:05:49
Score: 0.5
Natty:
Report link

To expand on the top answer (rejected edit):

Valid time zones are exposed through sys.time_zone_info. This is helpful if you don't know the official name of a particular time zone.

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

79765631

Date: 2025-09-15 21:34:42
Score: 1
Natty:
Report link

A lot of the settings in the Odoo settings page are fields on the res.company model. You could extend the res.company model with the default overridden.

from odoo import fields, models


class ResCompany(models.Model):
    _inherit = "res.company"

    some_overridden_setting = fields.Boolean(default=True)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: RecursionError

79765606

Date: 2025-09-15 20:54:32
Score: 2
Natty:
Report link

I don't see a Informix.Net.Core on nuget. I used the same SDK as the OP, and installing the latest (9.0.9) System.Security.Permissions nuget package rectified this error

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

79765589

Date: 2025-09-15 20:35:26
Score: 2
Natty:
Report link

I asked CoPilot and finally got a legit answer... You don't want the engine to transpile your perfectly organized partial files as well as your main file into multiple, seperate .css files. If you use the underscore file name method when importing, it will transpile everything into one big .css files instead. This is just better practice for many reasons and should be followed.

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

79765588

Date: 2025-09-15 20:35:26
Score: 2
Natty:
Report link

Encapsulation is the composition of meaning.

Abstraction is the simplification of meaning.

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

79765584

Date: 2025-09-15 20:33:26
Score: 2.5
Natty:
Report link

This error comes from OpenAI, no doubt. Is it the right key? A trial account that expired? A paid account with no credit? I confirm you don't need an index when inserting.

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

79765579

Date: 2025-09-15 20:30:25
Score: 1.5
Natty:
Report link

Adding text and setting color in a RichTextBox, will only work if your dealing with small amounts of data, less than 2MB. I'm building a compare tool and my ASCII compare uses this method and the Binary compare builds the RTF in the correct format, however, the spaces are killing me after a color is set and when it's "\f0" turned off. AI states that this will resolve it, "\~", but it doesn't. Looking for the middle ground solution.

This is my compare tool I'm still working on, but the ASCII uses what I'll be changing soon, while the binary uses the RtfBuilder class and works pretty good, outside of the extra spaces I have to deal with. Maybe future people can use some of this code to help answer how colors and fonts in a string then loaded afterwards into a RichTextBox. It's not an extensive RTF class, only the basics.
https://github.com/gavin1970/Chizl.FileCompare/tree/master/rtf

I could always use help working on it, if anyone would like to join. Ping me here or through github.

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

79765560

Date: 2025-09-15 20:05:18
Score: 1.5
Natty:
Report link

I have never programmed in C# so this is just my thinking.

I think lambda-functions and methods of an instance are different. One of them is bound to the specific object while the other one is an anonymous function which can be transfered anywhere. I believe you can't transfer the method of the specific instance.

Another idea would be, that forEach needs something defined which can be used for substitution in its iterations, while

hashCodeDelegate.Add

doesn't defined where should it be substituted.

The lambda-function clearly defines a variable which will be used like in a for loop for(str in sentence) which will be just pasted in the code block hashCodeLambda.Add(str)

str => hashCodeLambda.Add(str)

And this is what claude.ai returns regarding the problem:

What could be clarified:


The main reason for the different behavior is method group conversion. hashCodeDelegate.Add is a method group that the compiler must convert to a delegate. In doing so, it "binds" the method to the current instance of hashCodeDelegate.

Both are actually "bound": Both str => hashCodeLambda.Add(str) and hashCodeDelegate.Add capture their respective instances. The difference lies in when this binding occurs.

More precise explanation: With hashCodeDelegate.Add, the same once-bound instance is always used at the time of ForEach execution. The lambda str => hashCodeLambda.Add(str), however, captures the variable hashCodeLambda and resolves it anew with each execution.
Suggestion for improving your answer: You could mention that this is about "method group conversion" vs. "lambda capture" - those would be the correct C# technical terms for this phenomenon.
Reasons:
  • Blacklisted phrase (1.5): where should i
  • Blacklisted phrase (1): What could be
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: dontoronto

79765553

Date: 2025-09-15 20:00:17
Score: 2.5
Natty:
Report link

You can place a Spacer() between the last widget and the other widgets. This will work if your column doesn't sit in a SingleChildScrollView()

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