79447520

Date: 2025-02-18 08:12:41
Score: 3
Natty:
Report link

You can delete telemetry data by time period. Go to Devices -> select device -> Latest telemerty tab -> select some telemetry that you want to delete and press on the trash icon -> Select delete all data for a time period See images enter image description here

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

79447502

Date: 2025-02-18 08:05:39
Score: 1.5
Natty:
Report link

To highlight the item in the collectionview when the mouse is hovering it, you can just use the VisualStateManager PointOver state.

<VisualState Name="PointerOver">
   <VisualState.Setters>
       <Setter Property="BackgroundColor" Value="Red" />
   </VisualState.Setters>
</VisualState>

Source: https://learn.microsoft.com/en-us/dotnet/maui/user-interface/visual-states?view=net-maui-9.0

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

79447493

Date: 2025-02-18 07:59:38
Score: 3
Natty:
Report link

Syntax to add computed column in snowflake table:

ALTER TABLE "TABLE NAME" AS "COLUMN Name" "Datatype" AS "EXPRESSION"

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

79447492

Date: 2025-02-18 07:59:38
Score: 2.5
Natty:
Report link

maybe you're referring to front-end/javascript npm run dev?, there is no composer command composer run dev only NPM have that at package.json.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: RJ Estavillo

79447488

Date: 2025-02-18 07:57:37
Score: 1
Natty:
Report link

In my case, the solution was that I had to install the globals package:

npm install --save-dev @jest/globals --legacy-peer-deps

I think I read somewhere that the @vue/test-utils package requires the globals package.

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

79447481

Date: 2025-02-18 07:53:36
Score: 3.5
Natty:
Report link

<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager><asp:UpdatePanel ID="UpdatePanel...

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

79447473

Date: 2025-02-18 07:50:36
Score: 2
Natty:
Report link

No, an attacker cannot simply modify data and send it along with the hash for the modified data because a fundamental property of cryptographic hash functions is that even a tiny change in the original data will result in a significantly different hash value, making it readily detectable if the recipient recalculates the hash on the received data and compares it to the original hash

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

79447467

Date: 2025-02-18 07:49:35
Score: 0.5
Natty:
Report link

Create font folder in res folder and copy a font file, for example my_font.ttf. Then use without file extention:

android:fontFamily="@font/my_font"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Style-7

79447449

Date: 2025-02-18 07:42:34
Score: 1
Natty:
Report link

For anyone else wondering I have found an answer, it's not controlled by Angular, it's jQuery and this line of code in onSubmit function:

return ($event?.target as HTMLFormElement | null)?.method === 'dialog';

reference: event.preventDefault() vs. return false

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

79447438

Date: 2025-02-18 07:35:32
Score: 1
Natty:
Report link

There are a lot of browser plugins for web scraping, like webscraping.io among others. You could even save/download the content of a page and make offline extraction of data.

It is hard to make a generic solution because of restrictions and terms & conditions of each website. If a page is blocking your scraper, any work around will be blocked eventually.

Recently, I was collecting my own data in LinkedIn to reuse the information in offline resumes and I got a warning from their system to not use web scraper plugins in my browser.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: George H. Silva

79447434

Date: 2025-02-18 07:33:32
Score: 0.5
Natty:
Report link

Numbers are stored in binary, as dyadic fractions. Decimal fractions, in general, are not representable as binary fractions. When parsing the numbers in the code, from text to binary, rounding is applied. It may go in different directions for the two .9 constants, so that the rounding error is not cancelled but emphasized in the difference.

Look at any introduction to floating point numbers, the "Related" side bar has some famous ones, like Is floating-point math broken?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Lutz Lehmann

79447432

Date: 2025-02-18 07:33:32
Score: 2.5
Natty:
Report link

1.Goto this path C:\ProgramData\Microsoft\Crypto\RSA 2.Riht click on MachineKeys,Goto properties and select Security 3. In Security Add & give all the rights to Every one, IIS_IURS, Administrators it is worked in my case

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

79447431

Date: 2025-02-18 07:33:32
Score: 3.5
Natty:
Report link

Please check Run/Build Configurations to see if you set any run params there. if yes?

remove --web-renderer, because if youre using the flutter latest its not gonna work with any '--web-renderer' because now flutter team made these changes :

Make --web-renderer=canvaskit the new default (the current default is auto).

Remove --web-renderer=auto.

and you can simply build using

flutter build web

if you face any more problem please let me know, i would be happy to help you out.

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Hussnain_28

79447426

Date: 2025-02-18 07:29:31
Score: 3
Natty:
Report link

In MSTest 3.8.0, there is a Retry attribute, that can be used for this purpose. See https://learn.microsoft.com/en-us/dotnet/core/testing/unit-testing-mstest-writing-tests-attributes

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

79447421

Date: 2025-02-18 07:26:30
Score: 2.5
Natty:
Report link

As of MSTest 3.8.0, there is a Retry attribute, which can be used to rerun a test upon failure. See https://learn.microsoft.com/en-us/dotnet/core/testing/unit-testing-mstest-writing-tests-attributes .

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

79447420

Date: 2025-02-18 07:25:30
Score: 3
Natty:
Report link

If the psql server is run via docker, make sure docker and your container is running.

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

79447417

Date: 2025-02-18 07:24:30
Score: 1
Natty:
Report link

Add this css in your active class for css arrow

.up-arrow {
    position: absolute;
    transform: rotate(-45deg);
    display: inline-block;
    width: 20px;
    height: 20px;
    z-index: 10;
    border-top: 1px solid #c1c1c1;
    border-right: 1px solid #c1c1c1;
    background-position-x: center;
    background: #eeeeee;
    margin-top: 7px;
    margin-left: 5px;
}

Below image for menu item with arrow

enter image description here

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

79447410

Date: 2025-02-18 07:21:29
Score: 1.5
Natty:
Report link

BIOROLES is fastest growing Brand in the field of Entrance Automation, Access Control Systems, Time Attendance System, Smart Locks and allied products. Our product comprises Boom Barriers, UHF Controller, Metal Detectors, Barrier Gates, Guard Patrol System, Finger & Face Attendance System, Access Control System, Smart Door Locks and widest range of Access Control Accessories in India. We ensure all our products meet the international standards and we adopt strict quality control approach while manufacturing & test functioning & compatibility. We have gained trust of our clients due to our Range of Quality Products and Excellent After Sale Services

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ARUN PATHAK

79447405

Date: 2025-02-18 07:20:29
Score: 0.5
Natty:
Report link
    private void removeAnimal_Click(object sender, RoutedEventArgs e)
    {
            string consulta = "DELETE from AnimalZoo where ZooId = @ZooId AND AnimalId = @AnimalId";
            SqlCommand sqlCommand = new SqlCommand(consulta, sqlConnection);

            sqlConnection.Open();
            sqlCommand.Parameters.AddWithValue("@ZooId", listZoos.SelectedValue);
            sqlCommand.Parameters.AddWithValue("@AnimalId", listAssociatedAnimals.SelectedValue);
            sqlCommand.ExecuteScalar();
       
            sqlConnection.Close();
            showAssociatedAnimals();
    }
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29690790

79447400

Date: 2025-02-18 07:19:28
Score: 1.5
Natty:
Report link

To exclude a specific tag in Logcat, simply use the minus sign (-) followed by "tag:" and your tag name in the Logcat search bar. Ex-

-tag:YourTagToExclude
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dhiraj Kumar

79447399

Date: 2025-02-18 07:19:28
Score: 1
Natty:
Report link

When attempting to run npx create-nx-workspace@latest my-workspace, I encountered the following error:

npm ERR! code ECONNREFUSED
npm ERR! syscall connect
npm ERR! errno ECONNREFUSED
npm ERR! FetchError: request to https://registry.npmjs.org/create-nx-workspace failed, reason: connect ECONNREFUSED 127.0.0.1:8080

This error indicates that npm is trying to connect through a proxy at 127.0.0.1:8080, which is refusing the connection. To resolve this issue, I followed these steps:

Remove npm proxy settings:

I cleared the proxy configurations by running:

npm config delete proxy
npm config delete https-proxy

These commands remove any existing proxy settings from npm's configuration, allowing direct internet access. STACKOVERFLOW.COM Install create-nx-workspace globally:

Instead of using npx, I installed the package globally:

npm install -g create-nx-workspace@latest

After installation, I created the workspace with:

create-nx-workspace my-workspace

This approach bypasses potential issues with npx fetching the package. NX.DEV By following these steps, I successfully created my Nx workspace without encountering the ECONNREFUSED error.

Note: If you're operating behind a corporate proxy or have specific network configurations, ensure that your npm settings align with your network requirements. You can configure npm to use a proxy with:

npm config set proxy http://proxy.company.com:8080
npm config set https-proxy http://proxy.company.com:8080

Replace http://proxy.company.com:8080 with your organization's proxy URL and port.

Reasons:
  • Blacklisted phrase (1): STACKOVERFLOW
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Maryam Rajabi

79447391

Date: 2025-02-18 07:13:27
Score: 0.5
Natty:
Report link

In my case, I reverted to the postcss install method and removed the tailwind vite plugin.

https://v3.tailwindcss.com/docs/installation/using-postcss

It was because the vite plugin method expected a css config not a js config

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: unloco

79447387

Date: 2025-02-18 07:11:26
Score: 5.5
Natty:
Report link

check this video on How to fix vercel/path0/node_modules/.bin/vite: Permission denied "npm run build" exited with 1

[https://www.youtube.com/watch?v=ZjbNT02xE-Q][2]t/pBk3vI8f.png

[1]: [2]: https://www.youtube.com/watch?v=ZjbNT02xE-Q

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): check this video
  • Blacklisted phrase (1): this video
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Samwel Monda

79447380

Date: 2025-02-18 07:07:25
Score: 4.5
Natty:
Report link

Here you can try the steps to install

https://github.com/smvinay/Flutter-and-Android-SDK-Setup-on-Ubuntu

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: S M Vinay

79447376

Date: 2025-02-18 07:05:24
Score: 3
Natty:
Report link

Apperently the ports in Dockerfile, docker-compose.yml and launchSettings.json where not set correctly, it gave the volume sharing error because the port I was trying to use was taken.

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

79447357

Date: 2025-02-18 06:57:22
Score: 0.5
Natty:
Report link

When curl isn't recognized in your current environment (e.g., due to path issues), using the full file path to the curl executable is a valid workaround

/curl.exe --cacert ca.crt --key client.key --cert client.crt "https://myurl"

this worked for me ! :)

Reasons:
  • Whitelisted phrase (-1): this worked for me
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: S RESHMI

79447355

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

you can request for a faster review from apple

  1. Go to Apple's contact page. https://developer.apple.com/contact/topic/select
  2. Select App Review.
  3. Choose Expedited App Review Request.
  4. You'll then have the option to request expedited review from Apple.
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: keshav

79447350

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

In a Flutter layout with a Row and Column, use the property CrossAxisAlignment.start in both widgets to align all the text at the same height. Example:

dart Copy Edit Row( crossAxisAlignment: CrossAxisAlignment.start, children: [ Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text('Item 1'), Text('Item 2'), ], ), Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text('Description 1'), Text('Description 2'), ], ), ], )

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

79447347

Date: 2025-02-18 06:54:22
Score: 1
Natty:
Report link

Assuming you're using cpptools, I think it just doesn't have this feature right now. I don't see an existing feature-request with a quick search, so I'd suggest that you try raising one.

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

79447344

Date: 2025-02-18 06:52:21
Score: 0.5
Natty:
Report link

You can wrap each of your FormChecklistCheckbox with Expanded or Flexible.

The result of this, I tested on a small screen device with large font rendering enabled, is bottom overflow somewhere, which may make widgets overlapping over one other.

overflow_pic

To overcome this, I also wrapped the Text and Checkbox widgets used within the FormBuilderField widget with Expanded and the result looked like:

text_bottom_clipped_pic

Here, for long text, the bottom appears clipped.

I then also tried wrapping the same Text filed that I previously wrapped with Expanded with FittedBox. Now the text fit, but since we're using Flexible/Expanded and FittedBox, the text appear large somewhere and somewhere they are small. You can try and check for yourself and choose whichever you prefer or just ignore.

after_fittedbox_pic

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

79447330

Date: 2025-02-18 06:47:20
Score: 0.5
Natty:
Report link

I realize this is an old question.(and even older bug)

The first line in @jcharaoui answer should read "doesn't work properly"

Setting the terminal type using TERM= does not work for me. For the record, the bulk of my terminal usage these days is using xterm.js.

After much testing, my semi-educated assumption is this: It seems whiptail still reserves button space when using infobox even though no buttons are shown and no additional space is allocated. Then when whiptail tries to display the text, it sees that the space is reserved for the buttons and won't render text in that reserved space. Compare the height of a rendered msgbox vs infobox with the same text. The difference amounts to 2 lines. The same is observed when displaying a long paragraph. The last 2 lines are cut off. When they coded infobox, they reduced the height of the dialog by the 2 lines of button space but left the actual button space and took the space where the text goes.

My workaround is to simply make the infobox taller. If I'm using a heredoc or a multi-line string to create the message, I add 2 newlines to the end. If it's a simple message, I manually use n+6 as the height, where n is the number of lines of text and 6 is the number of reserved lines in a basic whiptail dialog, 2 top and 4 bottom(2 are for the buttons). Yes, 6 reserved lines does seem to clash with a 5 line tall default infobox. So, for 1 line of text, the height would be 7. With that said, setting height to 0 to make it dynamic like the OP example shows causes it to not render the text, which doesn't happen with dialogs that have buttons.

# this works
whiptail --infobox "Message" 7 0

# this doesn't
whiptail --infobox "Message" 0 0

I have filed a bug report with this information. Considering how long this bug has been actively dismissed and ignored, I don't expect the newt team to even look at it. I really hope they do though. This is just one imperfect human's postion on the matter, of course.

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

79447314

Date: 2025-02-18 06:38:18
Score: 2.5
Natty:
Report link

Another way that worked:

echo ${DOCKERHUB_PASSWORD} | docker login -u "$DOCKERHUB_USERNAME" --password-stdin

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

79447309

Date: 2025-02-18 06:35:17
Score: 4
Natty: 5
Report link

We have an application which server side is AIX and we download and install the application on Windows VM. When I migrate the application on the server side, and try to start the application on windows, the application update gets stuck and the error says this ERROR: org.eclipse.equinox.p2.artifact.repository code=0 Public key not found for 8074478291308066379.

How can I deal with this in this situation?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Amit Patil

79447304

Date: 2025-02-18 06:31:16
Score: 1
Natty:
Report link

From this question

The field names are available here. @SingleNegationElimination suggested making one, but it already exists:

SELECT name FROM PRAGMA_TABLE_INFO('your_table');
cid | name | type |...

Check if a certain column exists by querying:

SELECT 1 FROM PRAGMA_TABLE_INFO('your_table') WHERE name='column1';

So one could pull this into a list and verify each field is in the list. This seems bulletproof for preventing sql injections.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @SingleNegationElimination
  • Low reputation (0.5):
Posted by: David Lotts

79447296

Date: 2025-02-18 06:25:15
Score: 2
Natty:
Report link

Is the condition (f.water_utility*1.0 +) = facility_weighted correct ?

This might be the reason of query returned no rows.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is the
  • Low reputation (0.5):
Posted by: Jay Makhija

79447288

Date: 2025-02-18 06:21:14
Score: 1.5
Natty:
Report link

Someone who still struggles in 2025 here, no AI tools comes up with this answer, so hooray for Stackoverflow! :)

What worked directly was to create a new placeholder subscription (This really needs to be in your doc, Google, no shame admitting this).

Tried, but didn't work (at least directly):

Reasons:
  • Blacklisted phrase (1): Stackoverflow
  • No code block (0.5):
Posted by: Samuel Adam

79447287

Date: 2025-02-18 06:20:13
Score: 6 🚩
Natty: 4.5
Report link

Is it solved? I've encountered the same problem

Reasons:
  • RegEx Blacklisted phrase (1.5): solved?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is it solve
  • Low reputation (1):
Posted by: zhihua chen

79447279

Date: 2025-02-18 06:17:11
Score: 8.5 🚩
Natty:
Report link

Has anyone been able to solve this problem of LinkedIn 999 Non-standard. I am also facing the same problem.

Reasons:
  • RegEx Blacklisted phrase (3): Has anyone been
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rewriter Tools

79447278

Date: 2025-02-18 06:16:10
Score: 2
Natty:
Report link

I found an interesting hack to this by mistake. Just copy the column and paste it in a column in google sheet. I had opened an excel file from my drive using google sheet to work on it for this and it worked for both. SO i have been able to finally copy a whole column that that a formula which looked like =HYPERLINK(B2,TRIM(A2))

best kausik

Reasons:
  • Whitelisted phrase (-1): it worked
  • Contains signature (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: kausik

79447277

Date: 2025-02-18 06:16:10
Score: 2.5
Natty:
Report link

xsi:schemaLocation="http://www.hazelcast.com/schema/config
https://hazelcast.com/schema/config/hazelcast-config-5.3.xsd"

Use the Schema-URL.The latest version is 5.3 (or higher), as Hazelcast 3.x versions are outdated.

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

79447274

Date: 2025-02-18 06:15:10
Score: 3.5
Natty:
Report link

Donot use Content-Type, let browser decide correct Content Type

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

79447266

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

use ->change() method

$table->enum('type', ['mail', 'logo', 'theme'])->change();
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Saptarshi Dey

79447261

Date: 2025-02-18 06:04:06
Score: 7.5 🚩
Natty: 5.5
Report link

are you fixed this problem? and how ?

Reasons:
  • RegEx Blacklisted phrase (1.5): fixed this problem?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: يوسف محمود

79447260

Date: 2025-02-18 06:02:06
Score: 2.5
Natty:
Report link

This model is acceptable and looks good. Here, slave would not recognise the Master (M1/M2) as there is a Gateway inbetween. But, it should not matter as the response goes to apprpriate master.

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

79447256

Date: 2025-02-18 06:00:05
Score: 2.5
Natty:
Report link

I am getting this every time I run the After Syncing files this is the first statement which will show up but it is not at all hindering the app's flow

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

79447254

Date: 2025-02-18 05:59:05
Score: 1
Natty:
Report link

Likely Tailwind does not generate the bg-gray-900/80 and bg-gray-900/50 utilities, because they do not occur in any of the files scanned by tailwind.

In tailwind.config.js, './node_modules/flowbite/**/*.js' should cause tailwindcss to process all js files in the Flowbite module. If your tailwind.config.js is not in the app root, you need to adjust the relative path to match.

In my own app, tailwind.config.js resides in config/, so mine looks like this: '../node_modules/flowbite/**/*.js' - note the .. at the beginning.

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

79447244

Date: 2025-02-18 05:54:04
Score: 0.5
Natty:
Report link

It sounds like you're dealing with a common issue when working with SSIS and Excel files, especially when there's a mix of 32-bit and 64-bit components. Let me break this down for you:

  1. Since you have Office 365 32-bit installed on your dev machine, you’ll need the 32-bit version of the Microsoft Access Database Engine. This is because SSIS needs to match the bitness of the Office installation to interact with Excel files properly.
  2. Installing the 32-bit Access Database Engine should resolve the error you're seeing during column mapping in Visual Studio.
  3. On the database server where the SSIS package will run, if the Office installation is 64-bit, you’ll need the 64-bit version of the Microsoft Access Database Engine. This ensures compatibility when the package is executed via SQL Server Agent.
  4. If the server has a 64-bit Office installation, the package should run in 64-bit mode without issues.
  5. Dev Machine: Install the 32-bit Access Database Engine to match your 32-bit Office installation.
  6. Database Server: Install the 64-bit Access Database Engine if the the server has a 64-bit Office installation.
  7. Package Execution: Ensure the Run64BitRuntime setting is correctly configured for development and deployment. On the server, it should be set to True if running in 64-bit mode.
  8. If you’re developing in Visual Studio 2022 (64-bit) but need to debug in 32-bit mode, you might need to adjust your project settings or use a 32-bit version of Visual Studio for debugging purposes.
  9. Double-check the bitness of the Access Database Engine installed on both the dev machine and the server to avoid mismatches.
Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Abu Rahat Sabir

79447238

Date: 2025-02-18 05:49:03
Score: 3.5
Natty:
Report link

Set the jvm to the same as your sdk version

Set the sdk version in your project

Your sdk and jvm tool chain version should be the same. I got the error when I was trying to create a kotlin multiplatform project

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

79447234

Date: 2025-02-18 05:46:02
Score: 11.5
Natty: 8
Report link

@tashoyan HI!

After some time, how did you solve this problem?

Reasons:
  • RegEx Blacklisted phrase (3): did you solve this problem
  • RegEx Blacklisted phrase (1.5): solve this problem?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @tashoyan
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Ivanov Ivan

79447224

Date: 2025-02-18 05:41:00
Score: 3
Natty:
Report link

Thumbnail files are stored separately from the files themselves. Whatever app you're using to view the folder, contents probably has a cached thumbnail that isn't refreshing

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

79447222

Date: 2025-02-18 05:41:00
Score: 3.5
Natty:
Report link

Try fetching without the 'country' property, is it presenting more/different results? Perhaps there is a known bug with that filter.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nir Gofman

79447217

Date: 2025-02-18 05:35:59
Score: 2.5
Natty:
Report link

gitlab_rails['allowed_hosts'] might be the issue. at least for me. as many of gitlab functions do need localhost services. they don't have explicit hostnames allocated. not sure but for someone it might help.

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

79447214

Date: 2025-02-18 05:32:59
Score: 2.5
Natty:
Report link

[Data error (cyclic redundancy check)1

after updating my android studio recently, my code started showing this.

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

79447207

Date: 2025-02-18 05:26:58
Score: 3.5
Natty:
Report link

but doesnt allow to set color of barLabel , i tried

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

79447205

Date: 2025-02-18 05:25:57
Score: 0.5
Natty:
Report link

mesibo's server doesn't know or care how your app was terminated (whether it was killed, crashed, force-stopped or simply is in background). If you have configured push credentials in the mesibo console (which I assume you have since you're receiving push in some cases), the server sends push notifications when it detects the user is offline - regardless of your app's state.

In general, mesibo or any server that sends push has no role after sending the push notification to FCM. After that, it's entirely up to FCM and your device's operating system to handle delivery. This is where you need to focus your troubleshooting.

You can use mesibo push webhook to troubleshoot whether mesibo sent push or not. mesibo does apply push rate limits to prevent your apps from getting throttled by FCM or APN and resets rate limits after the user is online. Alternatively, try with your own custom script bypassing mesibo.

Refer to the mesibo push troubleshooting guide here: https://docs.mesibo.com/api/push-notifications/troubleshooting/ If you are using mesibo on-premise, view console logs for push results.

The most important thing is to ensure that after push is received, your app remains active while the push is being processed. If not, your app received push and before it can act upon it, the OS puts it back to sleep - which is as good as if the push was not received. This is likely what's happening when the app is killed.

Here are various approaches to keep your app awake after receiving push, for example,

  1. JobIntentService (deprecated in Android 12): mesibo uses this in Android messenger app https://github.com/mesibo/messenger-app-android/blob/master/app/src/main/java/org/mesibo/messenger/fcm/MesiboGcmListenerService.java

    https://github.com/mesibo/messenger-app-android/blob/master/app/src/main/java/org/mesibo/messenger/fcm/MesiboJobIntentService.java

  2. WorkManager which is a replacement for JobIntentService

  3. Start a foreground service

  4. Use WakeLocks to keep device awake while processing push

You can research them and use whichever is suitable for your needs.

Remember, there are various factors that can prevent delivery when an app is killed. Many Android manufacturers (particularly Xiaomi, Huawei, Samsung, etc.) implement aggressive battery saving features that can block FCM messages when an app is not running. You can cross-check with other apps to see if they have the same issue. However, testing push notifications during development can be tricky due to rate limits. Even standard Android has battery optimization features that can affect push delivery.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Contains signature (1):
  • Long answer (-1):
  • No code block (0.5):
  • Me too answer (2.5): have the same issue
  • High reputation (-1):
Posted by: mesibo

79447194

Date: 2025-02-18 05:18:56
Score: 2.5
Natty:
Report link

(Not yet an Answer.)

If I read it correctly, the two "Group aggregate count(distinct...)" steps consume nearly all the time.

    Group aggregate: count(distinct member_vote.vote_id)
    Group aggregate: count(distinct party_statistic.vote_id)

Can you explain what is going on there?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you explain what
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Rick James

79447186

Date: 2025-02-18 05:14:55
Score: 1.5
Natty:
Report link

Change file sharing permission

To change the sharing permission of a file using Drive API, use Method: permissions.create with the following request body:

{
  "role": "writer",
  "type": "anyone"
}

I tried this using the API Explorer and got the desired result.

Output

Before using the api Before api

After using the api after api

References:

Permissions.create method

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

79447183

Date: 2025-02-18 05:12:53
Score: 6 🚩
Natty: 6
Report link

hahahahahahahahaha butts haha butts

Reasons:
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: haha butts

79447180

Date: 2025-02-18 05:10:52
Score: 2
Natty:
Report link

Out of the various options I've come across for description, only "data:view.description" works.

As on date, these aren't working for me:

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

79447178

Date: 2025-02-18 05:10:52
Score: 1
Natty:
Report link

Use Tags for gameobjects which need to ignored then on the on ontrigeerenter method just check for the tag ignore it

  void OnTriggerEnter(Collider other) {
    if (other.gameObject.tag != "<-tag need to be igonred->") {
      // Your work for here
    }
  }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Charith Fernando

79447174

Date: 2025-02-18 05:07:52
Score: 2.5
Natty:
Report link

instead of running on your main project and try to run that library to a new project. It might be some gradle issue while adding that libarary.

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

79447173

Date: 2025-02-18 05:07:52
Score: 2.5
Natty:
Report link

In SLES15 set kernel config parameter "CONFIG_IO_STRICT_DEVMEM=y".

Adding to kernel cmdline parameter "iomem=relaxed" fixed this error.

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

79447156

Date: 2025-02-18 04:53:49
Score: 1
Natty:
Report link

Based on my experience using WKHTML for generating a UTF-8 PDF, I have some suggestions that might work:

  1. --title works better than --toc-header-text for handling non-English text
  2. Try Without --toc-header-text. i.e. set this in HTML file <h1>目次</h1> and modify your command like so: wkhtmltopdf --encoding "UTF-8" toc input.html output.pdf
  3. Check your font, it might not support Japanese characters.

Cheers.

Reasons:
  • Blacklisted phrase (1): Cheers
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sean

79447145

Date: 2025-02-18 04:44:47
Score: 4.5
Natty:
Report link

i think here u get your answer your auth header is not properly created please read the docs https://bybit-exchange.github.io/docs/v5/ws/connect

and check once again u need to generate API key from this URL https://www.bybit.com/app/user/api-management

Reasons:
  • RegEx Blacklisted phrase (1): i think here u get your answer your auth header is not properly created please
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jigar Suthar

79447144

Date: 2025-02-18 04:44:47
Score: 0.5
Natty:
Report link

Try to change from:

"vite": "^4.0.0",

Into:

"vite": "^6.0.0",

Then run:

composer i

Also, see if you miss anything from the steps mentioned at: https://vite.dev/guide/troubleshooting.html#vite-cjs-node-api-deprecated

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

79447131

Date: 2025-02-18 04:34:45
Score: 1
Natty:
Report link

can someone pls verify if this code is correct or note

import numpy as np import scipy.special as sp import matplotlib.pyplot as plt import pandas as pd from scipy.linalg import lstsq

Define Zernike polynomial functions

def zernike_radial(n, m, r): """Compute the radial Zernike polynomial R_n^m(r).""" R = np.zeros_like(r) for k in range((n - abs(m)) // 2 + 1): c = (-1) ** k * sp.comb(n - k, k) * sp.comb(n - 2 * k, (n - abs(m)) // 2 - k) R += c * r ** (n - 2 * k) return R

def zernike(n, m, r, theta): """Compute the full Zernike polynomial.""" if m == 0: return zernike_radial(n, m, r) elif m > 0: return zernike_radial(n, m, r) * np.cos(m * theta) else: return zernike_radial(n, m, r) * np.sin(-m * theta)

def zernike_fit(x, y, z, max_order=4): """Fit Zernike polynomials to the surface deformation data.""" # Convert to polar coordinates r = np.sqrt(x2 + y2) theta = np.arctan2(y, x)

# Normalize r to be within [0, 1]
r /= np.max(r)

# Generate Zernike basis functions
terms = []
indices = []
for n in range(max_order + 1):
    for m in range(-n, n + 1, 2):  # Zernike indices
        terms.append(zernike(n, m, r, theta))
        indices.append((n, m))

Z = np.array(terms).T  # Zernike basis matrix

# Solve for coefficients using least squares
coeffs, _, _, _ = lstsq(Z, z)

return coeffs, indices, Z

Function to load data from an Excel file

def load_excel(): """Prompt the user for an Excel file path and load X, Y, Z data.""" file_path = input("Enter the Excel file path (e.g., D:\aeg\ir telescope.xls): ")

try:
    df = pd.read_excel(file_path, engine='xlrd' if file_path.endswith('.xls') else 'openpyxl')
    x, y, z = df.iloc[:, 0], df.iloc[:, 1], df.iloc[:, 2]  # First three columns
    return np.array(x), np.array(y), np.array(z)
except Exception as e:
    print(f"Error reading file: {e}")
    return None, None, None

Get user input for the Excel file path

x, y, z = load_excel()

if x is not None and y is not None and z is not None: # Ask for Zernike polynomial order max_order = int(input("Enter the maximum Zernike order to fit (default is 4): ") or 4)

# Fit Zernike polynomials
coeffs, indices, Z = zernike_fit(x, y, z, max_order=max_order)

# Reconstruct the surface
z_fit = Z @ coeffs

# Calculate RMS values
rms_original = np.sqrt(np.mean(z**2))
rms_error = np.sqrt(np.mean((z - z_fit) ** 2))
rms_zernike_contribution = np.sqrt(np.sum(coeffs**2))

# Plot original and reconstructed surface
fig, ax = plt.subplots(1, 2, figsize=(12, 5))
sc1 = ax[0].scatter(x, y, c=z, cmap='coolwarm')
ax[0].set_title("Original Surface Deformation")
fig.colorbar(sc1, ax=ax[0])

sc2 = ax[1].scatter(x, y, c=z_fit, cmap='coolwarm')
ax[1].set_title("Zernike Reconstructed Surface")
fig.colorbar(sc2, ax=ax[1])

plt.show()

# Print fitted coefficients
print("\nFitted Zernike Coefficients:")
for i, (n, m) in enumerate(indices):
    print(f"Z({n},{m}) coefficient: {coeffs[i]:.6f}")

# Print RMS values
print("\nRMS Analysis:")
print(f"Original Surface RMS: {rms_original:.6e}")
print(f"Reconstruction RMS Error: {rms_error:.6e}")
print(f"Total RMS Contribution from Zernike Terms: {rms_zernike_contribution:.6e}")
Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): can someone
  • Low reputation (1):
Posted by: het

79447127

Date: 2025-02-18 04:32:44
Score: 1.5
Natty:
Report link
"contributes": {
  "commands": [
    {
      "command": "command.id",
      "title": "My View Action",
      "icon": {
        "light": "resources/light/refresh.svg",
        "dark": "resources/dark/refresh.svg"
      }
    }
  ],
  "menus": {
    "view/title": [
      {
        "command": "command.id",
        "when": "view == your.view.id",
        "group": "navigation"
      }
    ]
  }
}

You can refer to https://code.visualstudio.com/api/extension-guides/tree-view#view-actions

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

79447124

Date: 2025-02-18 04:30:44
Score: 3
Natty:
Report link

View => Syntax => PlainText.

Solved the issue for me

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

79447118

Date: 2025-02-18 04:26:43
Score: 1.5
Natty:
Report link

We have this issue popping up every few weeks. We recreate the connection to the Approval service and edit and save the flow with the new connection details. This works for a few days, or a few weeks, then it just breaks again.

We have a case with Microsoft support open now. I'll post if any pearls of wisdom flow from the case resolution.

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

79447110

Date: 2025-02-18 04:23:42
Score: 1
Natty:
Report link

It sounds like you still need to learn to some basic concepts: client/server architecture, APIs, frontend vs backend technologies, etc.

If you still want learn by doing, I would recommend starting with the basics: maybe try looking for "Laravel CRUD tutorial" on YouTube, and then something like "Laravel API tutorial".

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

79447103

Date: 2025-02-18 04:09:40
Score: 2
Natty:
Report link

In addition to what Robby said, use an excludeCredentials list on create to prevent overwriting a passkey in the same provider.

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

79447099

Date: 2025-02-18 04:04:39
Score: 2
Natty:
Report link
ggplot(iris, aes(Sepal.Length, Petal.Width, shape = Species, colour = Species)) +
  geom_point() +
  theme(legend.position = c(0.8, 0.2))

enter image description here

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

79447089

Date: 2025-02-18 03:54:37
Score: 0.5
Natty:
Report link

Table 1.10. C++ 2023 Library Features: Standard Library Modules std and std.compat P2465R3 - is not supported yet.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: 3CxEZiVlQ

79447085

Date: 2025-02-18 03:52:37
Score: 1.5
Natty:
Report link

Another solution would be to initialize the variable as an array of objects:

[psobject[]]$ArrayOfObjects = $null
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ItzFeral

79447069

Date: 2025-02-18 03:43:35
Score: 1.5
Natty:
Report link

Do you have users type categorized as submitter or viewer/reviewer? You can filter gallery records on the basis of it, you can also have some sort of flag field tracking record status as submitted and unsubmitted, so once submitted record will be filter out for user and will start showing to other user based on the flagged value.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
Posted by: Almas Mahfooz

79447062

Date: 2025-02-18 03:40:35
Score: 2
Natty:
Report link

It's invalid HTML to nest an h1 in a strong element, so if PowerMapper is telling you to do that then it's wrong. There is no reason to put a strong element inside an h1 just for the sake of styling the h1. It is perfectly fine to use CSS only to style the h1.

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

79447058

Date: 2025-02-18 03:36:34
Score: 2
Natty:
Report link

Try decimal.Round(myDecimal, 2, MidpointRounding.AwayFromZero). This would round the decimal to two decimal points.

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

79447055

Date: 2025-02-18 03:34:33
Score: 2.5
Natty:
Report link

I recommend using Requestly’s Redirect Rule—it works as a browser extension and is much easier to set up.

Simply create a new redirect rule to route traffic from https://your-server.com to http://localhost:3000.

Requestly Redirect rule

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

79447047

Date: 2025-02-18 03:28:32
Score: 2
Natty:
Report link

react-preload-assets is a React plugin designed to load and track the progress of various assets (music, video, images) and display a progress bar. It provides an easy way to manage the loading state of your assets and update the UI accordingly. https://www.npmjs.com/package/react-preload-assets

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

79447044

Date: 2025-02-18 03:26:31
Score: 4
Natty:
Report link

how to prevent other app play sounds, when I am playing a music.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how to
  • Low reputation (1):
Posted by: MY J

79447042

Date: 2025-02-18 03:23:30
Score: 1.5
Natty:
Report link

Just based on my experience using langchain/langgraph as AI orchestrator ... from my understanding, the LLM doesn't actually invoke the tool, it just reply with the tool function and arguments. You'll need the AI orchestrator to actually make the call

Ref: https://python.langchain.com/docs/how_to/tool_calling/

Remember, while the name "tool calling" implies that the model is directly performing some action, this is actually not the case! The model only generates the arguments to a tool, and actually running the tool (or not) is up to the user.

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

79447029

Date: 2025-02-18 03:10:27
Score: 1
Natty:
Report link

Your comparator always returns 0

As @pebble unit points out in the first comment, using != for comparing your Integer objects is incorrect. It trickingly compares object references, not values. For demonstration I am comparing every entry in your map to every entry using a copy of your Comparator:

public static final Comparator<Map.Entry<String, Integer>> ENTRY_COMPARATOR = (a, b) -> {
    if (a.getValue() != b.getValue()) {
        return Integer.compare(b.getValue(), a.getValue());
    }
    return a.getKey().compareTo(b.getKey());
};

// ...

    for (Map.Entry<String, Integer> leftEntry : map.entrySet()) {
        for (Map.Entry<String, Integer> rightEntry : map.entrySet()) {
            System.out.println(leftEntry.getKey() + " " + rightEntry.getKey() + " " + leftEntry.getValue()
                    + " " + rightEntry.getValue() + " -> " + ENTRY_COMPARATOR.compare(leftEntry, rightEntry));
        }
    }

Output is:

accountB accountB 200 200 -> 0
accountB accountA 200 200 -> 0
accountB accountC 200 200 -> 0
accountA accountB 200 200 -> 0
accountA accountA 200 200 -> 0
accountA accountC 200 200 -> 0
accountC accountB 200 200 -> 0
accountC accountA 200 200 -> 0
accountC accountC 200 200 -> 0

Your value, 200, is outside the range where Java caches and reuses Integer objects (default up to 128, configurable). Therefore autoboxing gives you 3 different Integer objects all having the value 200 for your map. So != yields false and your comparator returns the result of Integer.compare(b.getValue(), a.getValue()). Which is 0 since the values are the same. So the entries are considered equal under your comparator.

What your priority queue does with elements that are considered equal is not specified. Which is why you get the elements in order that would appears to be random, yet reproducible.

The results I got

For documentation, from your code I got:

[accountB(200), accountC(200), accountA(200)]

I ran the code multiple times and always got this order.

The good comparator

The standard library has some nifty methods for building out comparators for us.

    PriorityQueue<Map.Entry<String, Integer>> maxHeap
            = new PriorityQueue<>(Map.Entry.<String, Integer>comparingByValue()
                    .reversed()
                    .thenComparing(Map.Entry::getKey));

Now the output is what I think you had desired:

[accountA(200), accountB(200), accountC(200)]

Map.Entry has methods comparingByKey and comparingByValue that offer comparators that compare keys and values, respectively. Since I read from your code that you want the values in descending order, I reversed() this comparator. Comparator.thenComparing is the standard way to chain comparisons so that if the first comparison yields equal, the next comparison is tried. You can of course chain as many comparisons as you can think of.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @pebble
  • Low reputation (1):
Posted by: Halim Mammadov

79447025

Date: 2025-02-18 03:06:26
Score: 2
Natty:
Report link

To set the mouse to the default mouse texture call Cursor.SetCursor(null, Vector2.zero, CursorMode.Auto), which sets the sprite to null showing the default cursor.

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

79447022

Date: 2025-02-18 03:05:26
Score: 1.5
Natty:
Report link

I got an issue quite close to what you had there. But in my case I was just doing a typo while trying to access a json. Also, if you try to get into a variable that is not initialized yet, the error will be thrown.

Take a look where in your code you tried to access a property of an object just like: "blablabla.install".

By this, you would get this error thrown just like I did.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Erick Augusto Silva Pereira

79447014

Date: 2025-02-18 03:00:25
Score: 2
Natty:
Report link

TANDN CLEANED ERROR

How To Recover From An Accidental APEX Removal (apxremov.sql script)

Applies to: Oracle Application Express (APEX) - Version 19.1 and later Oracle Cloud Infrastructure - Database Service - Version N/A and later Information in this document applies to any platform. Goal How does one recover from running the apxremov.sql script on a DB with APEX installed by mistake?

Solution You have 2 options here:

A) Restore the Database to the point before the script apxremov.sql was run

Or

B) Confirm you have proper APEX Exports of ALL our Workspaces and Application and Supporting Objects and remove the dangling APEX objects and install APEX again and restore your APEX work from your backups.

Reasons:
  • Blacklisted phrase (1): this document
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Kotler

79447012

Date: 2025-02-18 02:59:25
Score: 0.5
Natty:
Report link

To use React Suspense with an async localStorage API:

  1. Create a Cache: Store data fetched from localStorage to avoid re-fetching.
  2. Async Data Fetching: Use Suspense to handle async operations when fetching from localStorage.
  3. Suspend on Data Fetch: Throw a Promise to trigger Suspense and display a fallback while loading. For detailed information, check the doc

https://react.dev/reference/react/Suspense

Reasons:
  • No code block (0.5):
Posted by: Palak Jadav

79447003

Date: 2025-02-18 02:51:23
Score: 1
Natty:
Report link

PEP 622 provides an in-depth explanation for how the new match-case statements work, what the rationale is behind them, and provides examples where they're better than if statements.

In my opinion the biggest improvement over if statements is that they allow for structural pattern matching, as the PEP is named. Where if statements must be provided a truthy or falsey value, match-case statements can match against the shape/structure of an object in a concise way. Consider the following example from the PEP:

def make_point_3d(pt): match pt: case (x, y): return Point3d(x, y, 0) case (x, y, z): return Point3d(x, y, z) case Point2d(x, y): return Point3d(x, y, 0) case Point3d(_, _, _): return pt case _: raise TypeError("not a point we support")

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

79446999

Date: 2025-02-18 02:50:22
Score: 4
Natty:
Report link

Sadly, there's no "fix" for this problem yet. But there are workarounds under this github issue.

https://github.com/angular/components/issues/16671

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Remruat Thanga

79446998

Date: 2025-02-18 02:50:22
Score: 1
Natty:
Report link

According to https://en.cppreference.com/w/cpp/identifier_with_special_meaning/import, import has been part of the language since C++20. However, C++20 support in GCC is currently experimental. As such, you'll need to enable C++20 support by adding the command-line parameter -std=c++20 for the import identifier to be recognized.

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

79446994

Date: 2025-02-18 02:46:22
Score: 2.5
Natty:
Report link

This sets today's date in the format of dd,MM,yyyy

$Today = (Get-Date).ToString("dd,MM,yyyy")

This gets the number of days in the current month

$DaysNumber = [DateTime]::DaysInMonth($Today.Split(",")[2],$Today.Split(",")[1])

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

79446991

Date: 2025-02-18 02:44:21
Score: 3
Natty:
Report link

Here is an alternative Lottie React Native library which just got released, which has first-class .lottie support.

https://developers.lottiefiles.com/docs/dotlottie-player/dotlottie-react-native/

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

79446982

Date: 2025-02-18 02:37:20
Score: 3
Natty:
Report link

Data type real does not have enough precision to avoid the rounding error in your specific calculation. That is why you get a value very close to zero, but not zero as a result.

Try using data type extended instead.

Cheers

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

79446979

Date: 2025-02-18 02:35:20
Score: 0.5
Natty:
Report link

You can use python manage.py dbshell to launch the cli. Then type .tables to see the tables installed by Django.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user10377577

79446965

Date: 2025-02-18 02:18:16
Score: 1.5
Natty:
Report link

The code is correct but the problem is with the file's encoding.Try converting the file to utf-8 online or use python chardet to automatically detect the right encoding for your json file

import chardet
rawdata = open("test11.json", 'rb').read()
result = chardet.detect(rawdata)
charenc = result['encoding']

with open("test11.json","r", encoding=charenc) as file:
    data = json.load(file)
    print(data)

See about encoding from this other solution on StackOverflow here

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Moreh wa Chege

79446963

Date: 2025-02-18 02:17:16
Score: 1
Natty:
Report link

You can use a machine learning-based approach to detect malware in Android apps by training a model on a dataset of known malicious and benign apps. Use features such as API calls, system calls, and file system interactions to train the model.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: carl

79446961

Date: 2025-02-18 02:16:16
Score: 2.5
Natty:
Report link

There are two approaches when you are building an angular app, first is ng module which you are working in, second is standalone and it is introduced in angular 14, while standalone is newer many developer still working with ng module approach

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

79446956

Date: 2025-02-18 02:09:15
Score: 1
Natty:
Report link

You need to change IEnumerable<T> records to IQueryable<T> records. IEnumerable causes you to load all your database data to memory while IQueryable is SQL. You can verify this by printing the generated SQL log.

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

79446954

Date: 2025-02-18 02:06:14
Score: 1
Natty:
Report link

You can put r before filename to ensure path is read correctly:

import json

with open(r"test11.json","r") as file:
    data = json.load(file)
    print(data)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Adeva1

79446947

Date: 2025-02-18 01:54:12
Score: 0.5
Natty:
Report link

When adding an extra constructor to a @ConfigurationProperties annotated record in Spring Boot, you need to explicitly tell Spring Boot which constructor to use for binding by annotating it with @ConstructorBinding.

@ConfigurationProperties("user")
record User(String name, int age) {

    @ConstructorBinding
    public User { // Annotate the canonical constructor
    }

    public User(String name) {
        this(name, 0);
    }
}

@ConstructorBinding is required when multiple constructors exist to avoid ambiguity.

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

79446944

Date: 2025-02-18 01:47:11
Score: 2
Natty:
Report link

I encountered this error by naming a folder [id], and then renaming it [order_id].

Due to a what I suspect was a NextJS caching issue, I received an error:

Error: You cannot use different slug names for the same dynamic path ('id' !== 'order_id').

I restarted NextJS dev and the issue went away.

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