79375770

Date: 2025-01-21 19:56:34
Score: 1
Natty:
Report link

I had dockerised my NestJS using MariaDB for database code and was hitting the internal port of the NestJS service instead of the external port with my requests. Illustration:

ports:
      - "5050:5005"  # Bind to IPv4 localhost explicitly

Using 5005 raised the error. Using 5050 worked.

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

79375765

Date: 2025-01-21 19:55:33
Score: 3
Natty:
Report link

property -- > hibernate.allow_update_outside_transaction = true It's working, thanks!

Mingwei

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mingwei Wu

79375759

Date: 2025-01-21 19:55:33
Score: 2.5
Natty:
Report link

In Instantlink, business flows are programmed in a proprietary visual tool called "Business service tool". And at the level of integration with network platforms, you can preferably use Java or the expect language.

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

79375756

Date: 2025-01-21 19:53:31
Score: 13 🚩
Natty:
Report link

I have the same issue, did you fix it or may be you have any ideas?

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Blacklisted phrase (1): any ideas
  • RegEx Blacklisted phrase (3): did you fix it
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dmitriy UTKIN

79375752

Date: 2025-01-21 19:48:30
Score: 1
Natty:
Report link

only change the query to params

router.push({
  pathname: '/client/scan/InviteClientsScreen',
  params: { bar_id, table_id, user_id }
});

and you can access the parameters here

    const { bar_id, table_id, user_id } = useLocalSearchParams();
    console.log({ bar_id, table_id, user_id });
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Eslam Mohamed

79375743

Date: 2025-01-21 19:43:28
Score: 3
Natty:
Report link

I think you need to try using a Custom provider that has a REQUEST injected into it.

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

79375742

Date: 2025-01-21 19:43:28
Score: 1.5
Natty:
Report link

There is an option now in the google colab to directly add a github link of a jupyter notebook. That will open the notebook in the google colab.

Open Notebook >> Github >> paste the link in the dialog box.

To open a notebook of your private repository, you can now integrate your github profile to google colab as well.

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

79375732

Date: 2025-01-21 19:33:26
Score: 0.5
Natty:
Report link

There are use-cases where you don't want the function that yields to stop after that one yield.

def iterate_me_please():
    for i in range(10):
        yield from range(i+1)

If you used return range(i) or return range(i).__iter__(), you would terminate the for loop after one iteration.

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

79375728

Date: 2025-01-21 19:32:25
Score: 1.5
Natty:
Report link

For me I was able to resolve this by selecting the interpreter in VSCode that matched the path. This was actually not the recommended interpreter so it was not the most intuitive.

I ran ctrl, shift, p to open the palette and then up above chose the interpreter that had been created for my project specifically and not the global.

This has been a problem for two projects so far so I assume it is fairly common. This fixed my error both times.

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

79375727

Date: 2025-01-21 19:31:25
Score: 3.5
Natty:
Report link

why not just refer to the index of the list/ column?
In others words:
test$id[3] <- 3
test$id[10] <- 6

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): why not
  • Low reputation (1):
Posted by: Erik

79375718

Date: 2025-01-21 19:27:24
Score: 1
Natty:
Report link

Adding a space before all format specifiers in scanf in C is crucial, especially when dealing with multiple consecutive inputs. This approach ensures that any leftover whitespace characters (such as spaces, tabs, or newlines) in the input buffer are skipped before reading new data. This is particularly important for format specifiers like %c, which would otherwise read these whitespace characters.

For example:

char ch; scanf(" %c", &ch); // The leading space ensures any previous newline or space is skipped.

Without the space, %c could inadvertently read a newline from the previous input.

However, adding a space after the format specifier (e.g., "%c ") is generally unnecessary and could lead to unexpected behavior, such as scanf waiting for a non-whitespace character to terminate the input.

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

79375706

Date: 2025-01-21 19:23:23
Score: 2
Natty:
Report link

There's a few things going on here that could influence the rendering. First off, Tailwind may not be purging classes in dev - like it does in prod. My assumption is that the classes you're seeing in prod are not taken into account by Tailwind (at least not all of them) when rendering.

Could you, just for the sake of diagnosing, add a static div to the page including all those Pagerfanta-rendered classes?:

<div class="flex items-center justify-between flex-1 z-0 inline-flex shadow-sm relative px-4 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default rounded-l-md leading-5 -ml-px text-gray-700 hover:text-gray-500 focus:z-10 focus:outline-none focus:border-blue-300 focus:shadow-outline-blue active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150"></div>

If your Pagerfanta is now properly rendering on prod, we know what the issue is. Tailwind simply doesn't "know" about (some of) these classes and thus does not include them in it's compiled CSS.

To fix this you could add the following to your tailwind.config.js to whitelist those classes used by Pagerfanta:

module.exports = {
// Your other contents under module.exports

  safelist: [
    'pagination__item',
    'pagination__item--previous-page',
    'pagination__item--current-page',
    'pagination__item--disabled',
    'relative', 'inline-flex', 'items-center', 'px-4', 'py-2',
    'text-sm', 'font-medium', 'text-gray-500', 'bg-white', 'border', 'border-gray-300',
    'cursor-default', 'rounded-l-md', 'rounded-r-md'
  ],
};

If this does not fix your issue, could you try switching to Pagerfanta's default styling and see how that renders?

babdev_pagerfanta:
    default_view: twig
    default_twig_template: '@BabDevPagerfanta/default.html.twig'

This will help diagnose a bit further.

Please let me know what the results are so I can update my answer :).

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know what
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Julian Koster

79375686

Date: 2025-01-21 19:14:21
Score: 1
Natty:
Report link

The "timeout error" issue might occur if the context is not closed with the status after invoking the third-party API in the application code.

To avoid this, ensure the Cron function is closed with either context.closeWithSuccess() or context.closeWithFailure() at the end of the function to indicate whether the Cron function executed successfully or not. You can refer to this help documentation for Cron function.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Santhosh Kumar M

79375682

Date: 2025-01-21 19:12:20
Score: 2
Natty:
Report link

This is not a poetry question, it is a python question.

You have set an environment variable that modifies the behaviour of the python interpreter. Then you have run a python program: and it has respected the behaviour that you have asked for.

If that was not what you wanted - then unset the environment variable.

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

79375676

Date: 2025-01-21 19:09:20
Score: 2
Natty:
Report link

Yes so i found a solution to the problem. It just needed a space before the %[^\n] in scanf.

 scanf(" %[^\n]s", str);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: MrKotopoulos

79375659

Date: 2025-01-21 19:02:17
Score: 6 🚩
Natty: 5
Report link

@abhi85069 what phone number of that user id

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @abhi85069
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Richa

79375657

Date: 2025-01-21 19:02:17
Score: 0.5
Natty:
Report link

I had the same problem, I selected Supabase as my database on the previous chapter. I had to switch to Neon and it worked. It seems the code used in the tutorial to query the database doesn't work with Supabase.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Diego Salas

79375655

Date: 2025-01-21 19:00:17
Score: 1.5
Natty:
Report link

I got the same error, It turned out I already had /User/mbl/fusefs on the system and it was a directory.

Just issue:

rm -rf /User/mbl/fusefs

and attempt to run the command again.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Konstantin G - goivvy.com

79375649

Date: 2025-01-21 18:58:15
Score: 7.5 🚩
Natty: 5
Report link

I have a similar problem. I have Ros2 humble and collision monitor doesn't even give out errors when I am trying to launch it through a nav2 stack.

Reasons:
  • Blacklisted phrase (1): I have a similar problem
  • Blacklisted phrase (1): I am trying to
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have a similar problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Seyed Amirhosein Mohaddesi

79375641

Date: 2025-01-21 18:55:14
Score: 4
Natty:
Report link

Simple & Short answer; you can't.

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

79375638

Date: 2025-01-21 18:54:13
Score: 0.5
Natty:
Report link

i have run 3 instances of a service with same name following each other by some delay... What i saw soon there is only one instance in background. IMO there is no need in such check anymore. It wont let you create a new one if current service is alive

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

79375637

Date: 2025-01-21 18:54:13
Score: 4.5
Natty:
Report link

As mentioned by @root69 , I enforced MFA on the trust policy and removed it from the regular policy and now it works.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @root69
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vincent Verbist

79375601

Date: 2025-01-21 18:46:11
Score: 1
Natty:
Report link

Actually I also faced the same error with Azure Blob Storage account.

This error getting from the datasource. (Error with data source: Credentials provided in the connection string are invalid or have expired.\r\nFor more information on troubleshooting connection issues to Azure Storage accounts, please see https://go.microsoft.com/fwlink/?linkid=2049388 Please adjust your data source definition in order to proceed.)

When we run AI Search Indexer with private endpoint connection in Azure Storage we need to add a managed identity (system assigned) to the datasource. Screenshot of datasource for help

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

79375593

Date: 2025-01-21 18:45:11
Score: 1
Natty:
Report link

I'm having a similar scenerio in which I'm trying to run a query in the workflow as a step like below, But in the bigquery job it is always failing as the the table name is not proper because the query is getting passed as it is without the variable values getting applied

- execute_bqraw_to_bqcurated_transform:
        try:
          call: googleapis.bigquery.v2.jobs.insert
          args:
            projectId: ${args.project_id}
            body:
              jobReference:
                location: ${args.location}
              configuration:
                query:
                  query: |
                    BEGIN;
                    TRUNCATE TABLE ${args.project_id}.${args.dataset_id}.${args.curated_table_name}`;                    
                    INSERT INTO `${args.project_id}.${args.dataset_id}.${args.curated_table_name}` 
                    SELECT *
                    FROM `${args.project_id}.${args.dataset_id}.${args.raw_table_name}`;
                    COMMIT;
                  useLegacySql: false
          result: bq_transform_job
        retry:
          predicate: ${error_handling}
          max_retries: 5
          backoff:
            initial_delay: 10
            max_delay: 120
            multiplier: 2
        next: log_bq_transform_job_id

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29302403

79375584

Date: 2025-01-21 18:44:10
Score: 2
Natty:
Report link

I wasted hours on this, you'll get the same error if your SQL expects a UNIQUE INDEX to exist with the same set of columns, but it isn't there for some reason (I think in my case it was messed up migrations in my local dev db).

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): get the same error
  • Single line (0.5):
  • High reputation (-1):
Posted by: dain

79375578

Date: 2025-01-21 18:41:09
Score: 5.5
Natty: 7
Report link

What if the mermaid is in a Markdown file, in one of the documentation files of a project?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What if the me
  • Low reputation (1):
Posted by: CSpyridakis

79375576

Date: 2025-01-21 18:40:09
Score: 1.5
Natty:
Report link

Python interprets 022 as a decimal literal, which is invalid for the name. You just need to rename the file to something that starts with a letter.

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

79375574

Date: 2025-01-21 18:39:08
Score: 7.5 🚩
Natty: 5.5
Report link

None of these answers work. if I type "python -V" I get "python is not defined". Am I doing something wrong?

Reasons:
  • Blacklisted phrase (2): something wrong?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Maia

79375569

Date: 2025-01-21 18:36:07
Score: 0.5
Natty:
Report link

According to @Nils Adermann, Shutting down Packagist.org support for Composer 1.x. We need to upgrade to Composer 2.x before the February 1st, 2025, the read-only deadline. The upgrade is simple—most projects will work with 2.x without any issues. You can review the instructions on our original 2.0 blog post and notes on BC breaks.

To upgrade, use this command:

composer self-update --2

Based on this public documentation for Google Cloud Vertex AI for PHP.

NOTE: This repository is part of Google Cloud PHP. Any support requests, bug reports, or development contributions should be directed to that project.

Installation

To begin, install the preferred dependency manager for PHP, Composer.

Now install this component:

$ composer require google/cloud-ai-platform

This component supports both REST over HTTP/1.1 and gRPC. In order to take advantage of the benefits offered by gRPC (such as streaming methods) please see our gRPC installation guide.

Authentication

Please see our Authentication guide for more information on authenticating your client. Once authenticated, you'll be ready to start making requests.

Debugging

Please see our Debugging guide for more information about the debugging tools.

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

79375568

Date: 2025-01-21 18:36:06
Score: 4.5
Natty:
Report link

have you tried to edit your dependencies ?

Reasons:
  • Whitelisted phrase (-1): have you tried
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: d'Blacksmith

79375566

Date: 2025-01-21 18:35:04
Score: 10 🚩
Natty:
Report link

May I ask could you solve it already? May I ask about the way you did it? Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): May I ask
  • Blacklisted phrase (2): could you solve
  • RegEx Blacklisted phrase (1.5): solve it already?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Do Tri

79375565

Date: 2025-01-21 18:35:04
Score: 1.5
Natty:
Report link

This is somewhat common for Legacy 32bit Progress cleint apps that have been around a long time. Its hard to upgrade all the client software. As long as the Appserver code does not have any 32-bit dependencies then you can install the 32-bit client Networking and associate the client app to prowin32.exe. PASOE being 64bit should not impact your software if (again) you dont have any backend code with 32bit DLLs or controls. The main issue is that you have to manage is both the 32 bit client and 64 bit backend on the same machine if you install the client on the server.

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

79375559

Date: 2025-01-21 18:32:03
Score: 1
Natty:
Report link

You can use the X-Accel-Redirect feature of Nginx.

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

79375551

Date: 2025-01-21 18:29:02
Score: 0.5
Natty:
Report link

reinstalling react-navigation worked for me. What I did:

yarn add @react-navigation/native

npx expo install react-native-screens react-native-safe-area-context
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Md Atik Mouhtasim

79375548

Date: 2025-01-21 18:28:02
Score: 3.5
Natty:
Report link

Please see https://stackoverflow.com/a/78567490/2696928 to install ruby-3.3.7 [ x86_64 ] on a Mac 2.8 GHz Quad-Core Intel Core i7 running Ventura 13.7.2.

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

79375545

Date: 2025-01-21 18:26:01
Score: 3
Natty:
Report link

If you are using shared hosting. Go to php configurations and remove symlink funciton from disableFunctions.

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

79375543

Date: 2025-01-21 18:26:01
Score: 1
Natty:
Report link

You can achieve it by removing the spaces at the end of each line. Workflow in Sublime is:

  1. option+command+F which is find and replace
  2. Activate Regular Expressions with option+command+R

Decide how many spaces from the end need to be deleted. Let's say at least 4 spaces,

Before before replace

After after replace

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

79375538

Date: 2025-01-21 18:25:01
Score: 0.5
Natty:
Report link

If your script isn’t working in Roblox, there might be issues with the code, object setup, or connections. Here are some troubleshooting steps and a basic example of how to script a door that reacts when touched:

Basic Door Script Here’s an example script for a door that disappears when touched:

Make sure the door is a part and has the CanCollide property set to true (so it blocks players before the touch). Add a Script or LocalScript to the part.

local door = script.Parent -- Reference to the door part

local function onTouch(hit) -- Check if the object touching the door is a player local character = hit.Parent if character:FindFirstChild("Humanoid") then door.CanCollide = false -- Makes the door passable door.Transparency = 0.5 -- Makes the door semi-transparent wait(2) -- Wait for 2 seconds door.CanCollide = true -- Makes the door solid again door.Transparency = 0 -- Makes the door fully visible end end

door.Touched:Connect(onTouch) -- Connect the function to the Touched event

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

79375531

Date: 2025-01-21 18:24:01
Score: 0.5
Natty:
Report link

I just uninstalled intrinio and intrinio_sdk and closed my Visual Studio IDE and then installed again intrinio-sdk

pip install intrinio-sdk, it worked for me

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

79375530

Date: 2025-01-21 18:23:01
Score: 2.5
Natty:
Report link

https://stackoverflow.com/a/78534259/6899849

Happened to me in SDK 52. Make sure to clear the cache with npx expo start -c if the error persists after following the instructions above,

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: superdwale

79375522

Date: 2025-01-21 18:21:00
Score: 5
Natty:
Report link

There are many possible reasons you might be getting an Internal Server Error:

  1. The data you are passing to the app in your test is not well formatted or not a valid object (can you provide the src/js/server/fetchMovies.js file, Pages/index)
  2. You manually allowed a security exception in your browser when first visiting your app like for example not using https but http. And then maybe your app doesn't allow Supertest to do the same thing. (does using curl work on your / endpoint? )
  3. Your res.render function might not render html understanded by Supertest

....other errors due to the specificity of the modules you imported

I am not exactly sure of the answer, I hope the above tips head you in the right direction. Please provide as many details as possible.

A good practice in your case when facing such a bug is to decouple all the things you are trying to use all at once and test them individually. This will help you find where your code went wrong.

Some tips to gain visibility:

  1. Do

const linkData = await nav.navLinks();

const moviesData = await api.fetchAllMovies();

outside of the individual routes. You can get the linkData and moviesData in the app. That way your /* routes only have to return html. Only one purpose that you can test and validate that it's not the source of the problem.

  1. Use the same fetchMovies and fetchAllMovies and navlinks in your app and in your tests. If they are different, that might be the reason one way it's running ok and the other it's failing.

  2. Separate your logic functions from your routes and test them one by one by logging in the app what they get.

  3. Test your render function without the logic with test html

  4. Make sure 'Content-Type', /html/ is correct

  5. Change to different modules that do the same thing for you, see what error you get.

Please get back to me at any stage with more information. I would be happy to help further.

Best

Reasons:
  • Whitelisted phrase (-1): in your case
  • RegEx Blacklisted phrase (2.5): can you provide
  • RegEx Blacklisted phrase (2.5): Please provide
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: noswoscar

79375519

Date: 2025-01-21 18:19:59
Score: 2
Natty:
Report link

Firefox already does this if you have "Remember search and form history" checked.

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

79375514

Date: 2025-01-21 18:16:59
Score: 0.5
Natty:
Report link

I believe I figured it out. I added the genesis block, but I was mistakenly trying to add transactions to the genesis block instead of adding them to the next block, which would be the first block after the genesis block. The issue was that I had the next block set with an index of 1 and a previous hash of 0. Once I switched to using a block index of 2 and a previous hash of the genesis block, all my tests passed.

Reasons:
  • Whitelisted phrase (-2): I figured it out
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: CodingApperentice

79375510

Date: 2025-01-21 18:15:59
Score: 2
Natty:
Report link

I upgraded react-native-vector-icons from 9.2.0 to 10.2.0 and then ran into this issue. Rolling it back to 9.2.0, the issue is gone.

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

79375496

Date: 2025-01-21 18:11:58
Score: 0.5
Natty:
Report link

Simply run

docker exec -it my_container \
  bash -c "source path_to/custom.sh; foo"

You can check more details here:

Commands separated by a ‘;’ are executed sequentially; the shell waits for each command to terminate in turn. The return status is the exit status of the last command executed.

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

79375488

Date: 2025-01-21 18:07:56
Score: 8.5 🚩
Natty: 5
Report link

Were you able to run this after the above fix? I'm also looking same as above solution. But I'm getting different issue as below The request body must contain the following parameter: 'client_assertion' or 'client_secret'. Here I see, PublicClientApplicationBuilder class does not contain a definition for WithClientSecret.

Is I'm I missing anything else.

I'm just looking for console app to upload files to OneDrive.

Thanks, Karuna

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1.5): fix?
  • RegEx Blacklisted phrase (3): Were you able
  • Contains signature (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Karuna

79375484

Date: 2025-01-21 18:05:55
Score: 3
Natty:
Report link

Figured out the reason of the errors: multi workers was on auto instead of 1. nginx_rtmp_module works well only with 1 worker

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

79375483

Date: 2025-01-21 18:05:55
Score: 3
Natty:
Report link

Would it be possible to adjust this code to select only names that represent an even number. By renaming just the even-numbered files I can then select them separately. I have hundreds of files named 001.jpg 002.jpg and so on; only numbers, three digits with leading zero(-es). I want to add an modulo check. to the find to filter out just even numbered files but I'm not quite certain how to do that.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Malkus

79375479

Date: 2025-01-21 18:04:55
Score: 1.5
Natty:
Report link

Fortnite(username, password, EULA_ACCEPTED=False) - Main class, logs in to Epic Games and authenticates Fortnite access.

Fortnite.get_stats(epic_id) - V2 of Fortnite stats. Gets season stats, not per-game stats (like most other libraries)

Fortnite.get_profile(epic_id) - Get user information (displayName etc.)

Fortnite.get_friends() - Get friends of the logged in account.

Fortnite.get_public_stats(epic_id) - Get minimal informational stats of the account.

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

79375469

Date: 2025-01-21 17:59:53
Score: 0.5
Natty:
Report link

I believe this is the simplest isString function that will work:

Function isString(testVar As Variant) As Boolean

     isString = (VarType(testVar) = vbString)

End Function
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Trashman

79375457

Date: 2025-01-21 17:56:53
Score: 3
Natty:
Report link

It seems the model hasn't been downloaded completely. You can delete the partial file and download it again.

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

79375445

Date: 2025-01-21 17:51:51
Score: 2
Natty:
Report link

When uploading a file to Zoho Catalyst Stratus using Postman, try uploading it in binary format instead of form-data.

Here’s how to do it:

  1. In Postman, select the PUT method for the request.
  2. Go to the Body tab and choose the binary option.
  3. Click Select File and upload your PNG file.
  4. Send the request.

Once the file is successfully uploaded to Catalyst Stratus, you can download it from the Catalyst console.

Reasons:
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Sakthivel B

79375431

Date: 2025-01-21 17:49:50
Score: 2.5
Natty:
Report link

Yeah, I'm pretty sure the problem is with BitBucket, they are currently "hard down", according to them, you can check Atlassian status page here https://bitbucket.status.atlassian.com/.

Print

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

79375428

Date: 2025-01-21 17:48:50
Score: 0.5
Natty:
Report link

https://learn.microsoft.com/en-us/dotnet/core/compatibility/core-libraries/6.0/system-drawing-common-windows-only

libgdiplus is the main provider of the cross-platform implementation of System.Drawing.Common on the native side. libgdiplus is effectively a reimplementation of the parts of Windows that System.Drawing.Common depends on. That implementation makes libgdiplus a non-trivial component. It's around 30,000 lines of C code that's largely untested, and it lacks a lot of functionality. libgdiplus also has numerous external dependencies for image processing and text rendering, such as cairo, pango, and other native libraries. Those dependencies make maintaining and shipping the component even more challenging. Since the inclusion of the Mono cross-platform implementation, we have redirected numerous issues to libgdiplus that never got fixed.

Recommended action To use these APIs for cross-platform apps, migrate to one of the following libraries:

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

79375416

Date: 2025-01-21 17:43:49
Score: 2
Natty:
Report link

You need to either upgrade Xcode to 15.3+ or downgrade google_mobile_ads to 5.1.0

If downgrading, make sure to clean Flutter and reinstall pods afterwards.

See https://github.com/googleads/googleads-mobile-flutter/issues/1185

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

79375408

Date: 2025-01-21 17:40:48
Score: 4.5
Natty:
Report link

you need to initialize the reporter in @BeforeClass or @BeforeTest annotation

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @BeforeClass
  • User mentioned (0): @BeforeTest
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ritesh Bawaskar

79375406

Date: 2025-01-21 17:40:48
Score: 0.5
Natty:
Report link

I am running the Nix operating system (nixos). When opening some java/gradle projects I got the following error (only visible in the logs in ~/.cache/JetBrains/IdeaIC2024.3/log/idea.log):

Caused by: org.gradle.api.GradleException: Unable to determine version for JDK located at /home/my_user_name/.jdks/azul-17.0.13. Reason: Command returned unexpected result code: 127
Error output:
Could not start dynamically linked executable: /home/my_user_name/.jdks/azul-17.0.13/bin/java
NixOS cannot run dynamically linked executables intended for generic
linux environments out of the box. For more information, see:
https://nix.dev/permalink/stub-ld

I could resolve it by changing the gradle JVM:

enter image description here

For installing Java on NixOS also see https://nixos.wiki/wiki/Java.

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

79375400

Date: 2025-01-21 17:37:47
Score: 0.5
Natty:
Report link

The problem was in missing this line in the grammar:

WS: [ \t\r\n]+ -> skip;
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Eljah

79375397

Date: 2025-01-21 17:37:47
Score: 2.5
Natty:
Report link

Shell.Run "mshta.exe vbscript:close(CreateObject(""WScript.shell"").Popup(""Test"",3,""Message""))"

Can I write a variable coming from somewhere else where it says Test? I tried but it didn't work

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Levent Durmuşoğlu

79375391

Date: 2025-01-21 17:35:46
Score: 2
Natty:
Report link

If you have a image folder(img_folder) in public folder and you wanted to access images in it from your react component (Home.jsx) or Home.css src component Home.jsx Home.css

You can access it by giving the path as given below: /public/img_folder/my_image.jpg

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

79375388

Date: 2025-01-21 17:34:46
Score: 0.5
Natty:
Report link

The language specification says:

Each iteration has its own separate declared variable (or variables) [Go 1.22]. The variable used by the first iteration is declared by the init statement. The variable used by each subsequent iteration is declared implicitly before executing the post statement and initialized to the value of the previous iteration's variable at that moment.

In the question's first example, the anonymous function captures per-iteration variables.

In the question's second example, the anonymous function captures the single variable declared with var i int. This variable is incremented to 10 before the goroutines run.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Lauren Sanchez

79375380

Date: 2025-01-21 17:31:45
Score: 3
Natty:
Report link

10 years later, This is possible and kotlin is a first class language in liferay.

https://help.liferay.com/hc/en-us/articles/360029005872-Kotlin-Portlet

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

79375374

Date: 2025-01-21 17:30:45
Score: 1.5
Natty:
Report link

It's worth mentioning that this errored for me due to a couple of databases having a numeric beginning (123abc). Putting the database names into brackets where they are text strings will fix this. ex. ALTER DATABASE [@dbname] SET AUTO_CLOSE OFF

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

79375370

Date: 2025-01-21 17:29:44
Score: 4
Natty: 4
Report link

if its not a big deal, find what's gaining focus and tell it to give it back.

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

79375369

Date: 2025-01-21 17:28:43
Score: 3
Natty:
Report link

Thank you everyone for your time and effort. After reading document shared above which explains why we should not use s3FS . I have changed my code to work with s3 apis and it is working fine.

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

79375367

Date: 2025-01-21 17:28:43
Score: 3
Natty:
Report link

I think i realised i need to refresh on github (update), was bite scared because it s updating in render n8n, but i did it and apparently it s works, nothing anymote on github and n8n on render is updated and working !!! as i told you i m a novice, and apparently it s quiet commun this problem, so i will get use to it i guess, i also find few tuto on how to save your n8n worflows in case something happening.

Thanks anyway

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): i need
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Bruno

79375354

Date: 2025-01-21 17:22:41
Score: 2.5
Natty:
Report link

amazing worked for me that you needed a full package it's like 1gigs

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

79375337

Date: 2025-01-21 17:21:41
Score: 2
Natty:
Report link

I make money automatically on WaTool with WhatsApp and now I invite you to join. Sign up now and have a chance to earn Rs50000 per month.

[Register URL] *If URL_2 is not accessible, copy URL_1 and open it in Google Chrome

URL_1:http://43.128.214.174/go/25423961

URL_2:https://server.4zfc.com/go/25423961

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

79375333

Date: 2025-01-21 17:21:41
Score: 3
Natty:
Report link

Give Full Control to your WhatsApp Business Account and afterwards create your App.

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

79375323

Date: 2025-01-21 17:20:41
Score: 3.5
Natty:
Report link

I am providing EV code signing certificates HSM based you don’t need to any usb token for using certificate , you can export it anywhere

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

79375315

Date: 2025-01-21 17:19:40
Score: 1.5
Natty:
Report link

Upgrading from bootstrap 4 to 5.3 and had to migrate the deprecated card-columns class. Bootstrap suggests a third party library for masonry (https://getbootstrap.com/docs/5.3/components/card/#masonry). As @raj-bhatia suggested I also use ngx-masonry which is the ng wrapper around said library.

The bootstrap example (https://getbootstrap.com/docs/5.3/examples/masonry/) would look in Angular like this:

<ngx-masonry [options]="{ percentPosition: true }" class="row">
    <div *ngFor="let col of columns" class="col-sm-6 col-lg-4" ngxMasonryItem>
        <div class="card">{{ col }}</div>
    </div>
</ngx-masonry>

I noticed that the gutters option did not work well with bootstrap5, so use the gutters class for the row instead (e.g.: class="row g-3")

Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @raj-bhatia
  • Low reputation (0.5):
Posted by: Delta

79375278

Date: 2025-01-21 17:12:38
Score: 2.5
Natty:
Report link

Check for the update if available and disable plugins if you are using any(Some plugins may interfare) .

Same thing happened to me once, and after updating it was solved.

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

79375276

Date: 2025-01-21 17:12:38
Score: 2
Natty:
Report link

I went through the code once again and after I took a little bit of perspective it turned out I've had yet another form tag wrapping the part of the code that I was working on.

Lesson learnt, always make user forms are not nested within each other.

In case anyone else stumble upon similar issues, I'm posting some errors I encountered:

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

79375275

Date: 2025-01-21 17:11:37
Score: 8 🚩
Natty: 4.5
Report link

Any news on this? i have the same issue

Reasons:
  • Blacklisted phrase (1): i have the same issue
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): i have the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Valsamis Elmaliotis

79375271

Date: 2025-01-21 17:08:36
Score: 4
Natty: 4
Report link

See https://developers.facebook.com/docs/whatsapp/cloud-api/messages/image-messages Also templates allow to add images https://developers.facebook.com/docs/whatsapp/cloud-api/guides/send-message-templates

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

79375268

Date: 2025-01-21 17:07:35
Score: 2
Natty:
Report link

A comment helped me to fix this, but I want to write up an answer in case anybody else runs into this issue.

An ode function should take only two parameters: time and a vector with any other variables. The following modification fixed my issue:

function [dndt,dmdt,dhdt,dVdt]=hh(t,x)
    n=x(1); m=x(2); h=x(3); V=x(4);
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: צבי

79375267

Date: 2025-01-21 17:07:35
Score: 4.5
Natty:
Report link

Lic_Code:lgAAAKXteEHJ5tQBTABub19kZXZpY2U9NTA7Y29tcGFueT0wOkFqd2FuIElOVEw6S3V3YWl0IENpdHk6MjI0NTA1MDQ6MTowMDAwOlBPU1I6TE9HTy5KUEd+J2/XN6Hvh863QQ+X0sBfSlsl8AZROxYYilKLy3RlPmwwbAPMn4DT5VcPwlaBdE9P Val_Code:AMAAMACBOwxfClu0oX0f1ClveIuUpJvktg+nz2IMUqdyXFMof/CloLh8sRKyCosuaOFtOM0DAAEAAQ==

how to i decrypt this pls help

Reasons:
  • RegEx Blacklisted phrase (3): pls help
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mohamed Faizz

79375266

Date: 2025-01-21 17:06:34
Score: 2
Natty:
Report link

I have xcode 16.2 and when I Just Control-click on the "folder" in the Project Navigator there are no group options in the popup. This is true for both folders and individual files.

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

79375254

Date: 2025-01-21 17:03:33
Score: 6
Natty: 7
Report link

Now Rasa 3.6.21 is able to run in MAC Apple M1 follow this guide https://medium.com/@divyanshubargali/a-beginners-guide-to-setting-up-rasa-and-training-your-first-chatbot-34f065e2851c

Reasons:
  • Blacklisted phrase (1): this guide
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Santhosh Kumar Sreeramoju

79375253

Date: 2025-01-21 17:03:33
Score: 1
Natty:
Report link

The CORS error occurs because you have enabled the CORS in your Function code and also in the catalyst console so that when fetching the resource from the Appsail domain to the Functions domain throwing the CORS error. To resolve this, kindly remove the CORS-related code from your function and try fetching the resources again from the AppSail domain to the Functions domain.

After removing the CORS configuration from your function, try fetching the resources again, and this should resolve the CORS error.

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

79375252

Date: 2025-01-21 17:03:33
Score: 3
Natty:
Report link

Getting the Porpitas Values is NOT the Problem. I wish to Write To Them..

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

79375249

Date: 2025-01-21 17:02:32
Score: 2.5
Natty:
Report link

You might not have it installed yet. It’s likely that you need to check your Node version or Install or update the dependencies.

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

79375248

Date: 2025-01-21 17:02:32
Score: 2.5
Natty:
Report link

I wrote a package specifically dedicated to reading these tables: {readMDTable). It can read markdown tables as tibbles from strings, files, and URLs.

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

79375245

Date: 2025-01-21 17:01:32
Score: 1.5
Natty:
Report link

Put this in your deploy.yml.

env:
  secret:
    - RAILS_MASTER_KEY
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sawaid

79375243

Date: 2025-01-21 17:00:31
Score: 1
Natty:
Report link

I had dockerised my NestJS using MariaDB for database code and was hitting the internal port instead of the external port with my requests. Illustration:

ports:
      - "5050:5005"  # Bind to IPv4 localhost explicitly

Using 5005 raised the error. Using 5050 worked.

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

79375235

Date: 2025-01-21 16:57:30
Score: 4.5
Natty:
Report link

You can check out their help article: https://help.webflow.com/hc/en-us/articles/36293473743123-Upload-a-well-known-file

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

79375227

Date: 2025-01-21 16:54:29
Score: 2.5
Natty:
Report link

in this link : https://scikit-optimize.github.io/stable/modules/generated/skopt.dummy_minimize.html

skopt.dummy_minimize:

funccallable

Function to minimize. Should take a single list of parameters and return the objective value.
def black_box_function(x_and_y):
    return -x_and_y[0] + 2 - (x_and_y[1] - 1) ** 2 + 1

i think this will solve your problem

Reasons:
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Wissem Rouin

79375226

Date: 2025-01-21 16:54:29
Score: 0.5
Natty:
Report link

As I was attempting to build the image with sudo the environment variables specified in ~/.bashrc were not there, as by default sudo resets the environment and creates a minimal environment with variables specified in /etc/environment . To bypass this, there is a -E flag in sudo. Thus,

sudo -E singularity build --bind /etc/ssl:/etc/ssl    image/python.3.12.2.debian.sif     def/python.3.12.2.debian.def

has solved the issue. --bind is still required to access certificates from inside the container.

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

79375214

Date: 2025-01-21 16:47:27
Score: 2.5
Natty:
Report link

If you want to do it at multiple places, with different logics (logs or just any similar side-effect), you might benefit by adding a peek function in a common utility, as described in the below answer

How to peek on an Optional?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Akshansh Jain

79375200

Date: 2025-01-21 16:43:26
Score: 0.5
Natty:
Report link

I encountered this exception while manipulating session history via history.pushState() and history.replaceState(). The state object I passed had circular references and apparently the serialization mechanism used by the History API is not the same as JSON.stringify() since the latter prints a nice error message about circular references (at least in Chrome).

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Burak Gök

79375197

Date: 2025-01-21 16:42:26
Score: 3
Natty:
Report link

Error occurs after version 6.6. You can downgrade the version or create your own id generator. Read more here

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

79375189

Date: 2025-01-21 16:40:26
Score: 1
Natty:
Report link
Try two things before actually uploading the image:

1) Put the image in the same folder as the css code file is.
2) When writing the url, just after the double quotes put forward slash and select the image location from the drop down that pops up. ( I hope you are using VS code editor)

In the CSS code:

body{
     background-image: url("/ImageFolder/ImageName.extension");
    }

Upvote if the answer was useful!!!
Reasons:
  • Blacklisted phrase (0.5): Upvote
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tanvi Nara

79375186

Date: 2025-01-21 16:39:24
Score: 6 🚩
Natty: 4
Report link

A similar problem happened to me today. It ended up that I accidentally unistalled MSYS, so I had to reinstall and reconfigure it. I followed this tutorial: https://youtu.be/DMWD7wfhgNY?si=tarom74lTTKXEkvY here is the link to the site: https://code.visualstudio.com/docs/cpp/config-mingw

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Blacklisted phrase (1): youtu.be
  • Blacklisted phrase (1): here is the link
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Antônio Marques

79375183

Date: 2025-01-21 16:38:24
Score: 1
Natty:
Report link

From today codebuild support parallel test and splitting of test

https://aws.amazon.com/about-aws/whats-new/2025/01/aws-codebuild-test-splitting-parallelism/

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

79375182

Date: 2025-01-21 16:38:24
Score: 2
Natty:
Report link

It seems possible using series_iir function

let rith_table = datatable(id:int, rith_col: dynamic)
[
    1, dynamic([1,2,3,4]),
    2, dynamic([4,8,12]),
    3, dynamic([7,14,21,28])
];
rith_table
| extend cum = series_iir(rith_col,dynamic([1]), dynamic([1,-1]))

This gives the expected result : enter image description here

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

79375178

Date: 2025-01-21 16:36:23
Score: 1
Natty:
Report link

Below is a C# implementation of the library catalog system that includes Book and Author classes. This code has been created from scratch and meets the outlined specifications. using System; namespace LibraryCatalog { // Author class for defining an author public class Author { // Properties public string Name { get; set; } public DateTime Birthdate { get; set; } // Constructor to initialize properties public Author(string name, DateTime birthdate) { Name = name; Birthdate = birthdate; } } // Book class for defining a book public class Book { // Properties public string Title { get; set; } public string ISBN { get; set; } public Author Author { get; set; } public bool Availability { get; set; } // Constructor to initialize properties public Book(string title, string isbn, Author author) { Title = title; ISBN = isbn; Author = author; Availability = true; // By default, the book is available } // Method for checking out the book public void CheckOut() { if (Availability) { Availability = false; Console. WriteLine($"Book '{Title}' has been checked out. "); } else { Console. WriteLine($"Book '{Title}' is not available for checkout. "); } } // Method for returning the book public void Return() { if (! Availability) { Availability = true; Console. WriteLine($"Book '{Title}' has been returned. "); } else { Console. WriteLine($"Book '{Title}' is already available. "); } } } // Example usage of the classes class Program { static void Main(string[] args) { // Create an author Author author = new Author("J. K. Rowling", new DateTime(1965, 7, 31)); // Create a book Book book = new Book("Harry Potter and the Sorcerer's Stone", "978-0439708180", author); // Check out the book book. CheckOut(); // Attempt to check out the book again book. CheckOut(); // Return the book book. Return(); // Attempt to return the book again book. Return(); } } } Explanation: Author Class: Contains properties Name and Birthdate. A constructor initializes these properties. Book Class: Contains properties Title, ISBN, Author, and Availability. A constructor initializes these properties, setting Availability to true by default. CheckOut() method sets Availability to false if the book is currently available. Return() method sets Availability to true if the book has been checked out. Program Class: Demonstrates the functionality of the Author and Book classes by creating an author, a book, and performing check-out and return operations.

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

79375176

Date: 2025-01-21 16:36:23
Score: 1
Natty:
Report link

For me it was due to VsCode's restricted mode

There was this small banner I did not notice at first. image showing restricted mode banner

When I was using the usual Ctrl+K Ctrl+F, it was saying:

They key combination (Ctrl+K Ctrl+F) is not a command

After losing some precious time on this issue, I finally activated the trusted mode and it worked as expected!

showing the workspace trust window

The main problem in my opinion is it should say the formatting is blocked by the restricted mode instead of having you guess it.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: XouDo

79375175

Date: 2025-01-21 16:36:23
Score: 0.5
Natty:
Report link

This is maybe a duplicate question of where I provided this answer: https://stackoverflow.com/a/79375166/3006576, to wit:

I just confirmed that this problem occurs because my home network is double-NAT with my actual router behind my Starlink router that is not in bridge mode. I downloaded everything through my ASUS router wired connection. Downloads were fine, but I got Validation Failed with cryptic “canceled by the user” PowerShell errors in the Hub info log. I switched to being connected directly to the Starlink router, retried the install, and it worked fine. This explains certain other posts in the Unity discussions about some network issues causing validation failure.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1): it worked
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: RealHandy

79375173

Date: 2025-01-21 16:36:23
Score: 1
Natty:
Report link

React Native Reanimated 4.0 comes with a support for an API similar to CSS Animations and Transitions. Currently available in Beta.

function App() {
  return (
    <Animated.View
      style={{
        transitionProperty: 'width',
        transitionDuration: 300,
      }}
    />
  );
}

Check out the Reanimated 4 documentation for more information.

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

79375159

Date: 2025-01-21 16:31:22
Score: 3.5
Natty:
Report link

I did a complete re-install of Keycloak on my local machine, and it's now working. Don't know what was going on, but apparently the issue was with Keycloak's configuration.

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