79394084

Date: 2025-01-28 14:05:02
Score: 1
Natty:
Report link

we have 2 methods,

  1. Give permissions to system user
  2. Query the system tables

Instead of,

Command.CommandText = $@"select * from %SYS.Namespace_List()";

use

Command.CommandText = "DO $SYSTEM.SQL.Execute(\"SELECT Name FROM %SYS.Namespace\")";
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shweta gawade

79394082

Date: 2025-01-28 14:04:02
Score: 1.5
Natty:
Report link

You'll have to set instance group at the inventory level, split the inventory and set different instance group on each inventory (as per region). you can add all inventories to the template and then launch, it won't ask for which instance group

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

79394079

Date: 2025-01-28 14:03:02
Score: 1
Natty:
Report link

My approach is to use the zfill function to zero fill to left for a base 36 number of length 5, e.g.:

np.base_repr(x, 36).lower().zfill(5)

I also want the result in lower case as it will form part of a Kubernetes pod name, for consistency with conventions, hence I added .lower().

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

79394078

Date: 2025-01-28 14:03:01
Score: 11 🚩
Natty: 5.5
Report link

I am pulling a new SSIS project which my colleague pushed to Azure Devops to my local, when synched I could see the new project in my local with all the rest of the packages, but it is not appearing in the visual studio solution explorer.

I can see all the other changes done to previously existing packages and projects, but the new project is not appearing in the visual studio solution explorer.

Could you please let me know of this is always the case with new projects or am I doing something wrong?

Thanks in advance.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): something wrong?
  • RegEx Blacklisted phrase (2.5): Could you please let me know
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: uday kiran

79394075

Date: 2025-01-28 14:02:00
Score: 2.5
Natty:
Report link

May related to this question: Trying to use BeautifulSoup to scrape yelp ratings and export to csv, the csv though ONLY has the review comments and not rating or ID.

I also shared an easier way to scrape Yelp Reviews. Hope this helps.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: andy

79394073

Date: 2025-01-28 14:01:00
Score: 2.5
Natty:
Report link

For my case I am using superset 4.0.2. And PDF export is a default feature for dashboards/ Charts. No additional setup is needed.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Reda Arté Kejji

79394065

Date: 2025-01-28 13:57:59
Score: 1
Natty:
Report link

If you are running kernel from a Conda environment, in the terminal you should first select the correct environment:

conda activate name_of_environment
pip3 install pydub
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Žygimantas

79394060

Date: 2025-01-28 13:57:59
Score: 2
Natty:
Report link

I got this error only when specifying a batch file (the -b argument). Updating to the 0.83 pre-release version of Putty resolved the issue.

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

79394056

Date: 2025-01-28 13:56:59
Score: 3
Natty:
Report link

It seems login_hint is only used for external providers.

Calling signInWithRedirect({ options: { loginHint: '[email protected]' } }) will set a default value for the username input after the user clicks the Google button in the Hosted UI (see attached screenshots)

enter image description here

enter image description here

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

79394052

Date: 2025-01-28 13:54:58
Score: 4.5
Natty: 4
Report link

I have a bit of a similar context here.

So I want to run pyrfc inside my Function, which you can just install using pip and then import using Python code. However for it to work, you need to have the SAP NetWeaver RFC SDK installed, which is not that trivial, and also Cython (just run pip install Cython). I am able to execute the function using a container to deploy, but how can I avoid using the container and still complete PyRFC setup? In short, the steps envolve creating a specific directory, unzipping files to it and setting a few environment variables.

Is it possible without using the container deployment?

Reasons:
  • Blacklisted phrase (0.5): how can I
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Carlos Junior

79394050

Date: 2025-01-28 13:53:57
Score: 3.5
Natty:
Report link

In .NET 9, I had a problem with the section in the SDK project, which was resolved by removing it.

Remove Tage win10-x64

Help Doc : https://learn.microsoft.com/en-us/dotnet/core/compatibility/sdk/8.0/rid-graph

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

79394025

Date: 2025-01-28 13:44:55
Score: 1
Natty:
Report link

v4 breaking changes compared to v3

There have been several updates in TailwindCSS v4.

The installation process has changed:

Some older features have been deprecated:

A CSS-first configuration has been implemented:

Changed TailwindCSS v3 installation steps

npm i tailwindcss installs v4 by default. To install v3, use:

npm install -D tailwindcss@3

Answers based on the above information

Why aren't the tailwind.config.js and postcss.config.js files being generated automatically when running the installation commands?

The init process has been removed. There is no longer a need for tailwind.config.js, so nothing is automatically created anymore. However, you can still make it available using the @config directive and create it manually.

How can I resolve the error npm ERR! could not determine executable to run when initializing Tailwind CSS or Shadcn UI?

This error typically occurs when there is an issue with the command being run, such as a missing or incorrect executable. From the context, I infer that you're trying to run the init process, but as I mentioned, it has been deprecated.

Is there a specific configuration or prerequisite I might be missing for setting up Shadcn UI in a React.js (Vite + JavaScript) project?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): StackOverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: rozsazoltan

79394022

Date: 2025-01-28 13:44:55
Score: 2.5
Natty:
Report link

Currently, As suggested on the dart website, You could use the Dart Embedding API to build the Dart VM into a dynamic library with project such as dart_shared_library

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

79394019

Date: 2025-01-28 13:43:54
Score: 3.5
Natty:
Report link

UPDATE: I have just rolled back my Visual Studio Community 2022 ver from 17.12.4 to 17.10.4 and the debugger started working with the aforementioned solutions.

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

79394017

Date: 2025-01-28 13:43:54
Score: 0.5
Natty:
Report link

This is a table a made for myself after investigating the best way to implement autocomplete for our app:

differentiate between Query Suggestion and Search

UseCase Completion S. Context S. Term S. Phrase S. search_as_you_type Edge N-Gram
Basic Auto-Complete X X X X
Flexible Search/Query X X
High Performace for Large Datasets X X X X
Higher Memory Usage X X X
Higher Storage Usage X X
Substring Matches X X
Dynamic Data Updates X X X X
Relevance Scoring X X X X
Spell Correction X X
complexity to implement low high medium high low medium
Speciality fast prefix matching context-aware suggestions single term corrections multi term corrections implements edge n-gram, full text partial matching
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: papierkorp

79394015

Date: 2025-01-28 13:42:54
Score: 1.5
Natty:
Report link

Make sure that your "Account" class has public getters and setters for all the fields (you can use Lombok annotations to avoid boilerplate code).

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

79394002

Date: 2025-01-28 13:38:53
Score: 1
Natty:
Report link

In JavaScript with regex:

var result_to = document.querySelector('.my_example_280124');
var product_price = 123;
var product_quantity = 67;
var product_total_price = product_price * product_quantity;

// Adding a comma to the result number
product_total_price = product_total_price.toString().replace(/(\d)(?=(\d\d\d)+(?!\d))/g, '$1,')

result_to.innerHTML = 
'<p>' + 'Product price: ' + product_price + '</p>' +
'<p>' + 'Product quantity: ' + product_quantity + '</p>' +
'<p>' + '<b>' + 'Product total price: ' + '</b>' +  product_total_price + '</p>';
<div class="my_example_280124"></div>

From: http://www.kompx.com/en/add-thousands-separator-into-numbers-javascript.htm

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

79393998

Date: 2025-01-28 13:36:53
Score: 2
Natty:
Report link

If none of the answer solved your problem. please try to match the bundle name with firebase console with your project. If it's mismatched, edit the wrong one. It will solve your issue.

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

79393982

Date: 2025-01-28 13:29:51
Score: 0.5
Natty:
Report link

On Newer version of PHP 8.3.*

Ubuntu/Debian

sudo apt-get install php8.3-zip

CentOS/Red Hat:

sudo yum install php-zip

Alpine Linux (if using Docker):

apk add php8-zip

Restart

sudo systemctl restart apache2  # For Apache
sudo systemctl restart nginx    # For Nginx
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sandeep Kumar

79393971

Date: 2025-01-28 13:23:50
Score: 3.5
Natty:
Report link

I'm using Laravel 11 and I'm still facing the same 'Not Found' error. help

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

79393966

Date: 2025-01-28 13:21:50
Score: 3.5
Natty:
Report link

Me.Repaint is the official method for this situation, and doesn't change focus.

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

79393962

Date: 2025-01-28 13:19:49
Score: 3
Natty:
Report link

The Reproducible Builds - Archives page might be helpful here.

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

79393960

Date: 2025-01-28 13:19:49
Score: 1
Natty:
Report link

For folks looking to trigger screenshots to test things like the new screenshot detector API, which AFAICT won't be triggered via the emulator screenshot button, you can use the accessibility menu's screenshot button. Turn on the accessibility menu by searching for it in settings and then swipe to the second page and you'll see a screenshot button which will trigger the screenshot capture API.

Add

enter image description here

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Alex Sullivan

79393957

Date: 2025-01-28 13:16:49
Score: 1
Natty:
Report link

The following settings should be enabled to replace Visual Studio tooltips: ReSharper | Options | Environment | Editor | Visual Studio Features | Tooltips | Replace Visual Studio tooltips. This setting is disabled by default. Also, don't forget to enable ReSharper | Options | Code Inspection | Settings | Highlighting | Color identifiers so that ReSharper tooltips are shown.

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

79393938

Date: 2025-01-28 13:11:47
Score: 5.5
Natty: 5.5
Report link

@Paul Franke, I was struggling with the azure app service environment in the next app and it can be fixed with your solution. it was great helpful and good approach. thanks.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Paul
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Bryan De Vera Villanuevo

79393934

Date: 2025-01-28 13:10:47
Score: 1.5
Natty:
Report link

Add min-h-screen to the outer container to ensure it fills the entire screen and pb-20 to the content wrapper so the sticky element fits without pushing extra space below the grid.

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

79393929

Date: 2025-01-28 13:08:46
Score: 1
Natty:
Report link

Migrating the configuration file will likely fix the issue.

vendor/bin/phpunit --migrate-configuration
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tohir

79393928

Date: 2025-01-28 13:07:46
Score: 1
Natty:
Report link

chart.sparkline is what you are looking for:

sparkline hides all the elements of the charts other than the primary paths. Helps to visualize data in small areas

https://apexcharts.com/docs/options/chart/sparkline/

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

79393927

Date: 2025-01-28 13:07:46
Score: 1
Natty:
Report link

Just regex and no toLocaleString():

var table = document.querySelector('.my_table_280125');
var last_cell = table.querySelector('tr:last-of-type td:last-of-type');
var sum = 0;

for( var i = 0; i < table.rows.length - 1; i++ ){
    sum = sum + parseFloat( table.rows[ i ].cells[ 1 ].textContent );
}

last_cell.textContent = sum.toString().replace(/(\d)(?=(\d\d\d)+(?!\d))/g, '$1,');
<table cellpadding="20" cellspacing="0" width="100%" border="1" class="my_table_280125">
    <tr>
        <td>Number #1</td>
        <td align="right">1234</td>
    </tr>
    <tr>
        <td>Number #2</td>
        <td align="right">12345</td>
    </tr>
    <tr>
        <td>Number #3</td>
        <td align="right">123456</td>
    </tr>
    <tr>
        <td>Total:</td>
        <td align="right"></td>
    </tr>
</table>

From: http://www.kompx.com/en/add-thousands-separator-into-numbers-javascript.htm

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

79393918

Date: 2025-01-28 13:03:45
Score: 0.5
Natty:
Report link

Documentation states:

Glob only searches files in its own package, and looks only for source files (not generated files nor other targets).

However, big.ts is generated by the above gen_ts rule, so glob won't find it.

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

79393909

Date: 2025-01-28 13:01:44
Score: 0.5
Natty:
Report link

These codes are somwehat obfuscated in CommCtrl.h. e.g. 0xFFFFFD13 is this:

#define MCN_SELCHANGE       (MCN_FIRST - 3) // -749

with

#define MCN_FIRST               (0U-746U)       // monthcal

These defines make use of the wrap around nature of unsinged ints.

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

79393908

Date: 2025-01-28 13:01:44
Score: 1
Natty:
Report link
        if tags:
            message_text = message.message.lower()  # Convert to lowercase for case-insensitive comparison
            if not any(tag.lower() in message_text for tag in tags):
                continue
            else:
                print(f"{tags=}")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: OSAHakunamatata

79393907

Date: 2025-01-28 13:00:44
Score: 2.5
Natty:
Report link

Zappier have now a Schedule trigger

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

79393902

Date: 2025-01-28 12:58:43
Score: 8 🚩
Natty: 6
Report link

Any update on this? I am getting the same error; tried different STABLE_ONNX_OPSET_VERSION values still the error persists. Please update here if any other solution.

Reasons:
  • Blacklisted phrase (1): update on this
  • RegEx Blacklisted phrase (1): I am getting the same error
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am getting the same error
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pranali Dhane

79393900

Date: 2025-01-28 12:57:42
Score: 2.5
Natty:
Report link

Set param business_status: "OPERATIONAL"

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: skywind

79393898

Date: 2025-01-28 12:56:42
Score: 3.5
Natty:
Report link

I added the css code into the html file itself in a style tag and everything worked fine.

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

79393894

Date: 2025-01-28 12:56:42
Score: 0.5
Natty:
Report link

You can disable this behaviour via series.stickyTracking option set to false.

Demo: https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-stickytracking-false/

API Reference: https://api.highcharts.com/highcharts/series.line.stickyTracking

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

79393893

Date: 2025-01-28 12:55:42
Score: 1
Natty:
Report link

Make forms automatically collect user email

I had a related case and was able to confirm that its content is still relevant to date.

Alternative script of the .setRequireLogin that changing the collecting email on google form

While on the case on this post, I discovered that various methods available on Apps Script will allow you to have your form collect users's email addresses. Moreover, the kind of email field will vary from the type of account that created the form, whether it's a regular gmail.com account or a workspace account.

References:

Class Froms's deprecated methods

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

79393891

Date: 2025-01-28 12:55:41
Score: 4
Natty: 4
Report link

check Kaspersky or other security software is turned off

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

79393889

Date: 2025-01-28 12:54:40
Score: 1
Natty:
Report link

Inline with @TheMaster comment, it is indeed parallel and asynchronous. It is the behavior of google.script.run. They are sent to the server and executed independently, without waiting for others to finish. You also need to keep in mind that the order depends on the execution time of each server-side function. Faster calls will complete earlier, regardless of the order they were initiated.

You can check this documentation Class google.script.run (Client-side API)

The Results in your example are expected to finish in this order:

Call 2 - 3s
Call 3 - 4s
Call 1 - 5s

This is because Call 2 has the shortest execution time, so it finishes first at 3s.

Server-side functions are queued in parallel, but they are handled by the Google Apps Script execution engine, which processes each other independently. The actual timing can vary depending on server load, quota limits, or other external factors.

If the order in which results are processed matters, you must manage this explicitly.

For instance:

You also need to consider that If too many google.script.run calls are made in a short time, they might hit quota limits or delays due to the Apps Script execution environment. Avoid making a very large number of simultaneous calls.

Other documentation I have read that might help you in organizing asynchronous And if you're running things in parallel using html.

Reasons:
  • Blacklisted phrase (1): this document
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @TheMaster
  • Low reputation (0.5):
Posted by: Alma_Matters

79393883

Date: 2025-01-28 12:53:40
Score: 1
Natty:
Report link

Goto Settings -> Build, Execution, Deployment -> Build Tools -> Maven and make sure Use settings from .mvn/maven. config chebox is checked.

Settings -> Build, Execution, Deployment -> Build Tools -> Maven

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

79393878

Date: 2025-01-28 12:51:39
Score: 2
Natty:
Report link

If you use an old version of Ubuntu (my case 18.04), you should install with :

And for newer verion like 24.04 :

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

79393873

Date: 2025-01-28 12:50:39
Score: 0.5
Natty:
Report link

Solved: I found the solution in Question #9458317. Before using it in $plot->SetTitle($Titel); I have to transform $Titel as follows: $Titel = mb_convert_encoding($Titel, "HTML-ENTITIES", "UTF-8");

Reasons:
  • Whitelisted phrase (-2): I found the solution
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user29335945

79393869

Date: 2025-01-28 12:50:39
Score: 0.5
Natty:
Report link

You can use sudo apt-get install python3-dev

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

79393860

Date: 2025-01-28 12:47:38
Score: 2
Natty:
Report link

Maybe you could use a sensor https://airflow.apache.org/docs/apache-airflow/stable/howto/operator/time.html

Think in the dependencies defined ( task_1 >> sensor >> task_2) task_1 will run at 5h30, if it sucessed it will run the sensor (it`ll wait until 8h30) and finally running the task_2.

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

79393858

Date: 2025-01-28 12:47:38
Score: 2
Natty:
Report link

I had this problem too. I opened preferences and changed one totally unrelated option ("Code editor -> display -> Show visible right margin") and clicked OK and then it went back to normal.

So just change anything in preferences.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ester Borková

79393854

Date: 2025-01-28 12:45:38
Score: 2.5
Natty:
Report link

As suggested by @tonykoval, it seems to be working with new attribute var is_empty here is the attached screenshots of the flow. enter image description here enter image description here enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @tonykoval
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: silentsudo

79393850

Date: 2025-01-28 12:43:37
Score: 5.5
Natty:
Report link

is this of any template? maybe you can see parent class is different, and it might be in c++ and there they declared the value of skeletal mesh to this default mannequin?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): is this of any
  • Low reputation (1):
Posted by: phani ram

79393846

Date: 2025-01-28 12:42:36
Score: 2.5
Natty:
Report link

Found it. In Django you have 2 guys responsibles

  1. To limit admin session:

    SESSION_COOKIE_AGE = 30 # in seconds

  2. To renew session time

    SESSION_SAVE_EVERY_REQUEST = True

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

79393841

Date: 2025-01-28 12:41:36
Score: 3.5
Natty:
Report link

Comment out @tailwind base; you can include it individually in every Vue page

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @tailwind
  • Low reputation (0.5):
Posted by: Michael Njuguna

79393838

Date: 2025-01-28 12:39:36
Score: 1.5
Natty:
Report link

import itertools

Range of numbers (1 to 31)

numbers = range(1, 32)

Generate all combinations of 5 numbers

combinations = list(itertools.combinations(numbers, 5))

Print the total number of combinations

print(f"Total combinations: {len(combinations)}")

Print the first 10 combinations as a sample

for combo in combinations[:130000]: print(combo)

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

79393834

Date: 2025-01-28 12:38:36
Score: 1.5
Natty:
Report link

you can use this font family it work for Arabic as expected

IBMPlexSansArabic-Regular.ttf

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

79393831

Date: 2025-01-28 12:38:36
Score: 2.5
Natty:
Report link

Could use the domUtils https://www.tiny.cloud/docs/tinymce/latest/apis/tinymce.dom.domutils/#get

var spans = editor.dom.select('span');
dom.setAttrib(spans, 'data-contrast', '');
dom.setAttrib(spans, 'data-ccp-props', '');

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

79393829

Date: 2025-01-28 12:37:35
Score: 2
Natty:
Report link

I will make a code in php. The code will be - I have a backend code in my ajax file. HTML is generated with data in that code and that code is being shown in frontend through script. So this thing is done for desktop but it has to be done dynamically for mobile then how to do it the reference code is given below.

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

79393826

Date: 2025-01-28 12:37:35
Score: 2
Natty:
Report link

For cleanly vendoring dependencies I would suggest this:

  1. Delete the vendor folder
  2. go get ./...
  3. go mod tidy
  4. go mod vendor

This helped me fix the inconsistency issue.

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

79393823

Date: 2025-01-28 12:36:35
Score: 2.5
Natty:
Report link

I've had the same issue, for me, font size decrease solved the problem, I've added

schemaspy.fontsize=9

to the config (decreasing it from the deafault 11, see https://schemaspy.readthedocs.io/en/latest/configuration/commandline.html#diagram-related) and it works fine for now.

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

79393820

Date: 2025-01-28 12:36:35
Score: 0.5
Natty:
Report link

The solution provided by @jatin works fine for me but after following solution i was unable to access the swift class in the project navigator as shown in the following screenshot.

Xcode screenshot

If its the same case for you, follow the steps mentioned below:

  1. Right Click on YOUR_PROJECT_NAME.xcodeproj Show Package Contents then open project.pbxproj in text editor.

  2. Do cmd + f and remove the following lines from the project.pbxproj file

minimizedProjectReferenceProxies = 1;
preferredProjectObjectVersion = 77;

  1. Do cmd + f and replace all PBXFileSystemSynchronizedRootGroup to PBXGroup in project.pbxproj file.

  2. Finally, find and update objectVersion = 77; to objectVersion = 56; in project.pbxprojfile and save it.

  3. Now, close Xcode and run pod init. Your all swift files will be present in the project navigator and your PodFile will be created without any issue.

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

79393812

Date: 2025-01-28 12:32:34
Score: 1.5
Natty:
Report link

Try this package it works for ios only

flutter_to_airplay: ^2.0.5

Reasons:
  • Whitelisted phrase (-1): Try this
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: appdev

79393809

Date: 2025-01-28 12:31:34
Score: 2.5
Natty:
Report link

I don't know why but I changed library to load SVG than it's working this is new library I used https://github.com/exyte/SVGView than it's working but I don't know why not working in SVGKit as that is widely used if anyone know that answer it

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

79393800

Date: 2025-01-28 12:30:34
Score: 0.5
Natty:
Report link

You can go with package pip_view: ^0.9.7

Code snippet:

PIPView.of(context).presentBelow(MyPiPScreen());

Feature Preview:

Preview

Alternate packages:

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

79393796

Date: 2025-01-28 12:29:33
Score: 1
Natty:
Report link

Your pyenv might not be up to date. Try upgrading pyenv by running:

pyenv update

Once updated, try installing Python again:

pyenv install 3.12.8

Let me know if this resolves the issue!

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

79393794

Date: 2025-01-28 12:28:33
Score: 0.5
Natty:
Report link

I had the same errors but solved it by installing gnome-browser-connector. Found the error through the Firebox browser where I got another error message that I could map to this. After installing it this worked in both Chrome and Firefox.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: William Frid

79393788

Date: 2025-01-28 12:27:33
Score: 2.5
Natty:
Report link

For some weird reason, when I go to "Edit->Paste without formatting", it pops up with a box: cannot use menu, and I then afterwards use the "Ctrl-Shift V" to paste in the text, it doesn't insert the tabs!

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

79393777

Date: 2025-01-28 12:24:32
Score: 0.5
Natty:
Report link

Run into same issue and found here the solution.

  1. Update the Angular / Ionic libraries to get a related bug solved.
  2. If you have a standalone app, check if your Ionic imports are correct. E.g. change import { ToastController } from '@ionic/angular'; to import { ToastController } from '@ionic/angular/standalone';
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bob der Baumeister

79393772

Date: 2025-01-28 12:22:32
Score: 2.5
Natty:
Report link
if (kReleaseMode) {      
      debugPrint = (String? message, {int? wrapWidth}) => null;
}  

good job ,thx Dhruvan Bhalara

Reasons:
  • Blacklisted phrase (1): thx
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jianxin.zhang

79393771

Date: 2025-01-28 12:21:31
Score: 0.5
Natty:
Report link

for passive RTT measurements with QUIC, I would usually recommend using the latency spin bit, which was introduced for exactly this purpose. It has various advantages compared to parsing acknowledgments. Unfortunately, quicly (the QUIC library behind qperf) does not support the spin bit, so if you don't want to implement it on your own, you have to decrypt the pcap and parse ACKs.

I don't fully understand your argument on why you can't use the "Largest Acknowledged" value. In QUIC, packet numbers are acknowledged. The packet number space differs for each direction, but this does not affect RTT calculation. In theory, it should give you some samples if you look at the timestamps of packet numbers and the timestamps of corresponding ACKs.

You should also keep in mind that in QUIC, acknowledgments are delayed, and the values you retrieve are, therefore, very likely higher than the actual RTT.

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

79393762

Date: 2025-01-28 12:18:31
Score: 0.5
Natty:
Report link

Not sure if it is better or easier, but:

=HSTACK(DROP(REDUCE("",TOCOL((A2:A4)&"//"&TRANSPOSE(TOCOL(B1:E1))),LAMBDA(a,b,VSTACK(a,TEXTSPLIT(b,"//")))),1),TOCOL(B2:E4))

enter image description here

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

79393755

Date: 2025-01-28 12:16:30
Score: 2
Natty:
Report link

Another one plugin.

Supports custom attributes, deleteOne/deleteMany/findOneAndDelete middleware, multiple deleting modes and so on:

https://www.npmjs.com/package/mongoose-smart-delete

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Karolis Tička

79393749

Date: 2025-01-28 12:14:30
Score: 2
Natty:
Report link

There are some established alternatives to pre-commit that do support what you're after, and which I can recommend:

  1. lefthook - stack-agnostic, like pre-commit, can be installed via homebrew, pip, bundle, node etc if you want
  2. husky combined with lint-staged - these are tied to nodeJS
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jamie Cobbett

79393747

Date: 2025-01-28 12:14:30
Score: 2.5
Natty:
Report link

The post referencing tagging child items would work, that's the best native way to create the burndown you're looking for.

Have you looked at extensions? AgileInsights lets you do this: https://marketplace.visualstudio.com/items?itemName=Curamobile.teamhealth

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

79393738

Date: 2025-01-28 12:10:29
Score: 1
Natty:
Report link

You don't need to write down the full path. This is more consistent:

import io
from asciidoc3 import asciidoc3api

asciidoc3_ = asciidoc3api.AsciiDoc3API(asciidoc3_py=asciidoc3api.__file__)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: mbarto

79393727

Date: 2025-01-28 12:07:28
Score: 2.5
Natty:
Report link

Not sure what breaks doom emacs on emacs 29.4 in windows. I was able to configure doom emacs with https://github.com/kiennq/emacs-build/releases (emacs_31.259.20240705.e890f73 only provides zip I can use).

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

79393721

Date: 2025-01-28 12:05:27
Score: 8.5
Natty: 7.5
Report link

I need biostar sdk before v2. Do you have it?

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2.5): Do you have it
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Batuhan Bayrak

79393719

Date: 2025-01-28 12:05:26
Score: 1
Natty:
Report link

You can simply implement it.

Enforcer enforcer = new Enforcer("*/model.conf", "*/policy.csv");

List<List<String>> permissionsList = enforcer.getImplicitPermissionsForUser("name");

it will return the list.

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

79393690

Date: 2025-01-28 11:55:24
Score: 1
Natty:
Report link

if you have a settings.json file for your workspace or global settings, you can manually add the following setting: "ftp-sync.showDiff": false

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

79393672

Date: 2025-01-28 11:48:23
Score: 1
Natty:
Report link

Stripe Connect is a product that allows for multi-party payments. Each party withdrawing the funds will need to create a Stripe account, connected to your Platform account. There's a few ways to charge customers with Stripe Connect, but in order to avoid exchange fees, it might make sense to use Destination charges. In this case, the Connected account will be created in India, with a bank account in INR, and will be instructed by your Platform to charge their customer directly. The currency exchange fee will only apply to application fee, which is collected by your Platform for your services.

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

79393667

Date: 2025-01-28 11:47:22
Score: 0.5
Natty:
Report link

This can be achieved with the help of xs:assert, fn:matches and concat.

The assertion at a level that can reach all needed elements as children looks like the following.

<xs:assert test='every $line in Values/Line satisfies fn:matches($line, concat("-?[0-9]*.[0-9]{1,2}(,-?[0-9]*.[0-9]{1,2}){",xs:string(Count - 1),"}"))'/>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: FordPrefect

79393665

Date: 2025-01-28 11:47:22
Score: 3.5
Natty:
Report link

For anyone who has saved a figure as an image and wants to do this without using pickle:

Have you figure created in the first instance, ready to be saved as a png image. You can save with:

fig.savefig(filename)  

When it comes to loading that figure in subsequent instances, you can run:

fig = plt.imshow(plt.imread(filename)).get_figure()
Reasons:
  • RegEx Blacklisted phrase (3): Have you figure
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: GuyReading

79393664

Date: 2025-01-28 11:46:22
Score: 0.5
Natty:
Report link

It turns out that I didn't wire the LED output to anything, and so yosys optimised the RAM away. If I add

    assign LED = memory_read_data[7:0];

to the test bench, then the RAM is correctly synthesised:

Info: Device utilisation:
Info:            ICESTORM_LC:      27/   5280     0%
Info:           ICESTORM_RAM:       1/     30     3%
Info:                  SB_IO:       9/     96     9%
Info:                  SB_GB:       3/      8    37%
Info:           ICESTORM_PLL:       0/      1     0%
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Richard Vodden

79393648

Date: 2025-01-28 11:43:21
Score: 1
Natty:
Report link

In my case I needed this specific test to run in node environment instead of jsdom. You can force a particular test to run in a different environment by putting this on top of the .spec file:

/**
 * @jest-environment node
 */
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Matiz

79393644

Date: 2025-01-28 11:42:21
Score: 1.5
Natty:
Report link

To enable PowerApps to reach a DB using a Private Endpoint you should follow this answer: https://learn.microsoft.com/en-us/answers/questions/1375832/power-apps-automate-and-azure-sql-db-connection-wi

Here a brief summary:

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

79393630

Date: 2025-01-28 11:35:19
Score: 1
Natty:
Report link

Later in the day, I saw that I could solve this by defining the superclass as default implementation, and the subclass would be instantiated when necessary:

services.DeclareService(null, 
                       [typeof(CommonWriter)],
                        DeclarationPolicies.IsDefaultImplementation);
services.DeclareServicesFor<CustomWriter>()

the CommonWriter probably overrun all implementations because it was the first to be registered.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mateus Lima Silveira

79393627

Date: 2025-01-28 11:35:19
Score: 4
Natty:
Report link

In my case, I misspelled the variable name in the Vercel settings. Try to check it out.

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Carlos Lopes

79393625

Date: 2025-01-28 11:34:18
Score: 1.5
Natty:
Report link

to turn off rollups via mouse-wheel:

Settings Editor dialog

please do confirm that this works OK for you. i am using Linux Mint XFCE 24, and this has worked fine for me from Mint 16 onwards.

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

79393623

Date: 2025-01-28 11:33:18
Score: 1.5
Natty:
Report link

I recently tackled a common issue in web development: CORS errors between a Vite + React frontend and a Node.js/Express backend in a GitHub Codespace. By configuring a proxy in vite.config.js, I was able to seamlessly connect the two without any CORS issues.

If you’re facing a similar challenge, check out my solution here: https://github.com/4Min4m/proxyDemo.git

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

79393617

Date: 2025-01-28 11:30:17
Score: 5.5
Natty:
Report link

Could you give more details about your images and if they could be divided to smaller patches, for example.

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you give
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: explorer

79393614

Date: 2025-01-28 11:29:17
Score: 2.5
Natty:
Report link

If you’re building a stateless API, relying on laravel session cookies isn’t recommended. Instead use API tokens (e.g, Bearer tokens) to authenticate requests.

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

79393604

Date: 2025-01-28 11:25:16
Score: 1
Natty:
Report link
<meta
  name="viewport"
  content="width=device-width, initial-scale=1.0, user-scalable=no, viewport-fit=cover"
/>
This meta tag helps to remove that extra space.
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: fidan

79393585

Date: 2025-01-28 11:18:14
Score: 5.5
Natty: 5.5
Report link

i am also facing this issue- ✖ Check for app config fields that may not be synced in a non-CNG project my expo sdk is - 52 how can i fixed it?

Reasons:
  • Blacklisted phrase (0.5): how can i
  • Blacklisted phrase (1): also facing this
  • Whitelisted phrase (-2): i fixed
  • RegEx Blacklisted phrase (1.5): how can i fixed it?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Khaliq Hussain

79393583

Date: 2025-01-28 11:18:13
Score: 1.5
Natty:
Report link

Take this analogy. Although it might not perfectly fit the situation.

An Abstract class is similar to a blueprint of building on paper. Creating an object or instance of the Abstract class is similar to living in that blueprint.

Is that possible? No. The blueprint has to be implemented (concrete class) on the ground or somewhere before you can live in it.

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

79393572

Date: 2025-01-28 11:14:13
Score: 0.5
Natty:
Report link

I managed to solve this. I had previously generated the registry entries using this command:

regasm TheApplication.dll /regfile:TheApplication.reg

Then I had imported TheApplication.reg into the registry using regedit.

Referring to the regasm documentation here: https://learn.microsoft.com/en-us/dotnet/framework/tools/regasm-exe-assembly-registration-tool

I discovered this: "The /regfile option only emits registry entries for managed classes. This option does not emit TypeLibID or InterfaceID entries."

To get it working, I did the following:

Then I used the following command to register the DLL:

regasm TheApplication.dll /tlb:TheApplication.tlb /codebase
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Stephen

79393559

Date: 2025-01-28 11:12:12
Score: 1
Natty:
Report link

try using this

Modifier.scale(scaleX = -1f, scaleY = 1f),

worked for me

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Filip Kwiatkowski

79393554

Date: 2025-01-28 11:10:11
Score: 3
Natty:
Report link

There is an open issue regarding these error logs. However, no fix yet.

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

79393550

Date: 2025-01-28 11:09:11
Score: 1
Natty:
Report link

Simple solution. Below command worked for me

git for-each-ref --sort=-committerdate refs/heads/ --format='%(refname:short) - %(committerdate:short)'

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

79393546

Date: 2025-01-28 11:08:11
Score: 2.5
Natty:
Report link

I think I recall that for only updating some fields in PrestaShop the method must be PATCH and not PUT. However if my mind is not tricking me I recall that for each resource the PATCH method must be enabled. Otherwise if PUT is used I guess that every time you must update you must include all fields.

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

79393535

Date: 2025-01-28 11:05:09
Score: 5
Natty:
Report link

It looks like some problems with versions of libs. What version of Spring do you use in server and client?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Владимир Шмаков

79393523

Date: 2025-01-28 11:01:08
Score: 1.5
Natty:
Report link

first of all make sure you are using Medusa V2 and not V1. then follow the docs to add the relationship using the link module.

  1. Create the Module, name it after what the table is e.g., Vendor,
  2. Create the model, Service and index.ts in the module folder
  3. Create the link in /links
  4. Create and Run migrations

to extend functionality make use of subscribers, overriding apis, hooks, etc

most are in the website docs

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

79393517

Date: 2025-01-28 10:59:08
Score: 4.5
Natty:
Report link

Screenshot of the result from the "ls" command. The second line is made, after the db3-file is copied back from the windows pc. It is easy to see, that the linebreak is different? How can this be?

Screenshot of ls-command

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Atlan Gonozal

79393512

Date: 2025-01-28 10:58:06
Score: 8.5 🚩
Natty: 4
Report link

I’m facing the same issue while using MS Graph to create a webinar (v1.0/solutions/virtualEvents/webinars), and I want to know if you managed to fix the problem.

Here’s my current setup:

Request Body:

{
"displayName": "The Impact of Tech on Our Lives",
"description": {
    "contentType": "text",
    "content": "Discusses how technology has changed the way we communicate."
},
"startDateTime": {
    "dateTime": "2024-03-30T10:00:00",
    "timeZone": "UTC"
},
"endDateTime": {
    "dateTime": "2024-03-30T17:00:00",
    "timeZone": "UTC"
},
"audience": "everyone"
}

Headers:

Error Response:

{
"error": {
    "code": "BadRequest",
    "message": "Bad Request",
    "innerError": {
        "date": "2025-01-28T10:31:56",
        "request-id": "...",
        "client-request-id": "..."
    }
}
}

Did you manage to resolve this issue using the virtual event webinar Graph APIs, or find another workaround?

Any advice would be appreciated!

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): I want to know
  • RegEx Blacklisted phrase (3): Did you manage to resolve this
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user29399644

79393511

Date: 2025-01-28 10:58:06
Score: 2
Natty:
Report link

if you are using the new version of expo, the sdk52, it updated to automatically use the expo-router as the default routing system. therefore, in you package.json it automatically added the property "main": "expo-router/entry". so, in order to avoid the expo-router falling back, you must remove this line form you package.json and then your react-navigation setup should work with no problem!

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