79411853

Date: 2025-02-04 13:29:47
Score: 2
Natty:
Report link

In Ubuntu 22.04 with VS Code 1.96.4, I had to kill all instances and re-launch the application to solve the problem.

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

79411845

Date: 2025-02-04 13:26:46
Score: 1.5
Natty:
Report link

You can try manual installation by download the repository as a ZIP file from GitHub, extract it, navigate to its location, and install it locally using pip install .

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

79411843

Date: 2025-02-04 13:25:46
Score: 3
Natty:
Report link

how to fix it POSTGRES_PASSWORD: <set to the key 'postgresql-password' in secret 'postgresql'> Optional: false

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): how to fix it
  • Low reputation (1):
Posted by: Manvir Sorout

79411842

Date: 2025-02-04 13:25:46
Score: 1
Natty:
Report link

Make sure you've installed Tesseract Engine as per documentation states in prerequisites.

Installation notes depending on your operating system can be found here: https://github.com/tesseract-ocr/tessdoc/blob/main/Installation.md

Lastly, check following command tesseract --version in your terminal. If not recognized, you might need to add the PATH to your system's environment variables.

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

79411824

Date: 2025-02-04 13:19:45
Score: 2
Natty:
Report link

If you are developing a Rails API only project, you probably aren't using Action Text.

If you are not using Action Text, you shouldn't have to run rails action_text:install and run migrations like Siyanda have said. The problem probably stems from the fact that you have the line require('rails/all') in your application.rb, which includes every Rails dependency including ActiveText. Instead you should only include the dependencies that you need and exclude ActiveText. This way you don't have to deal with all that unnecessary migration stuff.

This Stack Overflow post can be helpful: How to not require "rails/all"?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Atalay özmen

79411821

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

delete the .gradle file in android folder(u can do it manually,close every terminal and then delete it manually).now go to android folder again(cd android) and type this .\gradlew clean or gradlew.bat clean) if this gradlew.bat clean does not work then--- go to android studio ,copy the sdk path.now go to android folder again make a local.properties file add sdk.dir=your sdk path(that u got from android studio but with double slash i.e.\eg.c\users\user like this).now open enviornment variable(type env in search ) go to enviornment variables ,under system variables add variable name:ANDROID_HOME ,value:paste your sdk path(u can get it from android studio) and restart your terminal. now open your terminal, go to project directory->android and try again with this command .\gradlew bat clean. now go back to ur project directory->cd .. and type this npx react-native run-android. it took me some 15mins to build. now check ur emulator .u will find your projectapp in emulator.u can open it manually .just click once on it.it will show welcome message

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

79411813

Date: 2025-02-04 13:16:43
Score: 4
Natty: 5
Report link

Please check your WEB-INF/config I just took "WEB-INF/config" from working magnolia project and it help me to loose that annoying vaadin error.

Reasons:
  • Blacklisted phrase (1): help me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SonjaJan

79411784

Date: 2025-02-04 13:06:40
Score: 0.5
Natty:
Report link

The solution was to change this line in setup-jest.ts:

import 'jest-preset-angular/setup-jest';

to this solution (so please delete the line above:

import { setupZoneTestEnv } from 'jest-preset-angular/setup-env/zone';
setupZoneTestEnv();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Janos Vinceller

79411775

Date: 2025-02-04 13:02:40
Score: 3.5
Natty:
Report link

cahier de charge complet d'une application web de gestion des demmenagements

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

79411770

Date: 2025-02-04 13:00:39
Score: 0.5
Natty:
Report link

So I (and GPT) wrote a model binder that able to do it, but for one model (like [FromBody]). not for two or more fields.

example of usage:

[HttpPost]
 public IActionResult PostData([FormOrJson] ModelType model) {
  if (!ModelState.IsValid) {
    return BadRequest(ModelState);
  }
  // Process the model...

  return Ok(new { model });
}

https://gist.github.com/MosheL/bd9edf2b2db0f7eb0ae554e482f28e7c

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: Moshe L

79411766

Date: 2025-02-04 12:57:39
Score: 1.5
Natty:
Report link

I was looking for this for ages, this will save me a lot of time with my personal finances. Just following on from Scott Craners reply this worked perfect for me- =IFERROR(INDEX(CC_Match,MATCH(TRUE,ISNUMBER(SEARCH(CC_Name,E2)),0),0,1),"NOT FOUND")

E2 is the cell with the value you want to lookup CC_Match is a named range for the Cost Centers you want to do a text search against. This list can include wildcards in the text CC_Name is a named range next to CC_Match for the actually Cost Center code you want.

Note- You have to organise the CC_Match list in priority from the top down. I did this just by sorting on length of the match string.

For example if this list was reversed every Credit would match to General Credit- CC_Match...................CC_Name Credit from Fred.........Phils Wage Credit from Company xyz..Lisa Wage Credit*....................General Credit

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Filler text (0.5): ...................
  • Filler text (0): .........
  • Filler text (0): ....................
  • Low reputation (1):
Posted by: Philip Trickett

79411758

Date: 2025-02-04 12:55:37
Score: 4
Natty:
Report link

It was indeed a typo sorry for the waste of time.

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

79411757

Date: 2025-02-04 12:55:37
Score: 3.5
Natty:
Report link

ok, so stupid solution but after deleting it from the addin list and microstoft/temp folder and adding add-in again, looks like it works..

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

79411756

Date: 2025-02-04 12:55:37
Score: 4.5
Natty:
Report link

It works. It's great. I was looking for this decision. Thank you very much.

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

79411753

Date: 2025-02-04 12:54:37
Score: 3
Natty:
Report link

Attempt to pull a snapshot of system resources failed. Error: 'Cannot read properties of undefined (reading 'pullReport')'

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

79411744

Date: 2025-02-04 12:52:35
Score: 10 🚩
Natty: 5
Report link

Is there an option to make celery pick the tasks in round robin fashion among the queues? Say celery picks task T1a from Q1 and assigns it to worker W1. After this, I would like celery to pick task T2a from Q2 and assign to a worker. And then I would like T1b to be picked from Q1 and so on. Is this possible with celery?

i am facing the same issue now, please suggest if you get any solutions for this. I am open to other options to achieve the above.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): please suggest
  • RegEx Blacklisted phrase (1): i am facing the same issue now, please
  • No code block (0.5):
  • Me too answer (2.5): i am facing the same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there an
  • Low reputation (1):
Posted by: Eswar

79411740

Date: 2025-02-04 12:51:35
Score: 1
Natty:
Report link

I resolved this issue by removing Google reCAPTCHA and using the RecaptchaVerifier widget from the firebase_auth package. I placed the widget inside a container with position: absolute to ensure it appears on top of everything else. This approach worked perfectly for me.

Reasons:
  • Whitelisted phrase (-2): I resolved
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muhammad Nadeem

79411739

Date: 2025-02-04 12:50:34
Score: 1
Natty:
Report link

As Wongjn wrote, this is a reported bug. Supposedly, it was fixed in PR #15927, but looking at the PR, bug reports continued to appear in the new version even after it was closed.

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

79411731

Date: 2025-02-04 12:49:33
Score: 4.5
Natty:
Report link

The cause of this error seems not to be a wsl problem but instead a bug with the log4j lib version that you are using. You have the same error that is mentioned in this github post Upgrade your log4j version from 1.2.16 -> 1.2.17 should fix your problem.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same error
  • Low reputation (1):
Posted by: Arthur Pascal

79411728

Date: 2025-02-04 12:47:32
Score: 2.5
Natty:
Report link
CURRENT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: denbon05

79411719

Date: 2025-02-04 12:42:31
Score: 1.5
Natty:
Report link

After some reasearchs i found the issue, it's basically because atfter android 9 it need to have this format in the adb command:

adb shell dpm set-device-owner com.myGroup.myPackage/com.myGroup.myPackage.AdminReceiver

and not

adb shell dpm set-device-owner com.myGroup.myPackage/.AdminReceiver

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

79411716

Date: 2025-02-04 12:41:31
Score: 3.5
Natty:
Report link

Standard C does not support either. However, something quite similar can be implemented via macros.

If you would like to do function overloading and declare default values for arguments in C, Please take a look at the answer I wrote to another question: https://stackoverflow.com/a/79410651/437606

Reasons:
  • Blacklisted phrase (1): another question
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Gunwoo Gim

79411704

Date: 2025-02-04 12:37:30
Score: 3
Natty:
Report link

i was looking for the same issue and finally found out why:

  1. on simulator works because of ios:18.2, but my device has 17.x
  2. changed deployment target to 16.0.

live activity deployment

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

79411688

Date: 2025-02-04 12:32:28
Score: 8 🚩
Natty: 6
Report link

Same issue, it's said to be

Bad payload format -- invalid delta magic: 504b0304 Expected: 43724155

while I'm using SystemUpdaterSample, is there any way to resolve?

Reasons:
  • Blacklisted phrase (1): is there any
  • RegEx Blacklisted phrase (1.5): resolve?
  • RegEx Blacklisted phrase (1): Same issue
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Tran Khoa

79411679

Date: 2025-02-04 12:28:27
Score: 1
Natty:
Report link

Use pandas to read the json file and you can chunksize param in the pd.read_json(). This was you are only loading the few records (in chunks) into memory.

import pandas as pd
    
# Read the JSON file in chunks
for chunk in pd.read_json(input_file, chunksize=chunk_size, lines=True):
    chunk_results = await process_chunk(chunk)

enter image description here

Link to the doc: read_json doc

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

79411672

Date: 2025-02-04 12:27:26
Score: 2
Natty:
Report link

Starting with Windows8 it is possible to log all arguments to all processes, so you can not know for certain that no history exists.

https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/manage/component-updates/command-line-process-auditing

This is disabled by default. Decide for yourself if this is a threat.

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

79411663

Date: 2025-02-04 12:23:25
Score: 2
Natty:
Report link

First a few remarks that can help the analysis in general:

From the two curves I would say that you should consider:

Reasons:
  • Blacklisted phrase (1): what could be
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: samje

79411659

Date: 2025-02-04 12:22:25
Score: 1
Natty:
Report link

The Unix mode for the uninstaller is defined here:

enter image description here

By default, it is set to 755.

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

79411652

Date: 2025-02-04 12:17:23
Score: 4
Natty:
Report link

Take a look at this:

SQL Injection Fundamentals

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

79411646

Date: 2025-02-04 12:15:23
Score: 1.5
Natty:
Report link

This helped me in my react-leaflet project:

<GeoJSON
   style={{pmIgnore: true}}
   data={track}
   pane={TracksLayerName}
/>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: axjrl

79411641

Date: 2025-02-04 12:12:22
Score: 0.5
Natty:
Report link

This:

<div style="display: table; width: 100%">
<form>
<div style="display: table-row; width: 100%">
</div>
</form>
</div>

will NOT expand the 'table' to 100%. Because the form tag is in the way. Put the form tag outside, encompassing the 'table' i o t make it expand to 100%.

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

79411639

Date: 2025-02-04 12:12:22
Score: 2.5
Natty:
Report link

Use your phone directly to set up your billing account if you use app bank to validate your payments. I got the same issue and it’s how it solved it

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

79411635

Date: 2025-02-04 12:11:22
Score: 3
Natty:
Report link

NordVPN seems to be the issue so must have it's own firewall built in that's recently started blocking the messages.

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

79411610

Date: 2025-02-04 12:04:20
Score: 3
Natty:
Report link

you can enable support for null objects in the MutableStateFlow type and initialize it to null variable:

val status: MutableStateFlow<Status?> = MutableStateFlow(null)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Андрей Карагодин

79411608

Date: 2025-02-04 12:03:20
Score: 1.5
Natty:
Report link

I solved this problem, by adding 'id' to each record.

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Michał

79411596

Date: 2025-02-04 11:59:18
Score: 6 🚩
Natty: 5
Report link

I am also not able to find the testing keys, and when I am trying to create an order, it expects the genuine details hence I am getting errors and not able to test the APIs. If you have figured it out, help me to find it out.

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1.5): m getting error
  • Blacklisted phrase (1): I am trying to
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ankit Mishra

79411594

Date: 2025-02-04 11:58:18
Score: 3.5
Natty:
Report link

Remember to hit on Publish on Top-right corner under App Privacy sectionApp privacy

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

79411593

Date: 2025-02-04 11:58:18
Score: 3.5
Natty:
Report link

Had the same issue. Try to change the cammand to "medusa migrations run"

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

79411588

Date: 2025-02-04 11:55:16
Score: 5
Natty:
Report link

Designed for aspiring data professionals, this course provides a robust foundation in data analysis, machine learning, and statistical modeling. Gain hands-on experience with industry-standard tools and techniques, preparing you for a successful career in this high-demand field

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

79411574

Date: 2025-02-04 11:51:15
Score: 4.5
Natty:
Report link

The solution was to add the correct missing namespaces enter image description here

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

79411569

Date: 2025-02-04 11:50:13
Score: 7.5 🚩
Natty: 4
Report link

I am having same problem with A7672SA there is no AT command in datasheet for setting up agps server there is only one AT command that returns

AT+CAGPS OK

+AGPS: success. but still it is not helping in faster 3dfixing. Is there any extra steps we need to follow to work with AGPS in simcomA7672SA?

Reasons:
  • Blacklisted phrase (1): Is there any
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Suvendu Sahu

79411567

Date: 2025-02-04 11:49:13
Score: 2.5
Natty:
Report link

The best SMTP servers you should consider are: SMTPget Sendinblue Mailgun iDealSMTP SMTPmart

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

79411562

Date: 2025-02-04 11:48:13
Score: 0.5
Natty:
Report link
egrep -ho '@\w+' "$@" | sort -u

egrep is the same as grep -E, meaning the pattern is interpreted as an extended regular expression. -o makes grep print only the text that matches the pattern, not the whole line. -h makes grep not print the file name. The pattern is any word that begins with @. The "$@" only makes sense if you put this rune into a file, where it will pass any parameters to egrep; otherwise you can just supply file names directly. sort -u sorts the output asciibetically and suppresses repetition.

How to find all the feature files in your suite is less trivial. find -name \*.feature might work for you. You can then find -name \*.feature -print0 | xargs -0r egrep -ho '@\w+' | sort -u to get all the tags in your suite.

One caveat about this: If a word starting with @ is part of a step or table, it will also be printed. You can avoid this by excluding lines that don't have @ as their first non-blank character, like so: egrep '^\s*@' | …

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): is the
  • Low reputation (1):
Posted by: Antonymous Coward

79411549

Date: 2025-02-04 11:44:11
Score: 2
Natty:
Report link

I got an answer for this in the Aspire Github repo. If no connecion string is necessary, simpler if the IResourceWithServiceDiscovery is implemented instead of the IResourceWithConnectionString. (LabseResource class in my case) IResourceWithServiceDiscovery also has an implementation of the WithReference extension method.

Unfortunatelly no mention about IResourceWithServiceDiscovery in the hosting integration example in the docs, so it can be a bit misleading.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Miklós Pathy

79411548

Date: 2025-02-04 11:43:11
Score: 2.5
Natty:
Report link

I hope this gives you some more ideas...

I had a similar problem and I ended up with a script (partially generated by Claude because I don't want to code logging etc) that builds optimised images.

It uses sharp as the image optimiser.

On build, the NextJS builder runs and build the application and create the static generated site in out folder, then the image optimiser kicks in and creates optimised images and puts them in out folder. The NextJS config has a custom loader which is used by Next to create the paths on the build time.

The repo is here. Please let me know you thoughts on it...

https://github.com/SaadAhmad123/arvo-sample/blob/main/apps/analyzer/scripts/ssg-image-optimizer.js

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user8224814

79411541

Date: 2025-02-04 11:42:11
Score: 2
Natty:
Report link

This happens or used to happen a lot on older versions of docker.

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

79411539

Date: 2025-02-04 11:41:11
Score: 3
Natty:
Report link

Most probably your form description did not contain includeRelations property. Check the Description API: https://developer.hubleto.com/advanced-development/description-api/form

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

79411532

Date: 2025-02-04 11:39:10
Score: 1.5
Natty:
Report link

I had a similar task so i decided to make a simple addon for this. It is based on code that was linked above (https://discourse.osmc.tv/t/refresh-picture-library/4867/13), but also it can use Kodi VFS paths (like SMB or NFS), it restarts slideshow from last shown image (if possible), it can be configured to automatically launch on Kodi start or can be launched manually, and sub-folders are also supported (recursive slideshow). Download here: https://github.com/antonsoroko/service.autoslideshow/releases

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

79411529

Date: 2025-02-04 11:39:10
Score: 3
Natty:
Report link

I solved it by follow update step-by-step at SQLServerBuilds

Thanks to @Thom A

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-2): I solved
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Thom
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Quán.Lê.Văn

79411522

Date: 2025-02-04 11:34:09
Score: 0.5
Natty:
Report link

In order to include all the dependencies (dll,jsons,xml) or multiple files present inside a directory , you need to take help of heat.exe - a wix tool which harvests (WiX terminology of copying ) files from source to destination directory . A typical heat command may look like below:

heat.exe dir "C:\DirectoryneedstobeHarvested" -ke -cg WholeTree -ag -scom -sreg -dr INSTALLFOLDER -srd -out "C:\SomeFilderPath\WholeTree.wxs" fc "C:\SomeFilderPath\WholeTree.wxs" "$(ProjectDir)WholeTree.wxs" >NUL

This command will generate a file called WholeTree.wxs which in turn will get compiled when you refer this under a Feature section like below

<ComponentGroupRef Id="WholeTree" />

Refer this link for WiX documentation of heat

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

79411497

Date: 2025-02-04 11:27:07
Score: 3.5
Natty:
Report link

My problem was that the descending font awesome icon was completely covering the ascending icon. I could see this clearly by adding the fa-border class and setting the line-height to 1.

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Steve Maring

79411493

Date: 2025-02-04 11:26:06
Score: 3
Natty:
Report link

Using Python for financial analysis and modeling with CSV data sheets can really make the process easier, and it makes data analysis more efficient and automated.

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

79411492

Date: 2025-02-04 11:26:06
Score: 1.5
Natty:
Report link

Run the following command to view the error while processing you dag files .

airflow dags list-import-errors

enter image description here

Make sure you have set the correct path set for DAGs folder

airflow  config get-value core dags_folder
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Shahbaz Aamir

79411489

Date: 2025-02-04 11:23:06
Score: 0.5
Natty:
Report link

Regarding your UPDATE 3

the error message is clear that jwt package is not installed. say if you already have it in the requirements.txt

then the issue is the github yamp pipeline. the build step activated virtual env and installed packages into the virtual env. however, your zip step excludes these venv/*. this is the reason the python packages do not exist when you invoke the http trigger.

     - name: Create and start virtual environment
        run: |
          python -m venv venv
          source venv/bin/activate

      - name: Install dependencies
        run: pip install -r requirements.txt

      # Optional: Add step to run tests here

      - name: Zip artifact for deployment
        run: zip -r release.zip function_app.py host.json -x "*.txt venv/*" ".git/*" ".github/* *.md .gitignore local.*"

Deploy python function app to Azure via CMD

there are a few ways to deploy, we can use this method to test it out first:

enter image description here enter image description here enter image description here

once completed, go to the deployment tab under function app to see the final status to be sure:

enter image description here

it might take 30 seconds for the function to show up in the overview page

enter image description here

Deploy python function app to Azure via GitHub

once working, you can refer to this guide to setup github action to deploy via pipeline.

https://learn.microsoft.com/en-us/azure/azure-functions/functions-how-to-github-actions?tabs=linux%2Cpython&pivots=method-manual

Reasons:
  • Blacklisted phrase (1): this guide
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
Posted by: qkfang

79411481

Date: 2025-02-04 11:20:05
Score: 2.5
Natty:
Report link

Yep! Even after disabling the bot and removing the Chat API, it might still show up as "Disabled." To fully remove it, try deleting the service account in Google Cloud Console > IAM & Admin > Service Accounts. That should do the trick!

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

79411480

Date: 2025-02-04 11:20:05
Score: 3.5
Natty:
Report link

Your JDK version may be not compatible with Scala 2.11.1, please check it.

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

79411470

Date: 2025-02-04 11:16:04
Score: 2
Natty:
Report link

What I had to do was going to the librairy files (cascadeselect.d.ts) and change this : optionGroupChildren: string | undefined; to this : optionGroupChildren: any;. And now it works as expected..

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What I
  • Low reputation (0.5):
Posted by: as0d

79411467

Date: 2025-02-04 11:16:04
Score: 0.5
Natty:
Report link

You probably have an /api/user or /api/me endpoint. Why not do it there instead of creating a dummy endpoint?

Another option is to use axios interceptors: https://axios-http.com/docs/interceptors

axios.interceptors.response.use(
  (response) => response,
  (error) => {
    if (error.response.status === 401) {
      dispatch(logoutUser()) // probably needs a debounce
    }
    return Promise.reject(error)
  })
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: shotor

79411464

Date: 2025-02-04 11:15:03
Score: 3.5
Natty:
Report link

If you change your own DNS Network This error will happen. enter image description here

i Deleted DNS and problem Fixed.

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

79411458

Date: 2025-02-04 11:14:03
Score: 1.5
Natty:
Report link

I'm not an expert on financial datasets specifically, but when looking for real world data my go-to destinations are usually (apart from Kaggle) government websites :

  1. US Government Database Catalog
  2. UK Government Database Catalog

There's also others that I frequently use:

  1. OpenML.org
  2. Awesome Public Datasets
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: globglogabgalab

79411457

Date: 2025-02-04 11:13:03
Score: 3
Natty:
Report link

For me, setting CMAKE_RUNTIME_OUTPUT_DIRECTORY worked. I have no idea why, looks like a bug.

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

79411450

Date: 2025-02-04 11:11:02
Score: 2.5
Natty:
Report link

Python3.12 doesn't come with distutils, so you'd have to install it with pip install setuptools.

https://github.com/PaloAltoNetworks/pan-os-python/issues/529#issuecomment-2394050583

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

79411442

Date: 2025-02-04 11:09:02
Score: 1
Natty:
Report link

I'd say that this is a bit bizarre. I don't know all the ins and outs of ASAN and I'm not able to pick out what exactly its seeing in what you sent but I would say that if it's a compiled executable done in pure rust, by cargo. there shouldn't be anything to worry about.

Rustc is very aware of modules and crate boundaries (crates compiled to intermediate rlib files instead of native lib, as you mentioned) and mangles all non-externed symbols. Outside a dramatic compiler bug, with the way the compiler works, I don't see how there could be any overlaps or symbol mix-ups if that's what it's detecting.

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

79411441

Date: 2025-02-04 11:08:02
Score: 3
Natty:
Report link

To solve this problem, all you need to do is to install flutter in other partition than the C:, for example : D:\flutter.

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

79411432

Date: 2025-02-04 11:04:01
Score: 1
Natty:
Report link

You have to wrap AlertDialog inside the SizedBox with your prefered width and height.

return Sizedbox(
 width: 200, // give width
 height: 200, // give height
 child: AlertDialog(
 // your code
 ),
);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sireen Ibnu Kabeer

79411415

Date: 2025-02-04 10:58:59
Score: 2.5
Natty:
Report link

brew services start [email protected].
if you have mysql 8.0 version

brew services start mysql

if you don't have any specific version

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

79411414

Date: 2025-02-04 10:58:59
Score: 1
Natty:
Report link

When I go to my developer account I can't see the Xcode Managed Provisioning Profile but I'm sure that it was created from me by my Xcode the last year.

As you can see from this linkApple Docs so it's correct that you don't see profiles that are managed by Xcode.

I've rebuilt the app but Xcode keep signing it with the same Provisioning Profile with which it signed the app the last year.

The problem is that Xcode does not recreate a new provisioning profile until it has one in a sort of "cache", to know where this cache is, you can drag this icon

Xcode Signing & Capabilities

into a program like VSCode and it will show the path. (That menu is under your app target -> "Signing & Capabilities")

It will probably be something like: /Users/<your_name>/Library/MobileDevice/Provisioning Profiles, inside that folder you will see all your provisioning profile.

Now:

  1. close Xcode
  2. delete (or move to another folder) the old Provisioning Profiles that you no longer need
  3. open Xcode again

Xcode now should regenerate the Provisioning Profiles with a 1 year validity.

TL;DR: close Xcode, go to /Users/<your_name>/Library/MobileDevice/Provisioning Profiles delete the old Provisioning Profile, reopen Xcode.

Reasons:
  • Blacklisted phrase (1): this link
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (0.5):
Posted by: Federico Arvat

79411408

Date: 2025-02-04 10:57:59
Score: 0.5
Natty:
Report link

I had the same issue where my API worked locally but returned 405 Method Not Allowed after deploying to Vercel.

For me, the problem was Vercel Authentication (https://vercel.com/docs/security/deployment-protection) blocking unauthenticated requests.

Fix: Go to your project in Vercel Dashboard. Navigate to Settings → General. Disable "Vercel Authentication". After disabling this setting, my API started working again!

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

79411407

Date: 2025-02-04 10:57:59
Score: 3
Natty:
Report link

button.SendKeys(Keys.Enter); worked for me.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Garima

79411406

Date: 2025-02-04 10:57:59
Score: 1.5
Natty:
Report link

I suppose if your Excel opens the data the case isn't with encoding. You can get its's encoding importing 'locale' and asking locale.getpreferredencoding(). Look at header row while opening data in text redactor to find out if any field has escaped characters like '\t' and also look at a csv delimiter (the default in read_csv is ',', your may have another)

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

79411405

Date: 2025-02-04 10:56:58
Score: 1
Natty:
Report link

On your tomcat directory webapps\manager\META-INF, Remove the section Valve on context.xml files.

<!--Valve className="org.apache.catalina.valves.RemoteAddrValve"
         allow="127\.\d+\.\d+\.\d+|::1|0:0:0:0:0:0:0:1" /-->
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tony Macrez

79411396

Date: 2025-02-04 10:53:58
Score: 3.5
Natty:
Report link

With KobWeb you can also develop web applications.

https://kobweb.varabyte.com/

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

79411388

Date: 2025-02-04 10:50:57
Score: 2.5
Natty:
Report link

for me i just change the file name from router.ts to route.ts and then it worked.

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

79411377

Date: 2025-02-04 10:47:56
Score: 2.5
Natty:
Report link

r = Redis

r.hset(hash_key, field, value)

r.hexpire(hash_key, ttl, field)

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Harshil shrivastava

79411360

Date: 2025-02-04 10:39:54
Score: 6.5
Natty: 8
Report link

Thank YOU ARASH!! You saved my butt.

Reasons:
  • Blacklisted phrase (0.5): Thank YOU
  • Blacklisted phrase (2): You saved my
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Firass Sjönoce

79411358

Date: 2025-02-04 10:39:54
Score: 3
Natty:
Report link

The #[\ReturnTypeWillChange] attribute and the error message both belong to PHP 8, so I guess that the server is upgraded.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: John O' Mill

79411345

Date: 2025-02-04 10:35:52
Score: 2.5
Natty:
Report link

Wirelo is the go-to source for retailers looking for carrier-approved wireless products. Enjoy a hassle-free buying experience with great prices and trusted quality.Visit us: Best B2B Marketplace for Wireless Vendors

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

79411344

Date: 2025-02-04 10:35:52
Score: 0.5
Natty:
Report link

I'll give you several ideas to investigate. Hopefully one of them will lead you to the problem.


Are the three nodes really configured to use the same database?

Go to each different pod, get what configuration options each one is really using, and compare ALL the configuration files. Maybe they aren't really using the same database:

$ ejabberdctl dump_config /tmp/aaa.yml
$ cat /tmp/aaa.yml 

Is there any difference between the node that shows the rooms in get_user_rooms ?


Do the nodes correctly use the same database?

Register an account in the database, then check in the three nodes that they really get that account:

$ ejabberdctl registered_users localhost
admin

Maybe mod_muc and get_user_rooms doesn't behave as you expect

An account is registered in the cluster, and the user can login using those credentials in any node of the cluster. When the client logins to that account in a node, the session exists only in that node.

Similarly, the configuration of the rooms is stored in the cluster, and a room can be created in any node, and will be accessible transparently from all the other nodes.

The muc room in fact is alive in one specific node, and the other nodes will just point to that room in that node:

Rooms are distributed at creation time on all available MUC module instances. The multi-user chat module is clustered but the rooms themselves are not clustered nor fault-tolerant: if the node managing a set of rooms goes down, the rooms disappear and they will be recreated on an available node on first connection attempt.

So, maybe the ejabberd nodes connect correctly to the same database, but get_user_rooms doesn't show correct values, or the problem is only in the MUC service?

Reasons:
  • Blacklisted phrase (1): Is there any
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Badlop

79411340

Date: 2025-02-04 10:34:52
Score: 1
Natty:
Report link

enter image description here

If this is the wanted result you need to update the content of <mat-option> as it follows:

<mat-form-field>
  <mat-label>Toppings</mat-label>
  <mat-select [formControl]="toppings" multiple>
    @for (topping of toppingList; track topping) {
    <mat-option [value]="topping">
      <div class="row">
        {{topping}} &nbsp;
        <button mat-button>Only</button>
      </div>
    </mat-option>
    }
  </mat-select>
</mat-form-field>

<style>
  .row {
    display: flex;
    flex-direction: row;
  }
</style>

For more infos on flex you could read this extensive guide and well written:
https://css-tricks.com/snippets/css/a-guide-to-flexbox/

P.S.

Of course using &nbsp; is not elegant nor the best way to space stuff, you can go forward and add padding etc...

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

79411337

Date: 2025-02-04 10:33:52
Score: 0.5
Natty:
Report link

Lets Debug this step by step:

  1. int i = 0; → i is initialized to 0. so i contains the value 0

  2. ++i → Pre-increment happens, so nows i becomes 1.

  3. i + ++i → Substituting values:

  4. i is 0 (original value before pre-increment).

  5. ++i makes i = 1, so now ++i returns 1.

  6. i + ++i = 0 + 1 = 1.

  7. i = 1 (final value).

  8. System.out.println(i); prints 1.

Your Next question Does the increment change the memory address?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Amit Kadlag

79411334

Date: 2025-02-04 10:32:52
Score: 0.5
Natty:
Report link

Are you using any XSL file for transformation which does the job of excluding the particular file from including? Wix should harvest all the files present inside a directory , It does not harvest a specific file . Your heat command will help to diagnosie .

Alternatively you can write a File copy command in WiX for the particular file to copy from the source to destination. Similar to below :

<Component Id="cmp1F85" Directory="INSTALLFOLDER" Guid="*">
            <File Id="filC6A7" KeyPath="yes" Source="SourceDir\xyz.json" />
        </Component>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: madhusudhan samantray

79411327

Date: 2025-02-04 10:30:51
Score: 2.5
Natty:
Report link

I followed the instructions of SelArom Dot Net Tutorial - Customizing the Model with Regions and Fields and found out that I need to use new region to add fields or specify custom region attribute above custom field.

public class HomePage : Page<HomePage>
{
    [Region(Title = "General", Icon = "fas fa-pen")]
    public GeneralHomePageRegion General { get; set; }

}

public class GeneralHomePageRegion
{
    [Field(Title = "Caption", Description = "Max 50 characters")]
    public StringField Title { get; set; }
}
Reasons:
  • Blacklisted phrase (0.5): I need
  • Probably link only (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ermo

79411322

Date: 2025-02-04 10:29:51
Score: 2.5
Natty:
Report link

Trying to add a custom font in xcode 16.2 faling to set in custom font from the storyboard and adding the files is working and answers for it will be

Poppins: ["Poppins-Regular", "Poppins-Thin", "Poppins-Light", "Poppins-Medium", "Poppins-SemiBold", "Poppins-Bold", "Poppins-ExtraBold"]

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

79411309

Date: 2025-02-04 10:26:50
Score: 1
Natty:
Report link

Run into same issue.

Tried to use: 1. Remove aria-hidden attribute by adding next to useEffect block:

   const exampleSlideVar = document.querySelectorAll('.slick-slide');
   exampleSlideVar.forEach((slide) => {
        slide.setAttribute('aria-hidden', 'false');
      });

but this way I`ve lost my buttons control;

2. Adding tabindex={-1} attribute to buttons

Need help too! Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ivan Vasilevich

79411308

Date: 2025-02-04 10:25:50
Score: 2.5
Natty:
Report link

According to the QtTranslation documentation this is possible as follows:

//% "%1 my translatable suffix!"
QString text = qtTrId("qtn_foo_bar", var);
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gongotar

79411306

Date: 2025-02-04 10:25:50
Score: 1
Natty:
Report link
ul {
  list-style-type: none;
  padding-left: 10px;
  display: table;
}
ul li{
    list-style: none;
    display: table-row;
}
.product-details-description ul li:before {    
    font-family: 'FontAwesome';
    content: '\f06c';
    margin:0 5px 0 10px;
    color: #34eb64;
    display: table-cell;
    text-align: right;
    padding-right: .3em;
}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: John

79411302

Date: 2025-02-04 10:24:49
Score: 2
Natty:
Report link

The solution was to set the whole chartData another time after setting the new values for the annotation. I don't know why that is working and why @naren muralis example doesn't but it works now for me.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @naren
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Sithys

79411290

Date: 2025-02-04 10:20:48
Score: 1.5
Natty:
Report link

I found the answer here: https://github.com/microsoft/TypeScript/issues/36444#issuecomment-578572999

I have to convert my class to type in order to achieve the solution. Something like this:

type PopulationDto<E> = {
    [K in keyof E]: {
        path: keyof E;
        population?: PopulationDto<
            E[K] extends Array<any>
                ? E[K][number]
                : E[K] extends object
                  ? E[K]
                  : any
        >[];
    }
}[keyof E];
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Tan Nguyen

79411266

Date: 2025-02-04 10:11:46
Score: 1
Natty:
Report link

You can add a prompt that enforces the model to prioritize earlier answers to ensure consistency. For example, you may ask the model to validate if its new answer conflicts with its prior knowledge, and only change the answer if its new input is significantly more reliable.

A possible prompt template like “Are you confident if this new answer is correct based on your knowledge?”.

However, when generating responses, you can adjust the model’s temperature and sampling strategies. A higher temperature often leads to more varied outputs, while a lower temperature results in more deterministic answers. By controlling these parameters, you can increase the model's confidence.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Md Rayhanul Masud Saom

79411265

Date: 2025-02-04 10:11:46
Score: 3
Natty:
Report link

} print("Hello, World!") # This line of code prints the text "Hello, World!" to the console.

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

79411257

Date: 2025-02-04 10:08:45
Score: 2
Natty:
Report link

From what I checked there is no definitive solution to this, but you can try upgrading pip or installing python-dotenv or passing --no-build-isolation when installing. (Solutions taken from https://github.com/pypa/packaging-problems/issues/721 and https://github.com/numpy/numpy/issues/24377)

Also I think https://github.com/nuncjo/cython-installation-windows might be a better guide for you to go through.

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

79411251

Date: 2025-02-04 10:06:44
Score: 5
Natty: 4.5
Report link

That's awesome GBWDev! Is there any way to make this part a bit more flexible (generic)?

if ($this.text().trim() == "Step three")

Getting(addressing) "Step three" as the last element or last dt child of the dl?

Reasons:
  • Blacklisted phrase (1): Is there any
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Edward Hickstons

79411247

Date: 2025-02-04 10:05:43
Score: 0.5
Natty:
Report link

To fix the black background in SwiftUI List, use:

List {
    // Your list content here
}
.listStyle(PlainListStyle())
.background(Color.white)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Sabahat Hussain Qureshi

79411245

Date: 2025-02-04 10:05:43
Score: 0.5
Natty:
Report link

Are you trying to do this:

text = 'example'

result = [
    text[i:len(text)-i] 
    for i in range( (len(text)+1)//2 )
]

print(result)

result:

['example', 'xampl', 'amp', 'm'] 

and if text = 'example1':

['example1', 'xample', 'ampl', 'mp']
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: A_____ A_______

79411235

Date: 2025-02-04 10:02:43
Score: 2
Natty:
Report link

Thanks all for your input. I found a solution. I create the SmallScreenForm and then I iterate through the controls in the mainform and do a Find on the controls in the SmallScreenForm being careful to check for child controls. I then copy the width, height, location and font settings from SmallScreenForm to the mainForm controls. Those are the only attributes that were change and hey presto, it works. After all have been set I dispose of the SmallScreenForm.

Probably not the best way to do it, but this is a single application system running my software only. At least now I can support some of the more popular small screens for those who cannot or won't purchase a PC with FULLHD display.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dave McLaughlin

79411230

Date: 2025-02-04 09:59:42
Score: 3.5
Natty:
Report link

In each directory in the app directory of Expo SDK 52, i now have a file _layout.tsx in each directory with te following content:

import { Stack } from 'expo-router';
import { useEffect } from 'react';

export default function RootLayout() {
  const [loaded] = useFonts({
    SpaceMono: require('../assets/fonts/Urbanist Regular.ttf'),
    //SpaceMono: require('../assets/fonts/SpaceMono-Regular.ttf'),
  });

  return (
   
      <Stack>
        <Stack.Screen name="(tabs)" options={{ headerShown: false }} />       
        <Stack.Screen name="add_store_product" />
        <Stack.Screen name="customer_details" />
        <Stack.Screen name="customer" />
        <Stack.Screen name="store_product" />       
      </Stack>
    
  );
}


Those files in the stack are in the same directory of the _layout.tsx file. So I expect the intellisense to list those files for me whenever I use router.push() but they are not listed and besides, when I make changes to file names or even directory(rename a file or directory) inside app directory, the changes to the filenames or directories are not reflected in the intellisense.

What could be the error? Could it be Expo or Npm caching or whatever?

Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): What could be
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Raul Hernandez

79411222

Date: 2025-02-04 09:55:42
Score: 1
Natty:
Report link

I have set FirebaseInAppMessagingAutomaticDataCollectionEnabled to true in my Info.plist and it worked for me

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

79411219

Date: 2025-02-04 09:53:41
Score: 1
Natty:
Report link

Using only shape is not enough to prevent the title from moving, both shape and collapsedShape must be provided.

ExpansionTile(
    shape: LinearBorder.none,
    collapsedShape: LinearBorder.none,
    ...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user18811194

79411218

Date: 2025-02-04 09:53:41
Score: 1.5
Natty:
Report link

i just update the jdk version to 17

sudo apt update sudo apt install openjdk-17-jdk -y

And verify that 11 jdk verison is installed

java -version

And if you have multiple Java versions, set Java 17 as the default using:

sudo update-alternatives --config java

And restarted jenkins

sudo systemctl restart jenkins

my issue got solved

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

79411207

Date: 2025-02-04 09:48:40
Score: 2.5
Natty:
Report link

I was not expecting that I could find here one of the most interesting reads I ever had regarding temporal blocking. Thanks for that. It was a very educational and pleasant read! I could add my thesis here in case of further interest:

https://spiral.imperial.ac.uk/entities/publication/b1f50f8c-7a29-4521-b8eb-e5c2d5949a20

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: George Bisbas