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

79411204

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

I got this working. The configuration was correct but the openid tab is not the right place to login .Instead in the signin tab an options comes to login via OAuth Server(what ever the name of your OAuth server ).Below 2 properties are not required in order to login via oAuth/OpenID connect.

ENABLE_OPENID_SIGNIN = false ENABLE_OPENID_SIGNUP = false

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

79411190

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

Offered solutions could be better quality. There are a number of unsolved issues with the given answers:

  1. Various special characters in bash have to be escaped.

  2. Grep searches for a regex which has to be escaped.

  3. If commands are put into other commands, that leads to more things being escaped.

All three combined when searching code is a literal nightmare to figure out: the user should have an input for what to search for that does not require any escaping.

The following should be a big improvement:

# Note: Change search string below here. 
nCores=$(nproc --all)
read -r -d '' sSearch <<'EOF'
echo $locale["timezone"]." ".$locale['offset'].PHP_EOL;
EOF
find -print0 \(  -type f \) -and \( -not \( -type l \) \) -and \( -not \( -path "./proc/*" -o -path "./sys/*" -o -path "./tmp/*"  -o -path "./dev/*" \) \) | xargs -P $nCores -0 grep -Fs "$sSearch" | tee /home/npr/results.txt &

If you do not want to suppress grep errors, use this:

# Note: Change search string below here. 
nCores=$(nproc --all)
read -r -d '' sSearch <<'EOF'
echo $locale["timezone"]." ".$locale['offset'].PHP_EOL;
EOF
find -print0 \(  -type f \) -and \( -not \( -type l \) \) -and \( -not \( -path "./proc/*" -o -path "./sys/*" -o -path "./tmp/*"  -o -path "./dev/*" \) \) | xargs -P $nCores -0 grep -F "$sSearch" | tee /home/npr/results.txt &

Change EOF to any other A-Za-z variable if it's desired to search for the literal text EOF.

With this, I reduced a day-long search that had thousands of errors resulting from several of the top answers here into an easy sub 1-minute command.


Reference:

Also see these answers:

https://unix.stackexchange.com/questions/394983/nested-quotes-nightmare-sending-an-e-mail-from-a-remote-host

running bash pipe commands in background with & ampersand

How do I exclude a directory when using `find`? (most answers were wrong and I had to fix it for modern find).

https://unix.stackexchange.com/questions/172481/how-to-quote-arguments-with-xargs

https://unix.stackexchange.com/questions/538631/multi-threaded-find-exec

Reasons:
  • Blacklisted phrase (1): How do I
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: npr_se

79411187

Date: 2025-02-04 09:41:38
Score: 2.5
Natty:
Report link

What is PDF

PDF is not a structured language, but instead a display-oriented format. In fact, it is even better described as a rendering engine programming language.

To render the three words "The lazy fox", the PDF-generating software can choose to instruct either:

How you could deal with it

Ensure a formal input

Thus the ability to extract contents in a structured way from your PDF can vary greatly, depending on what produced the PDF.

Your first mission is to ensure you only have 1 stable source of PDF.
Do not expect to create a general-use "any PDF containing tables-to-JSON".

OK, let's say that you're OK with it, you just have to get the juice of that specific PDF, and once done, you'll trash the whole project never to work on it anymore (no way to "Manu, the engine you gave us in 2025 doesn't work anymore on the 2027 version of the PDF, can you repair it please?").

Determine the firepower needed

Your best bet then will be to try tools starting from the simplests.

Level 1

First try PDF-to-text extractors (like pdf-parse; but please give an excerpt of its output!),
but don't count on them to output a pretty table;
instead try to find a pattern in the output:
if your output looks like:

col1
col2
col3
col1
col2
col3
pagenumber
col1
col2
col3

then you're good to go with some loops, parsing, detection and steering.

Be warned that you may have some manual iterations to do,
for example if the table's data is hardly distinguishable from the page numbers or headers or footers,
or if the table contains multi-line cells:

col1
col2
second line of col2 that you could mistake for a col3
col3

Then this would be a cycle of "parse PDF to a .txt -> regex to JSON -> verify consistence -> if fail then edit the .txt -> regex to JSON -> verify -> […]".

This would be the most efficient solution,
depending on the kind of guts of your PDF of course.

Level 2

Level 2 would be to parse the PDF instructions (pdfjs-dist may be good at it) to detect the "pen moves" between text tokens, and then mentally place it on a map, knowing that buckets at the same ordinate with subsequent abscissas are adjacent words, or cells.

But I'm not sure it's worth the effort, and then you could go to…

Level 3

In case you need a fully automated workflow that level 1 can't provide (from your specific PDF),
then you could use pdfjs-dist to render the PDF, pushing the image to table-aware OCR software that would output something more suitable to the "regex to JSON" last step of Level 1.

Reasons:
  • RegEx Blacklisted phrase (2.5): please give
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What is
  • Low reputation (0.5):
Posted by: Guillaume Outters

79411184

Date: 2025-02-04 09:41:38
Score: 2
Natty:
Report link

What worked for me was placing the myPreChatDelegate earlier in the class since its reference is 'weak'. If you put it on the class variables, it stays alive to listen to the delegate successfully.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: devDream

79411177

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

.mat-mdc-progress-bar { --mdc-linear-progress-active-indicator-color: green; //progress bar color --mdc-linear-progress-track-color: black; // background color }

This is the solution i found for a quick and dirty way for changing it via css.

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

79411174

Date: 2025-02-04 09:35:36
Score: 6 🚩
Natty: 6
Report link

This Library is deprecated can you suggest how to do this in native three js

Reasons:
  • RegEx Blacklisted phrase (2.5): can you suggest how
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jasmee sidhu

79411165

Date: 2025-02-04 09:32:35
Score: 2.5
Natty:
Report link

The first thing to check is off course if the file exists in the web root and if the file permissions allow the web server user to access it. If that is the case, there also might be some URL rewriting going on that messes things up.

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

79411163

Date: 2025-02-04 09:32:34
Score: 5
Natty: 4.5
Report link

@inject IJSRuntime JS worked for me

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (2):
  • No code block (0.5):
  • User mentioned (1): @inject
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: codearmalik

79411162

Date: 2025-02-04 09:31:33
Score: 4
Natty: 4
Report link

I'm late to this party I know, but what about kill -STOP pid, on the screensaver to disable, and kill -CONT pid to resume?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
Posted by: xpusostomos

79411159

Date: 2025-02-04 09:30:33
Score: 0.5
Natty:
Report link

You'll need to create a _layout.tsx file inside each subdirectory. Inside this _layout.tsx file, you'll need to define the structure for the navigation:

...

<Stack>
  <Stack.Screen name="screen1" />
  <Stack.Screen name="screen2" />
  ...
</Stack>

...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Chibuokem Onyekwelu

79411152

Date: 2025-02-04 09:26:32
Score: 1
Natty:
Report link
dessertHeaders: [
          { title: '', key: 'data-table-expand' },
          {
            title: 'Dessert (100g serving)',
            align: 'start',
            sortable: false,
            key: 'name',
          },
          { title: 'Calories', key: 'calories' },
          { title: 'Fat (g)', key: 'fat' },
          { title: 'Carbs (g)', key: 'carbs' },
          { title: 'Protein (g)', key: 'protein' },
          { title: 'Iron (%)', key: 'iron' },
        ],

See Demo

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

79411127

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

I guess you should add loading state while the component is loading

For example :

const Component = dynamic(() => import(`@/components/admin/tabs/${compName}.js`), {
  ssr: false,
  loading: () => <div>Loading...</div>
});

Or use:

if (!data) return <div>Loading...</div>;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hamza Essolami

79411111

Date: 2025-02-04 09:09:28
Score: 3
Natty:
Report link

There is a Microsoft article which details cloning a database.

This can be set as schema only and I believe can be done on versions which predate the 2014 version.

https://learn.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-clonedatabase-transact-sql?view=sql-server-ver16

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

79411103

Date: 2025-02-04 09:06:27
Score: 3.5
Natty:
Report link

I had a similar problem some time ago and this user helped me solve it. It is the best solution I found, it works fine.

https://stackoverflow.com/a/79278692/23587110

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

79411100

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

For now, what I did was to use templates.

        source: z_full_json
        # Truncate to 64KB (adjust size as needed)
        template: '{{ if gt (len .Value) 65536 }}{{ slice .Value 0 65536 }}...TRUNCATED{{ else }}{{ .Value }}{{ end }}'

This way, promtail will truncate any huge json that loki might reject. This way, I am still able to get most of my json label values for each log and only miss a few.

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

79411092

Date: 2025-02-04 09:00:26
Score: 3.5
Natty:
Report link

View function in Cloud Run And in edit mode select Cloud SQL connections

enter image description here

enter image description here

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

79411083

Date: 2025-02-04 08:57:24
Score: 4.5
Natty: 4.5
Report link

I've gotten an approved business initiated template but I'm failing to send it with the twilio api because it's still flagged as a "free-body" message instead of a template. I've used the correct template SID but the issue persists. does anyone know why this happens

Reasons:
  • RegEx Blacklisted phrase (2): does anyone know
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: yazeed 1

79411082

Date: 2025-02-04 08:56:23
Score: 5
Natty:
Report link

kindly submit the website url to Google Search Console

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

79411078

Date: 2025-02-04 08:55:23
Score: 1
Natty:
Report link

try using this:

import os

import httpx

from groq import Groq

client = Groq(
api_key=os.environ.get("api_key"),
http_client=httpx.Client(verify=False)  # Disable SSL verification
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Anirudh Jhawar

79411076

Date: 2025-02-04 08:54:23
Score: 2
Natty:
Report link

I got the same error, it was fixed creating a certificate with the tool, but now i get a different error

Check what John says in this issue if it helps:

https://github.com/electron-userland/electron-windows-store/issues/118

Hope it helps

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29494911

79411075

Date: 2025-02-04 08:53:23
Score: 0.5
Natty:
Report link

Hello and welcome to StackOverflow!
The error you're getting is quite clear: The supplied javaHome seems to be invalid, so you probably just have to update the JAVA_HOME environment variable (if you are using it) or move your JDK to the path your IDE is looking for it (which is also listed in the error you posted, C:\Program Files\Java\jdk-23\bin\java.exe). That should be enough to solve the current issue.

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Has code block (-0.5):
Posted by: il_boga

79411060

Date: 2025-02-04 08:47:21
Score: 4.5
Natty:
Report link

Is XML supported in Azure SQL DB? Only 'CSV' | 'PARQUET' | 'DELTA' formats are mentioned.

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

79411059

Date: 2025-02-04 08:46:21
Score: 2
Natty:
Report link

Install Puppeteer Sharp: Add the NuGet package to your project: dotnet add package PuppeteerSharp

Use Puppeteer Sharp to render the HTML page as a PDF.

Use a library like System.Drawing.Printing to send the PDF to the printer.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rakesh M R

79411053

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

I tried to install the last .net version 9 sdk and it worked

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

79411043

Date: 2025-02-04 08:38:19
Score: 1
Natty:
Report link

I had the same issue.

Only setting up the Anaconda Python interpreter path in VS code didn't work.

Try reinstalling Python extention in VS code - as described in this microsoft vscode issue: https://github.com/microsoft/vscode-docs/issues/3839

For me it solved the problem.

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

79411032

Date: 2025-02-04 08:35:18
Score: 2
Natty:
Report link

We figured out the problem. It was a matter of slow ceph. When deploying to local volume, recovery from backup is much faster, connection to PG did not have time to reset, it allowed to avoid errors during recovery.

Conclusion: if necessary, increase the time to maintain connection with PG or optimize the speed of your storage.

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

79411026

Date: 2025-02-04 08:33:17
Score: 4.5
Natty: 6
Report link

And if there is no file by that name and snapd still can't be installed? The first answer didn't work at all but the second with zero upvotes worked fine..

Reasons:
  • Blacklisted phrase (0.5): upvote
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Linuxez

79411021

Date: 2025-02-04 08:33:17
Score: 3.5
Natty:
Report link

im using com.google.gms:google-services:4.3.15 it same error

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

79411019

Date: 2025-02-04 08:32:16
Score: 1.5
Natty:
Report link

@echo off

REM Configuration - Customize these variables

set "source_folder=C:\path\to\your\source\folder" REM Replace with the actual source folder path set "destination_share=\server_name\share_name\destination\folder" REM Replace with the shared drive path set "log_file=transfer_log.txt" REM Path to the log file set "file_types=*.txt *.docx *.pdf" REM File types to transfer (e.g., *.txt, *.docx, *.pdf, . for all)

REM Create the log file (overwrite if it exists) echo Transfer started on %DATE% at %TIME% > "%log_file%"

REM Check if the source folder exists if not exist "%source_folder%" ( echo Error: Source folder "%source_folder%" not found. >> "%log_file%" echo Error: Source folder "%source_folder%" not found. pause exit /b 1 )

REM Check if the destination share is accessible (optional but recommended) pushd "%destination_share%" if errorlevel 1 ( echo Error: Destination share "%destination_share%" not accessible. >> "%log_file%" echo Error: Destination share "%destination_share%" not accessible. popd pause exit /b 1 ) popd

REM Transfer files

echo Transferring files from "%source_folder%" to "%destination_share%"... >> "%log_file%" echo Transferring files from "%source_folder%" to "%destination_share%"...

for %%a in (%file_types%) do ( for /r "%source_folder%" %%b in (%%a) do ( echo Copying "%%b" to "%destination_share%"... >> "%log_file%" echo Copying "%%b" to "%destination_share%"... copy "%%b" "%destination_share%" /y REM /y overwrites existing files without prompting if errorlevel 1 ( echo Error copying "%%b". >> "%log_file%" echo Error copying "%%b". ) ) )

echo Transfer complete. >> "%log_file%" echo Transfer complete.

REM Display the log file (optional) notepad "%log_file%"

pause

exit /b 0

why this batch file not working

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • User mentioned (1): @echo
  • Low reputation (1):
Posted by: Hans Kumar

79411008

Date: 2025-02-04 08:28:15
Score: 3.5
Natty:
Report link

I'm waiting for this feature request to be implemented. Let's vote for it together!

https://issuetracker.google.com/issues/265791828

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

79411004

Date: 2025-02-04 08:26:15
Score: 1
Natty:
Report link

We experienced a similar problem and eventually discovered that in Azure OpenAI you need to set the Asynchronous Content Filter option. It's buried in the Azure model deployment settings in the Azure AI Foundry portal.

Without that it is essentially internally buffering the streamed response to enable the system to scan and block / flag content before it's returned.

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

79411000

Date: 2025-02-04 08:24:14
Score: 1
Natty:
Report link

Verify that your onClick handler correctly toggles the state. For example, using useState:

const [isOpen, setIsOpen] = useState(false);
const toggleDropdown = (e) => {
  e.stopPropagation(); // Prevents event bubbling
  setIsOpen((prev) => !prev);
};
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: irtazakhan24

79410989

Date: 2025-02-04 08:21:13
Score: 2
Natty:
Report link

It seems like you are trying to use the OtlpGrpcSpanExporter. gRPC is currently not supported. Could you try swapping out the OtlpGrpcSpanExporter for an OtlpHttpSpanExporter? This would mean data is exported via OTLP HTTP to the Dynatrace endpoint.

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

79410987

Date: 2025-02-04 08:19:13
Score: 0.5
Natty:
Report link

Protecting a private blockchain using a public blockchain can be achieved through several techniques that leverage the security, immutability, and decentralization of public networks while maintaining the confidentiality and efficiency of private networks. Here’s how:

  1. Anchor Data on the Public Blockchain (Timestamping & Hashing)

🔹 How it works:

Instead of storing private data directly on the public blockchain, you hash the private blockchain’s critical data (blocks, transactions, or state) and record the hash on a public blockchain like Bitcoin or Ethereum. This ensures that if anyone tries to tamper with the private blockchain, the hashes won’t match, proving the integrity of the private chain.

🔹 Example:

A supply chain company runs a private blockchain but stores cryptographic hashes of transactions on Ethereum to prove their authenticity without exposing private data.

🔹 Projects/Protocols:

OpenTimestamps (Bitcoin-based proof of existence). Chainlink’s DECO (privacy-preserving oracle for verification).

  1. Hybrid Blockchain Model (Interoperability)

🔹 How it works:

A private blockchain can interact with a public blockchain via smart contracts, where only specific verified data is shared. Allows private chains to benefit from public security while keeping sensitive data hidden.

🔹 Example:

A private medical records blockchain validates patient identities via a public blockchain without exposing personal data.

🔹 Projects/Protocols:

Hyperledger Fabric + Ethereum Polkadot’s parachains Cosmos (IBC - Inter-Blockchain Communication protocol)

  1. Zero-Knowledge Proofs (ZKPs) for Privacy-Preserving Validation

🔹 How it works:

Instead of revealing private blockchain transactions, a Zero-Knowledge Proof (ZKP) allows verification of data validity without disclosing actual data. Public blockchains can verify private blockchain transactions without exposing details.

🔹 Example:

A private DeFi lending protocol could prove it holds enough collateral on a public blockchain without revealing user details.

🔹 Projects/Protocols:

ZK-SNARKs & ZK-STARKs (used in zkSync, StarkNet, and Aztec Network).

  1. Decentralized Notary Services

🔹 How it works:

Smart contracts on a public blockchain act as a decentralized notary, certifying transactions or agreements from a private blockchain. Reduces fraud risks by ensuring an immutable proof of existence.

🔹 Example:

A legal firm using a private blockchain for contracts can notarize key details on Ethereum for dispute resolution.

🔹 Projects/Protocols:

Civic (decentralized identity verification). NotaryChain (blockchain-based notarization).

  1. Public Blockchain as a Backup Layer

🔹 How it works:

Private blockchains can store encrypted backups or checkpoints on a public blockchain. If a private blockchain is compromised, it can be restored using public blockchain proofs.

🔹 Example:

A private corporate blockchain backs up state changes onto Ethereum every 100 blocks to ensure disaster recovery.

🔹 Projects/Protocols:

Filecoin, Arweave, IPFS (decentralized storage for immutable backups).

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

79410985

Date: 2025-02-04 08:18:12
Score: 3.5
Natty:
Report link

1.check the pip were updated correctly 2.Try with conda or python environment to install packages.

https://docs.conda.io/projects/conda/en/4.6.0/_downloads/52a95608c49671267e40c689e0bc00ca/conda-cheatsheet.pdf

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

79410982

Date: 2025-02-04 08:17:12
Score: 0.5
Natty:
Report link
    //Im facing the same issue 
    //Now I fixed with using 


    //sx={{display: 'grid'}}

      <DataGrid
          rows={rows}
          sx={{display: 'grid'}}
          columns={columns}
          checkboxSelection
          onRowSelectionModelChange={(selectionModel) =>
            handleRowSelectionChange(selectionModel as GridRowId[]) 
            
          }
          slots={{
            toolbar: () => (
              <CustomToolbar
                exportToPDF={exportToPDF}
              />
            ),
            noRowsOverlay: NoRowsOverlay,
          }}
          disableRowSelectionOnClick
          density='compact'
          pagination
          paginationModel={paginationModel}
          rowCount={rowCount}
          paginationMode={paginationMode}
          pageSizeOptions={[5, 10, 20, 50]}
          onPaginationModelChange={handlePaginationModelChange}
        />
Reasons:
  • Whitelisted phrase (-2): I fixed
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (1):
Posted by: Sadiq Shah - II

79410963

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

here is an updated query working in version 8:

WITH RankedData AS ( 
SELECT Klasse, Name, KW, RANK() OVER (PARTITION BY Klasse ORDER BY KW+0 DESC) AS class_rank FROM valar_date ), 
NumberedData AS (
 SELECT Klasse, Name, KW, class_rank, ROW_NUMBER() OVER (ORDER BY class_rank, KW DESC) AS row_num FROM RankedData )
 SELECT CONCAT('group', FLOOR(row_num / 4) + 1) AS Groupname, GROUP_CONCAT(Name ORDER BY row_num SEPARATOR ', ') AS Players FROM NumberedData GROUP BY FLOOR(row_num / 4); 
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Shorty

79410962

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

I'm using [email protected] and [email protected] It seems like the issue can be solved by simply changing

from tensorflow.keras.layers import Dense # for example

to

from keras.layers import Dense
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Goamhobala

79410957

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

What I have found, after fighting for some weeks, is that the error comes because it has not been considered the case when one already has bought shares from a company. So, in the code must be considered that shares should be added and the transactions table must be updated instead of inserting a new raw.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What I have
  • Low reputation (1):
Posted by: Semiconductor orgánico

79410953

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

You can find it here:

https://git.yoctoproject.org/meta-lts-mixins/log/?h=scarthgap/rust

Normally I'd suggest using the layer index, https://layers.openembedded.org/ to search for it but it doesn't appear to be listed there.

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

79410952

Date: 2025-02-04 08:06:09
Score: 3.5
Natty:
Report link

Looks like this is a problem (bug?) of particular psycopg version 3.2.4. Try to downgrade to 3.2.3. In my case it helped.

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

79410942

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

Don't use a stack use a list view

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

79410940

Date: 2025-02-04 08:02:08
Score: 1
Natty:
Report link

You can write data to dynamic destinations (tables) - each table may contin separate schema version, eg: "table_v1", "table_v2", etc. Apache Beam or another procesing engine may be used. Next you can query the data with wildcard https://cloud.google.com/bigquery/docs/querying-wildcard-tables. "BigQuery uses the schema for the most recently created table that matches the wildcard as the schema for the wildcard table." - this could make the job, but you should ensure, that the table with the latest svhema version had been created last.

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

79410936

Date: 2025-02-04 08:00:08
Score: 2.5
Natty:
Report link

Try update your material component gradle

'com.google.android.material:material:1.4.0'

I update to this version and solve my problem

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

79410933

Date: 2025-02-04 07:59:08
Score: 2
Natty:
Report link

In the end, it seems that the answer was a combination of two factors:

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

79410923

Date: 2025-02-04 07:55:07
Score: 0.5
Natty:
Report link

The Command Prompt User Interface displays to you because you execute commands interactively. What happens is your application executes its command inside an IIS Express background session because of which everything runs without displaying any output. Running commands through your C# application under IIS Express produces different working directories compared to your command-line operations which affects file path references.

The system behavior of UiPath depends strongly on whether the Assistant stays connected to the internet. When users disconnect their internet after their robot goes online their processes tend to execute without issues. So, try these:

  1. The standalone console app execution will reveal the interface but should not operate under IIS Express.
  2. Your ProcessStartInfo should include the WorkingDirectory property for operation.
  3. You should check your UiPath Assistant status to ensure it is active because an online system might prevent the expected UI activation.

The observed behavior where your command executes properly in CMD represents a difference between these environments since C# fails to display the visible output.

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

79410909

Date: 2025-02-04 07:48:05
Score: 2.5
Natty:
Report link

Supply --host="" parameter at cli.

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

79410901

Date: 2025-02-04 07:44:04
Score: 2.5
Natty:
Report link

This question is similar to one I answered here: https://stackoverflow.com/a/79410774/18161884.

In my answer, I explain how to set priorities for the camera and joystick to ensure they render correctly. Check it out for a detailed explanation and code examples. Hope this helps! 🚀

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (0.5): Check it out
  • Whitelisted phrase (-1): Hope this helps
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hemang Goswami

79410897

Date: 2025-02-04 07:44:04
Score: 1
Natty:
Report link

Please see below. Endpoint: https://developer.api.autodesk.com/data/v1/projects/:project_id/folders/urn:adsk.wipprod:fs.folder:co.N0nCOWbXSPeOcAz6Rw38tA

{
  "jsonapi": {
      "version": "1.0"
  },
  "data": {
      "type": "folders",
      "id": "urn:adsk.wipprod:fs.folder:co.N0nCOWbXSPeOcAz6Rw38tA",
      "relationships": {
          "parent": {
              "data": {
                  "type": "folders",
                  "id": "urn:adsk.wipprod:fs.folder:co.xS2cbhg1T7iy7GKzfPDhQQ"
              }
          }
      }
  }
}

enter image description here

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

79410882

Date: 2025-02-04 07:37:03
Score: 2.5
Natty:
Report link

Later Later Edit:

Managed to work out some solution with DXL scripting. Created a DXL script that will export the entire document and i was able to run this DXL via command line.

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

79410881

Date: 2025-02-04 07:37:03
Score: 1
Natty:
Report link

Since the dynamic topic model (DTM) is a probabilistic model, word probabilities are never zero even for words that do not occurr in a time slice. But the DTM has a temporal smoothing parameter that influences the temporal continuity of topics. In the LdaSeqModel(), it's the chain_variance parameter. By increasing it, words that do not occurr in a time slice get lower probabilities, also in the toy model given above.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: hyco