79234978

Date: 2024-11-28 18:18:27
Score: 1.5
Natty:
Report link

My situation was a different from described above. And no one answer don't have full description of fixing process. The issue was that I had installed multiple watchman instances. Following this genius post did the job!

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

79234974

Date: 2024-11-28 18:17:27
Score: 0.5
Natty:
Report link

Use NSButton when AppKit, or UIButton when UIKit:

override func viewDidLoad() {
    super.viewDidLoad()
    let button = NSButton()
    button.title = "My Button"
    self.view.addSubview(button)
    button.frame = CGRect(x: 0, y: 0, width: 100, height: 30)
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Maxim Rysevets

79234972

Date: 2024-11-28 18:17:27
Score: 0.5
Natty:
Report link

Have you tried strapi v5 plugin populate?

Its fork of the original strapi plugin populate which does not support Strapi v5 at the time.

populate=* only populates one relation, 1 level deep, but with the plugin above you can populate with custom depth or default max depth. Your Api call would look like :

/api/articles?pLevel

or

/api/articles?pLevel=10
Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Syed Mehdi R.

79234970

Date: 2024-11-28 18:16:26
Score: 4
Natty: 5
Report link

It works for GAS! Thanks for the answer!

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

79234964

Date: 2024-11-28 18:14:26
Score: 2.5
Natty:
Report link

In my case I had a few installed watchmans. I followed this and it helped me. I have Mac on M1 chip

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

79234960

Date: 2024-11-28 18:12:25
Score: 2
Natty:
Report link

Same error here. Trying to use openCV 4.10.0 (currently newest) as an importet module in my android App, using Kotlin v2.0.21. Im getting: "Execution failed for task ':opencv:compileDebugKotlin'.

A failure occurred while executing org.jetbrains.kotlin.compilerRunner.GradleCompilerRunnerWithWorkers$GradleKotlinCompilerWorkAction Internal compiler error. See log for more details". Blockquote

ChatGPTs analysis: "The error suggests that the issue is in the MatAt.kt file, specifically around a setV2c function. The problem may arise from:

Unsafe type coercion (e.g., UByte to Byte or vice versa). The use of generics in combination with Kotlin's type system."

Reasons:
  • RegEx Blacklisted phrase (1): Same error
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: viMranx

79234959

Date: 2024-11-28 18:12:25
Score: 3
Natty:
Report link

Here is the answer. I hope it will help

Reasons:
  • Whitelisted phrase (-1): hope it will help
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is the answer
  • Low reputation (0.5):
Posted by: Luis Pereira

79234952

Date: 2024-11-28 18:08:09
Score: 2
Natty:
Report link

Thank you @ValNik for you help. The final query is:

DECLARE @months smallint=?; -- where ? is the number of months of continuous claim (with allowed gaps of 6 months) 
SELECT * 
FROM(
select *
  ,max(RunningMonth)over(partition by EID) maxRunningMonth
from(
select *
  ,count(case when isBreak=0 then coalesce(MonthGap,0) else 0 end)
      over(partition by EID,grN order by MonthYear) RunningMonth
  ,SUM(Lodging + coalesce(others,0.0)) 
      OVER (PARTITION BY EID,grN ORDER BY MonthYear) as RunningTotal
from(
select *
  ,sum(isBreak)
    over(partition by EID order by MonthYear) grN
from(
  SELECT c.EID
    ,c.CLMinitialDT
    ,c.MonthYear
    ,LAG(c.MonthYear) OVER (PARTITION BY c.EID ORDER BY c.MonthYear ) as PrevMth
    ,c.Lodging 
    ,c.others
  --  ,SUM(Lodging + coalesce(others,0.0)) over(partition by EId,CLMinitialDt order by MonthYear) RunningTotal
    ,COUNT(*) OVER (PARTITION BY c.EID, c.MonthYear)-1 AS Repeats1
    ,datediff(MONTH, LAG(c.MonthYear) OVER (PARTITION BY c.EID ORDER BY c.MonthYear )
                   ,c.MonthYear )  as MonthGap
    ,case when datediff(MONTH, LAG(c.MonthYear) OVER (PARTITION BY c.EID ORDER BY c.MonthYear )
                   ,c.MonthYear )>6 then 1 
     else 0 end isBreak
    ,datediff(MONTH, MIN(c.MonthYear) OVER (PARTITION BY c.EID )
                   ,MAX(c.MonthYear) OVER (PARTITION BY c.EID )) + 1 as TotalMonths 
  FROM ir_Costs c 
)a
)b
)c
)d WHERE (maxRunningMonth >= @months OR @months IS NULL)

Can be viewed here https://dbfiddle.uk/TrKMACHd

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @ValNik
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Jean-Marc

79234950

Date: 2024-11-28 18:07:08
Score: 1
Natty:
Report link

When using huggingface transformer library, the output returned by the model includes the model loss. Before starting the training, simply perform a forward pass on the dataset and obtain the model loss.

with torch.no_grad():
    outputs = model(**inputs, labels=labels)

loss = outputs.loss
print(f"Loss: {loss.item()}")
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Ali Moameri

79234943

Date: 2024-11-28 18:05:08
Score: 2
Natty:
Report link

When you publish a project to a folder, all of the static assets get copied into a merged wwwroot, where the _content folder is created by a razor component libraries linked to your project. You should be able to write a post-publish script that invokes tailwind in that folder to output a merged CSS file. It might be trickier with other publishing targets, but see this SO answer for something that might work for all of them.

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When you
  • High reputation (-1):
Posted by: naasking

79234938

Date: 2024-11-28 18:04:07
Score: 4
Natty:
Report link

Совет. wv.setVisibility(View.INVISIBLE) оставляет в макете место под этот элемент, то есть если ниже него есть другие элементы, они смещаются. Это может выглядеть некрасиво Я всегда ставлю свойство GONE, это не мешает загружать страницы, а по окончании загрузки ставить VISIBLE

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: ДаняВлад Восемь

79234929

Date: 2024-11-28 18:01:06
Score: 3
Natty:
Report link

Thank you so much for all of the suggestions. What ended up working was I wrapped the TableView in a StackPane, and I also think the TableView needed the data. The empty columns by themselves didn't add the scrollbar. The Columns are now resizing too, they're just very slightly to small to fit entire column header so I think I just need to expand the relative widths slightly.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Trevor H

79234913

Date: 2024-11-28 17:57:05
Score: 2.5
Natty:
Report link

After some research and conversation under conan's github thread I've came up to the conclusion that it's not a Conan's or CMake's thing, but just the way static/interface libraries are linked.

My iface and myLib libraries where "linked" against other static libraries, but there isn't something like linking a static library against other static library. There is still a lot of things in this matter I need to aknowledge, but as far as I understand they are all linked against the first shared library or executable in the hierarchical tree. Compiling a static library does not call the linking phase, so target_link_libraries against such would cause only including public headers.

It looks like there is no way to treat CMake/Conan components of one project as completely distinct in the means of static dependencies. Every requirement from the Conan dependencies' recipe will take part somewhere in the linking phase.

I would be grateful if someone confirmed this. Otherwise, if put me right, I would check theirs answer.

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2): I would be grateful
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: archetypiarz

79234894

Date: 2024-11-28 17:50:02
Score: 1
Natty:
Report link

DbVisualizer developer here!

This seems like a quite useful feature to have, but unfortunately, we don't currently support it.

However, I have taken the liberty of adding it to our internal list of feature requests, and I will bring it up for discussion with the rest of the team.

Cheers!

Reasons:
  • Blacklisted phrase (1): Cheers
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: BambooleanLogic

79234882

Date: 2024-11-28 17:46:01
Score: 3
Natty:
Report link

So far, didn't do much. I'm stuck on how to find a search method.

Sub CSVFileSearch()
Dim FilePath As String

FilePath = "example.csv"
Open FilePath For Input As #1
Do Until EOF(1)
Line Input #1, LineFromFile
lineitems = Split(LineFromFile, ",")

Debug.Print lineitems(0)

Loop
Close #1
End Sub
Reasons:
  • RegEx Blacklisted phrase (1.5): I'm stuck
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Pedro Silva

79234874

Date: 2024-11-28 17:42:01
Score: 1
Natty:
Report link

You are wrong, in a computer "Today is Monday" uses 14 bytes = 92 bits Hufman uses 49 bits, so its shorter. You have to check "how much it really cost" to the computer your code you cannot base it on the preset it seems to use only. But is true that in some cases will not be useful where there is NOT too many bits. Also it works better when you have 2^n amount of different posibilities. In such case it is better to use base 10 (because you have only 10 different characters) and then you will have a number of 10^14 where you need 47 bits. And that means hufman encoding is not always the best (that is why there are so many compression algorithms)

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

79234864

Date: 2024-11-28 17:37:59
Score: 1
Natty:
Report link
const array = [[[0], [1]], [[2], [3]], [[4], [5]]] 
const result = [];

function flattenArray(array) {
  for (let i = 0; i < array.length; i++) {
    if (typeof array[i] === "object") {
      flattenArray(array[i]);
    } else {
      result.push(array[i]);
    }
  }
}
flattenArray(array);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: roystan dsouza

79234861

Date: 2024-11-28 17:35:58
Score: 0.5
Natty:
Report link

Navigate to

~/Library/Group Containers/group.com.apple.UserNotifications/Library/UserNotifications/Remote/default

There delete everything inside. I didn't have to restart the computer but you might have to.

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

79234853

Date: 2024-11-28 17:31:57
Score: 3.5
Natty:
Report link

There's an OpenSource port of WebForms to .NET 8 here: github.com/webformsforcore/WebFormsForCore.

With this Library you can run existing WebForms projects directly in .NET 8.

Here's a Video Tutorial on how to convert the sample WebForms site to .NET 8.

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

79234849

Date: 2024-11-28 17:29:57
Score: 0.5
Natty:
Report link

Update for VS 2022:
To repair "Symbol loading disabled by Include/Exclude setting" go to Tools / Options / Debugging / Symbols and select Search for all module symbols unless excluded
It workd for me.

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

79234841

Date: 2024-11-28 17:27:56
Score: 3
Natty:
Report link

first of all thanks for everyone who tried to provide me with the solution.

but i realized that i was trying to save order data at client side. as a solution, i just found a json server hosting website. (btw if you need, i would definetly recommend npoint.io)

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

79234840

Date: 2024-11-28 17:26:56
Score: 2.5
Natty:
Report link

I had a similar problem

Android_1 <> Android_2

any iOS <> any iOS

Android_1 <> any iOS

But it's not working between any iOS <> Android_2.

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

79234835

Date: 2024-11-28 17:25:55
Score: 2
Natty:
Report link

Unfortunately LeastConnections is not enabled and Microsoft says there is no date as to whether this will ever be made available. At the moment another load balancer, such as F5 or Barracuda ... (status correct as of 28 Nov 2024)

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

79234832

Date: 2024-11-28 17:23:55
Score: 1
Natty:
Report link

Make sure you are using the correct versions of Python and pip. Check with these commands:

python --version
pip --version

You could also check and update pip to the latest version:

python -m pip install --upgrade pip
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user26979062

79234821

Date: 2024-11-28 17:21:54
Score: 1
Natty:
Report link

In my case:

Caused by: org.springframework.beans.factory.BeanCreationException:
 Error creating bean with name 'flywayInitializer' defined in class path resource
 [org/springframework/boot/autoconfigure/flyway/FlywayAutoConfiguration$FlywayConfiguration.class]:
 Unsupported Database: MySQL 8.4

All I had to do is replace in build.gradle the dependencies line:

    implementation 'org.flywaydb:flyway-core'

with:

    implementation 'org.flywaydb:flyway-mysql'

Courtesy: https://documentation.red-gate.com/flyway/flyway-cli-and-api/supported-databases/mysql

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

79234815

Date: 2024-11-28 17:20:54
Score: 1.5
Natty:
Report link

Update 2024:

The namespace to use is no longer Spatie\Analytics\Analytics. It is now Spatie\Analytics\AnalyticsFacade.

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

79234814

Date: 2024-11-28 17:19:54
Score: 0.5
Natty:
Report link

Figured out what the issue was. Screenshots folder was not found because it was never created during build. The reason for that was because in package.json the script was '"cypress:run": "cypress run".

I replaced it with "cypress:run": "npx cypress run", and it works just fine.

The replaced script let cypress create screenshots folder by default.

Here is the snippet from package.json

"scripts": {
"cypress:open": "cypress open",
"cypress:run": "npx cypress run", ---> This creates screenshot file by default
"test": "echo \"Error: no test specified\" && exit 1"

},

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

79234811

Date: 2024-11-28 17:18:53
Score: 0.5
Natty:
Report link

Kindly check, if below line is configured correctly under tomcat/conf/catalina.properties file. Make sure we dont have any empty shared.loader= keys present

shared.loader=${catalina.base}/shared/classes,${catalina.base}/shared/lib/*.jar
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Srikanth Josyula

79234797

Date: 2024-11-28 17:14:52
Score: 1
Natty:
Report link

A thousand thanks to @Dai from here as well!

UNIQUE INDEX / UNIQUE CONSTRAINT objects ensure uniqueness, not types.

So, the only distinguishing feature of a "UUID" column compared to a regular string column is that it is of the UNIQUE property, and that's it. I overthought it.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Dai
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: rozsazoltan

79234787

Date: 2024-11-28 17:10:51
Score: 1
Natty:
Report link

Find a walkaround to avoid those problems : In the firstlines of my code, I write on a dedicate cells the current date. Then I add a condition in the initial code :

If myCurrentWorkbook.Worksheets(mySheet).cells(1,1) = Date then Exit Sub

Works because the second time it opens, date were updated and so it stops the loop !!

Thanks everyone for the help.

Jerry

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user1833903

79234786

Date: 2024-11-28 17:10:51
Score: 3
Natty:
Report link
android:theme="@style/Theme.Material3.DayNight.NoActionBar"
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ayman Nasr

79234767

Date: 2024-11-28 17:05:50
Score: 3
Natty:
Report link

Only an a$$hole would force text to be unselectable. It is not your right, if you show it, it can be copied by screenshot, OCR, or manual typing. By making it unselectable you are only being a jerk

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

79234766

Date: 2024-11-28 17:04:50
Score: 0.5
Natty:
Report link

You can now set the Git config push.autoSetupRemote to true to get this behaviour by default! :)

git config --global --type bool push.autoSetupRemote true
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: froblesmartin

79234761

Date: 2024-11-28 17:03:49
Score: 2
Natty:
Report link

Its can sound crazy, but try rename the project folder without special characters. It worked to me.

Reasons:
  • Whitelisted phrase (-1): It worked
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bruno Aiolfi

79234756

Date: 2024-11-28 17:01:49
Score: 3
Natty:
Report link

You can configure the proxy for your front-end. which also allows you to use same-site Lax. although API call is proxied from your front-end but it makes safe.

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

79234749

Date: 2024-11-28 17:00:48
Score: 3
Natty:
Report link

I faced the same issue and got it resolved by adding US in the keyboard language. Refer following to change/add language. https://support.apple.com/en-in/guide/mac-help/mh26684/mac#:~:text=On%20your%20Mac%2C%20choose%20Apple,may%20need%20to%20scroll%20down.)&text=%2C%20select%20a%20language%20in%20the,right%20corner%20of%20the%20dialogue).

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

79234723

Date: 2024-11-28 16:51:46
Score: 1
Natty:
Report link

TCP port 0 is not a valid TCP port.

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

79234721

Date: 2024-11-28 16:50:46
Score: 1
Natty:
Report link

Modbus:

MQTT:

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

79234718

Date: 2024-11-28 16:49:46
Score: 1
Natty:
Report link

Solution that worked for me 1-> SSIS services was disable under manage extension so enabled it the problem still existed 2-> Right click on Project solution --> Resolve error this fixed the problem for me

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

79234712

Date: 2024-11-28 16:45:45
Score: 3.5
Natty:
Report link

It does not seem like that from here. You probably want to try again

enter image description here

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

79234700

Date: 2024-11-28 16:38:43
Score: 2
Natty:
Report link

The tooltip for line charts - the color is governed by pointBackgroundColor

I had the same problem, I was using backgroundColor for bar charts and everything was fine. I change the chart type to line - and the colors disappear! I googled it, found this post which did not work for me, solved it and thought I'd try to be helpful and post the correct answer.

Reasons:
  • Blacklisted phrase (1): did not work
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Matt

79234695

Date: 2024-11-28 16:36:42
Score: 1
Natty:
Report link

The issue you’re facing occurs because the Java extension in VS Code doesn't always enforce saving the file before running it, depending on your configuration. This is a logical gap, but you can resolve it by adjusting your settings or workflows without enabling auto-save globally. Here's how to address it:

--Open File > Preferences > Settings (or press Ctrl + ,).

--Search for "Save Before Run" in the settings search bar.

--Enable the setting java.debug.saveBeforeStart:

---Go to Extensions > Java Configuration.

---Find Debug: Save Before Start and ensure it’s set to true.

This forces the Java Debugger to save all files before launching.

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

79234693

Date: 2024-11-28 16:36:42
Score: 2
Natty:
Report link

You can use the following search: https://github.com/search?q=path%3A**%2FCNAME+example.com&type=code&ref=advsearch

This search finds all "CNAME" files that contain the specified domain. However, if the repository is private, it will not appear in the results.

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

79234690

Date: 2024-11-28 16:35:41
Score: 1.5
Natty:
Report link

By default, VS Code does not support direct communication between separate windows (workspaces). However, you can overcome this limitation by:

  1. Using extensions like Multi Command or Remote Development.
  2. Creating external scripts to handle synchronization.
  3. Developing or modifying a custom extension to suit your needs.
  4. If possible, switching to a multi-root workspace setup to simplify the configuration.
Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: rizky kurniawan

79234677

Date: 2024-11-28 16:32:40
Score: 2.5
Natty:
Report link

Update your pom.xml file to include the AspectJ dependency. Save the pom.xml file (press Ctrl+S).

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

79234676

Date: 2024-11-28 16:31:40
Score: 5.5
Natty:
Report link

A little question about the post by MBo, since the ellipse is rotated by theta with respect to the old coordinate, to rotate the line into the ellipse's local coordinate system, I think we need to rotate the line by -theta like sin(-theta)) and cos(-theta) in your formula, it is actually rotating the old coordinate system of line into the ellipse's coordinate, not rotating the ellipse or line. I do not know if this reasoning is correct, please share with me your ideas.

Reasons:
  • RegEx Blacklisted phrase (2.5): please share
  • RegEx Blacklisted phrase (1): I do not know if this reasoning is correct, please
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: qiang yu

79234674

Date: 2024-11-28 16:31:39
Score: 1
Natty:
Report link

As on Novemeber 2024

For the users who are facing this issue can follow below steps

1.Open Google Play Console and select the App you want to change.

2.Select Grow section from Side Navigation view.

3.Then select Store listing

4.Under listing tab, you will see a header Default store listing

5.Click on Right arrow mark seen on the end of the row which will take you to the actual Default store listing page.

6.You will see **App name ** field and you can enter new app name.

All the best, may your app get more number of users

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

79234671

Date: 2024-11-28 16:30:39
Score: 0.5
Natty:
Report link

No its not as James writes in the comment above

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

79234670

Date: 2024-11-28 16:30:39
Score: 3
Natty:
Report link

I think his syntax is correct for ["http://10.0.1.10:9200"]. The 's' in https is always generally missing for localhost configuration

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

79234662

Date: 2024-11-28 16:26:38
Score: 0.5
Natty:
Report link

No there is no such feature, and its not planned either.

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

79234654

Date: 2024-11-28 16:23:37
Score: 0.5
Natty:
Report link

In your code, x is always a Long

When you run (x / y), it tries to invoke x as a function, but you can't cast a Long to a function.

What you are trying to do is (/ x y)

About sum, as you didn't share the implementation, I can only guess: probably (sum vec_foo) works.

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

79234653

Date: 2024-11-28 16:23:37
Score: 0.5
Natty:
Report link

React can not Render Object! Sounds Confusing, Right?

Long Story Short: (TL; DR) Browsers primarily understand HTML, CSS, and JavaScript. When you pass something (except object) into props, JSX automatically converts it into a renderable format and updates the virtual DOM (because it's faster than direct DOM updates). But when you try to pass a raw object directly into JSX, React gets confused and can’t interpret it properly — it's like double objects for React.

So, what is the solution? ➡️ Convert the object into a string using JSON.stringify(). OR ➡️ Treat the object as a nested object by accessing its properties.

Example:

const Person = {myName: "Emran Khan"}
return (
 <main>
     {JSON.stringify(Person)}
     <br />
     {Person.myName}
 </main>
)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Emran Khan

79234650

Date: 2024-11-28 16:23:37
Score: 2
Natty:
Report link

It looks like you are ploting full year and beacause your are unable to see the shape of irradianton profiles.

Use the zoom tool or reduce the data range, example for one day you must see somethin similar to this, (is another location)

DNI-GHI-POA-DHI

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

79234645

Date: 2024-11-28 16:21:37
Score: 3.5
Natty:
Report link

I recommend using tsc-alias. See the full example in this thread.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: usersina

79234640

Date: 2024-11-28 16:20:36
Score: 2.5
Natty:
Report link

Apparently you have to drag a source code file from the solution explorer to a diagram. If the file contains multiple classes, all will be added.

If I only want to add one class, I have to remove all others manually from the diagram after adding the whole file.

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

79234636

Date: 2024-11-28 16:19:36
Score: 1.5
Natty:
Report link

Check that you are opening Runner.xcworkspace instead of Runner.xcodeproj in Xcode. I had that error that I mistakenly opened the wrong file in Xcode.

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

79234634

Date: 2024-11-28 16:18:36
Score: 3.5
Natty:
Report link

no this moment is bug. use another library.

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

79234626

Date: 2024-11-28 16:17:36
Score: 2
Natty:
Report link

Check that you are opening Runner.xcworkspace instead of Runner.xcodeproj in Xcode

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

79234620

Date: 2024-11-28 16:16:35
Score: 0.5
Natty:
Report link

There is a way to have more than 9999 lines in Command Prompt or Windows PowerShell console. Open Command Prompt or PowerShell and enter:

mode con:cols=120 lines=32766

For some reason, number of lines cannot be set to more than 32766. This is verified to work on Windows Server 2022 and Windows 10.

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

79234595

Date: 2024-11-28 16:07:33
Score: 1.5
Natty:
Report link

There is a good article about Clean Architecture, I think it explains this question also.

" The outermost layer is the lowest level of the software and as we move in deeper, the level will be higher. "

The Clean Architecture — Beginner’s Guide

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

79234574

Date: 2024-11-28 15:58:31
Score: 1
Natty:
Report link

services.AddCors(options =>

{

    options.AddPolicy("AllowBlazorApp", builder =>

    {

        builder.WithOrigins("https://example.com") // the origin of your Blazor app

               .AllowAnyMethod()

               .AllowAnyHeader();

    });

});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Venura Siriwardhana

79234566

Date: 2024-11-28 15:56:31
Score: 0.5
Natty:
Report link

I can't confirm without a reproducible example but I'm fairly sure the problem is that status is considered a factor in your dataframe. You can put

dfit <- survfit2(Surv(time, as.numeric(status)) ~ intervention, data = Drugs_discon)
summary(dfit)
ggsurvfit(dfit)

This should produce the required plot

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

79234556

Date: 2024-11-28 15:52:30
Score: 1
Natty:
Report link
let df = df! (
"names" => [
            ["Anne", "Averill", "Adams"].iter().collect::<Series>(),
            ["Brandon", "Brooke", "Borden", "Branson"].iter().collect(),
            ["Camila", "Campbell"].iter().collect(),
            ["Dennis", "Doyle"].iter().collect(),
],

)?;

I get: error[E0277]: a value of type polars::prelude::Series cannot be built from an iterator over elements of type &std::string::String

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

79234553

Date: 2024-11-28 15:52:30
Score: 3
Natty:
Report link

As of curl 8.10 -vvv is a thing

https://curl.se/docs/manpage.html#-v "Since curl 8.10, mentioning this option several times in the same argument increases the level of the trace output."

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

79234551

Date: 2024-11-28 15:51:30
Score: 1
Natty:
Report link

You can pass it with tpl.ExecuteTemplate(ctx, "index.html", pd) but browser is going to show this as plain text, you have to specify it is html by using
ctx.Response.Header.Set("Content-Type", "text/html; charset=utf-8")

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

79234547

Date: 2024-11-28 15:49:29
Score: 0.5
Natty:
Report link

The following filter expression in a sweep job or sweep policy would match any document that was filed in the folder with Id equal to {0F1E2D3C-4B5A-6978-8796-A5B4C3D2E1F0}.

Object({0F1E2D3C-4B5A-6978-8796-A5B4C3D2E1F0}) IN FoldersFiledIn

Link Relational Queries

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

79234544

Date: 2024-11-28 15:48:29
Score: 0.5
Natty:
Report link

You can’t. Partially inferring generic arguments is not supported in C#.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Jonas Høgh

79234540

Date: 2024-11-28 15:48:29
Score: 1.5
Natty:
Report link

Instead of explicitly going for above "pandas>=2.2.3" you can mentioned as below and system will adjust based on other dependency.

pandas~=2.0.0

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

79234528

Date: 2024-11-28 15:43:27
Score: 0.5
Natty:
Report link

Try something like this:

fig.update_layout(
    height=600,
    width=1200,
    title="MyTitle",
    xaxis1=dict(rangeslider=dict(visible=False)),
    xaxis2=dict(rangeslider=dict(visible=False)),
)

If you have several subplots, you may need several instances of xaxisNNN

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

79234519

Date: 2024-11-28 15:39:26
Score: 4
Natty:
Report link

Resolved, it wasn't problem with notifications at all.

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

79234518

Date: 2024-11-28 15:38:26
Score: 2
Natty:
Report link

Well I found what I needed in the documentation.

https://graphdb.ontotext.com/documentation/10.8/access-control.html#basic-authentication

It looks like the REST API methods support Basic authentication as well as GDB, so I could just log in the same way that I do in other systems. I still don't know what I would do if I was forced to use GDB authentication, but I'm happy that it works using methods that I know.

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ian Piper

79234517

Date: 2024-11-28 15:38:25
Score: 6 🚩
Natty: 5.5
Report link

strong textI lost my phone please let me know what you think I Miss So Much my way home now and will be there in about

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know what you
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28534164

79234487

Date: 2024-11-28 15:30:22
Score: 1.5
Natty:
Report link

For me the solution was to install build essential. sudo apt install build-essential It includes (or is?) gcc that is the missing dependency. I would recommend mentioning it in rust installation page.

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

79234482

Date: 2024-11-28 15:28:22
Score: 1
Natty:
Report link

section .data num1 db 5
num2 db 3
result dw 0

section .text global _start

_start: mov al, [num1]
mov bl, [num2]
mul bl
mov [result], ax

mov eax, 60       
xor edi, edi      
syscall
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ma'rufjon Istamov

79234477

Date: 2024-11-28 15:26:21
Score: 2
Natty:
Report link

I disabled the telemetry by settings nexus.analytics.enabled to false

sonatype-work\nexus3\etc\nexus.properties

nexus.analytics.enabled=false

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

79234476

Date: 2024-11-28 15:25:20
Score: 7 🚩
Natty:
Report link

I have the same issue, I need to redirect to the login page every time the user sends a request to the /oauth2/authorize.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): I have the same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vitor Coimbra

79234473

Date: 2024-11-28 15:24:20
Score: 2.5
Natty:
Report link

My problem was that autoprefixer was not installed in my nextjs project. After installing it, suggestions started to work both in compile and not compiled versions.

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

79234470

Date: 2024-11-28 15:23:20
Score: 1.5
Natty:
Report link

This also works for devcontainer.json as long as you put the "http.proxyStrictSSL": false inside customizations -> vscode -> settings

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

79234463

Date: 2024-11-28 15:20:19
Score: 3
Natty:
Report link

You have probably inadvertently changed from Insert to Overwrite mode in the Delphi editor.

There is a selection menu for it near the bottom left corner of the editor:

enter image description here

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

79234462

Date: 2024-11-28 15:20:19
Score: 2
Natty:
Report link

Use option('quoteAll', 'true').

Option Guide:

https://spark.apache.org/docs/latest/sql-data-sources-csv.html#data-source-option

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

79234459

Date: 2024-11-28 15:19:19
Score: 0.5
Natty:
Report link

When you use useState, don't assume that the state will be updated immediately. React batches state updates and triggers a re-render after the component has been rendered. The updated state will be visible only after the component re-renders, which typically happens after the function inside useEffect .

In other words, state updates are asynchronous, and the new state value won't be immediately available right after calling setState. You need to rely on the component's next render cycle to access the updated state.

check this one setstate-in-reactjs-async-instead-of-sync

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

79234445

Date: 2024-11-28 15:16:18
Score: 5.5
Natty:
Report link

I have the same problem: Chrome Selenium show file downloaded but I can't find it or click the file in download panel, works with firefox, so I use that instead. Firefox is more w3c compliant.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • High reputation (-1):
Posted by: MortenB

79234443

Date: 2024-11-28 15:16:17
Score: 5.5
Natty: 4.5
Report link

I struggle with the same issue with a flask app. Applying the above to the main app.py of flask doesn't help. Any idea?

Reasons:
  • Blacklisted phrase (1): Any idea?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Fred

79234440

Date: 2024-11-28 15:16:17
Score: 11 🚩
Natty: 5.5
Report link

I am having exactly the same problem. Do you have any updates yet?

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have any
  • RegEx Blacklisted phrase (0.5): any updates
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having exactly the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: philadi

79234434

Date: 2024-11-28 15:15:16
Score: 2.5
Natty:
Report link

Long story short, CACHING was the solution. Our system is designed such way, that read function always read only 32kb, and then you can imagine the amount of http requests... At first I have tried to download a 1gb locally and then whenever read is called, get a chunk of that 1gb, afterwards I reduced it all way to 4mb, which showed great results. Speed up was insane.

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

79234432

Date: 2024-11-28 15:15:16
Score: 3.5
Natty:
Report link

I had similar problem yet it was caused by '~' in the path not being expanded correctly. I needed to use $HOME instead within the bash script. Then all good.

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

79234428

Date: 2024-11-28 15:14:16
Score: 5
Natty: 4
Report link

Quando você for salvar o modelo coloque o .keras ao invés do .h5.

No seu caso:

model.save('model.h5')

loaded_model = keras.saving.load_model('model.h5')

Modifique para:

model.save('model.keras')

loaded_model = keras.saving.load_model('model.keras')

Reasons:
  • Blacklisted phrase (3): você
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Denis Honório

79234425

Date: 2024-11-28 15:13:15
Score: 2.5
Natty:
Report link

I wrote this article explaining how to handle permissions, roles and users programmatically in Superset, I hope it helps

Reasons:
  • Blacklisted phrase (1): this article
  • Whitelisted phrase (-1): hope it helps
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Reda Arté Kejji

79234422

Date: 2024-11-28 15:12:15
Score: 2.5
Natty:
Report link

Try switching your network, thats what i did and it worked.

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

79234421

Date: 2024-11-28 15:12:15
Score: 1
Natty:
Report link

Summary:

Although there may be conceptual differences between the two approaches http:// vs ws://, apparently, both result in similar outcomes.

Details:

Refer to the "environ" variable that is received as an argument by the "connect" handler (quoted from documentation: "the connect handler receives environ as an argument, with the request information in standard WSGI format, including HTTP headers.").

Print the value of "environ" when using ws:// vs http://. You will see that this variable stores a similar value in both cases.

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

79234416

Date: 2024-11-28 15:11:14
Score: 1.5
Natty:
Report link

The Brel engine will support this out of the box in its next release.

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

79234412

Date: 2024-11-28 15:10:14
Score: 0.5
Natty:
Report link

For anyone with the same problem as me, what solved it was to do it the other way around. Instead of modifying Express.User to extend my custom IUser interface, I defined IUser as an extension of Express.User:

// user.interface.ts
interface IUser extends Express.User {
  _id: string;
  ...
}

I then used type assertion when needed:

// index.ts
const user = req.user as IUser;

Is not elegant, and I still think there must be a way to do it the other way around so we don't have to do type assertion every time, but at least it's working now.

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

79234404

Date: 2024-11-28 15:09:14
Score: 1.5
Natty:
Report link

In my case, using android:radius="15dp" didn't work to create rounded corners.

However, app:cardCornerRadius="100dp" worked perfectly for achieving rounded or circular corners.

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

79234403

Date: 2024-11-28 15:09:14
Score: 0.5
Natty:
Report link

this generally happens after updating the android studio and/or updating java on your system , i have updated the android studio and java as well , studio to

Android Studio Ladybug | 2024.2.1 Patch 2 Build #AI-242.23339.11.2421.12550806, built on October 24, 2024 Runtime version: 21.0.3+-12282718-b509.11 amd64 VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o. Toolkit: sun.awt.windows.WToolkit Windows 11.0

and java to jdk-23.

and got this error while building.

solution

change the jdk use by your flutter by executing

flutter config --jdk-dir 'path-to-your-jdk-of-choice'

the 'path to your choice is the path to the folder where jdk is located normally "C:\Program Files\Java\jdk-19" like this , in my case i needed to use gradle dist distributionUrl=https://services.gradle.org/distributions/gradle-7.6.3-all.zip

which is compatible with jdk 19, you can find the compatible vesrion and the matrix here

Reasons:
  • Blacklisted phrase (0.5): i need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: siddhant saraf

79234390

Date: 2024-11-28 15:05:13
Score: 2
Natty:
Report link

Other steps could include:

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

79234388

Date: 2024-11-28 15:05:12
Score: 6.5 🚩
Natty: 5
Report link

is it possible to grab like this also element that "text": "{json key: value pairs}" how to grab the value from the string json element then?

Reasons:
  • Blacklisted phrase (1): is it possible to
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): is it
  • Low reputation (1):
Posted by: Nela Kolundzija

79234386

Date: 2024-11-28 15:04:11
Score: 1.5
Natty:
Report link

TLDR: You can use Strapi as proxy server and pass body using a custom endpoint.

Check out our step-by-step tutorial demonstrating a clean and practical integration approach. Full guide available here: https://uninterrupted.tech/blog/passing-body-data-in-strapi-webhooks-triggering-git-hub-workflows-example/

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Michał Miler

79234384

Date: 2024-11-28 15:04:11
Score: 2.5
Natty:
Report link

This error was generated cause Big Query sentence: PARSE_TIME('%I:%M:%S %p', hora_gest) don't understand "9:31:00 a.m." but the format valid to conversion is "9:31:00 am". Thus, first I deleted with points with subtrings "a.m." and "p.m."

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: José Alcántara

79234375

Date: 2024-11-28 15:02:11
Score: 2
Natty:
Report link

You cannot use it because you did not allocated/assign the additional space any partition or logical volume within CentOS. You need to do that! So, you have two pathways to decide

  1. Assign logical volume to extra space added
  2. Expand the existing disk by merging it with additional storage.

This link might help for point 2.

Reasons:
  • Blacklisted phrase (1): This link
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Naveed Ahmed

79234371

Date: 2024-11-28 15:00:10
Score: 2
Natty:
Report link

Access the environment object in the parent view and pass it to the subview where the ViewModel is initialized. The parent view should handle injecting the environment object into the subview, ensuring the ViewModel has what it needs during initialization.

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