79489629

Date: 2025-03-06 14:15:35
Score: 0.5
Natty:
Report link

Within the settings.py file, before the cache settings were encountered, I instantiated a local client which made use of the Django cache API and thus set the cache backend to the default django.core.cache.backends.locmem.LocMemCache.

Moving the cache settings up in the file before the instantiation of the local client allowed the correct django_bmemcached.memcached.BMemcached backend to be set as specified.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Stéphan van Biljon

79489609

Date: 2025-03-06 14:05:33
Score: 2.5
Natty:
Report link

Check for "regular" filters removing rows... I spent hours looking for a programmatic solution, then an issue with excel, before finally realizing that a filter 30 columns in was blocking rows...

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

79489606

Date: 2025-03-06 14:04:32
Score: 3
Natty:
Report link

Thanks so much for your help!

@Bnazaruk – you were right, the issue was with a GTM tag. And thanks to @disinfor’s suggestion, I checked the console log. At first, it didn’t tell me much, but after looking at it a few times, I noticed a link related to CookieYes.

It turned out that the tag created for Consent Mode with CookieYes was conflicting with the plugin’s own script.js, leading to an infinite loop that prevented certain elements on the page from loading.

Now, I’ll be working on fixing the issue with this tag.

Once again, thanks for your help!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): thanks
  • Whitelisted phrase (-0.5): thanks for your help
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Bnazaruk
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Greg

79489598

Date: 2025-03-06 14:01:32
Score: 1
Natty:
Report link
schema = @Schema(types = {"integer"})

You can work around the issue by using "types" instead of "type".

It seems to be a bug with swagger core 3.1. Here and here are two GitHub issues related to the problem.

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

79489597

Date: 2025-03-06 14:00:31
Score: 4
Natty: 4
Report link

For me it lists nothing. But SQL Server Management Studio lists a lot. Anyone an idea why? (Local instance I parse from registry)

Reasons:
  • Blacklisted phrase (0.5): why?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: SVEN KUEHNE

79489588

Date: 2025-03-06 13:57:30
Score: 0.5
Natty:
Report link

Instead of pushing object

[ServiceContract(Namespace = "int:")]
[XmlSerializerFormat]
public interface IUsersService
{
    [OperationContract]
    [FaultContract(typeof(SoapResponse))]
    Task<GetUserSomethingResponse> GetUserSomething(GetUserSomethingQuery query);
}

Separating each parameter and delivering it into constructor with X amount of properties helped.

    ///Interface
    [OperationContract]
    [FaultContract(typeof(SoapResponse))]
    Task<GetUserSomethingResponse> GetUserSomething(string username, string id, bool archive);

///Implementation Method
public async Task<GetUserSomethingQueryResponse> GetUserSomethingQuery(string username, string id, bool archive) 
=> await mediator.Send(new GetUserSomethingQuery(username, id, archive));
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: SimonCrane

79489575

Date: 2025-03-06 13:54:30
Score: 0.5
Natty:
Report link
    <PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="8.0.13"/>
    <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.13"/>
    <PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="8.0.13"/>
    <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.13"/>
    <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.13" />
    <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.13"/>
    <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.7" />
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Bilal Furkan Karaca

79489573

Date: 2025-03-06 13:53:29
Score: 1
Natty:
Report link

I found the solution to my problem : npm install

Reasons:
  • Whitelisted phrase (-2): I found the solution
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: KarljoY973

79489572

Date: 2025-03-06 13:53:29
Score: 0.5
Natty:
Report link

You need to use TarantoolTuple, everything works with it. Below is an example.

var turple = TarantoolTuple.Create(fromToHash, newest, oldest, _limit);
var result = _client.Call<TarantoolTuple<long, long, long, int>, TarantoolTuple<long, string, string, long, string, string>[]>("message_get_list_in_range", turple).Result;
var res = result.Data.FirstOrDefault();
if (res != null)
{
    var output = res.Select(x => new MessageEntity()
    {
        Id = x.Item1,
        From = x.Item2,
        To = x.Item3,
        FromToHash = x.Item4,
        SendingTime = DateTime.Parse(x.Item5),
        Text = x.Item6
    });

    return output;
}
else
{
    return new List<MessageEntity>();
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Vladislav Filatov

79489564

Date: 2025-03-06 13:48:28
Score: 2.5
Natty:
Report link
using MemoryCache cache = new(new MemoryCacheOptions());

as shown here https://www.nuget.org/packages/microsoft.extensions.caching.memory

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

79489555

Date: 2025-03-06 13:43:27
Score: 6 🚩
Natty: 4.5
Report link

When i try to write the above xml namespace as setattributeNs and deploy it in dev environment I am facing backslash issue like the escape characters for “”. Is there any solution for it

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

79489548

Date: 2025-03-06 13:41:26
Score: 1.5
Natty:
Report link

Adding

-Dspring-boot.build-image.imagePlatform=linux/arm64

to spring-boot:build-image did the trick for me.

See https://docs.spring.io/spring-boot/maven-plugin/build-image.html

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

79489547

Date: 2025-03-06 13:41:26
Score: 3
Natty:
Report link

I believe the bottleneck you're facing is the use of the job queue. I've seen many solutions online that have the same problem.

First you're using hardware_concurrency to determine the number of threads you want to use. The fact is that the call returns the number of logical processors (see SMT or Hyperthreading), if you're doing a lot of calculation maybe you should try something closer to the physical CPU count or you won't see much speedup.

Also you're using a mutex and a condition var, which is correct, but prone to frequent context switch that can mess with the scaling of your solution.

I'd try to see if batching can be implemented, or maybe trying some active waiting methods (i.e. spinlocks instead of locks). Also as other suggested, reserving the memory in advance can be good, but std::vector makes a good job already, also memory caches are really efficient (so probably the bottleneck isn't there).

There are also a lot of job queues that are lock-free. See for example LPRQ which is a multiproducer-multiconsumer queue. The paper has also an artifact section from which you can get the actual implementation.

If you find the implementation too complicated you can think of having a buffer from the producer to every consumer (in a lock free manner), the implementation is much more simple See here and probably scales much better than a single buffer shared between threads (assuming the thread count is known in advance).

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): have the same problem
  • Low reputation (0.5):
Posted by: Mattia Piras

79489539

Date: 2025-03-06 13:39:25
Score: 1
Natty:
Report link

You can do the following:

enter image description here

enter image description here

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

79489536

Date: 2025-03-06 13:38:25
Score: 3
Natty:
Report link

did you know, you can run javascript by typing (javascript:"your code") in addressbar of browser, you can run it? also,you can load html by typing ("data:text/html,"your html code") in addressbar.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: ali reza

79489532

Date: 2025-03-06 13:36:25
Score: 0.5
Natty:
Report link

On my case adding the following line in the iOS .podspec fix the problem (in the podspec from your iOS Swift library, not from the React Native library):

s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }

Then re-run pod install in your react native example app and Clean the Build folder

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

79489522

Date: 2025-03-06 13:31:23
Score: 1
Natty:
Report link
python -c "import sys, json; print json.dumps(json.load(sys.stdin),sort_keys=True, indent=0)" < json_file

 python -c "import sys, json; print json.dumps(json.load(sys.stdin),sort_keys=True, indent=0)" < json_file | tr -d "\n"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sudarsan Bandi

79489509

Date: 2025-03-06 13:28:23
Score: 1.5
Natty:
Report link

Images under /public can be shown directly from URL. Try to open it and see if is visible. If so, may is do to some CSS classes or something about Image tag. Did you tryied to use the tag (the classic tag and not the component) to see if it work?

Reasons:
  • Whitelisted phrase (-2): Did you try
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Marco Rovida

79489508

Date: 2025-03-06 13:27:23
Score: 2
Natty:
Report link

The biggest mistake I have seen, regardless of the database chosen (relational, document), is no clear ageoff strategy. One of the first things I ask, is how long is the data relevant. You would be surprised how many times I hear, "I don't know". The second question I ask, is what makes a record unique, again you would be surprised in the answers.

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

79489490

Date: 2025-03-06 13:21:21
Score: 2
Natty:
Report link

You could request a test notification in production to see how long it takes.

https://developer.apple.com/documentation/AppStoreServerAPI/POST-v1-notifications-test

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

79489488

Date: 2025-03-06 13:20:21
Score: 3.5
Natty:
Report link

Yes, the language and region change to English (United states) helped.

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

79489483

Date: 2025-03-06 13:19:21
Score: 3.5
Natty:
Report link

this is also the necessary requirement

  1. List item
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ani

79489477

Date: 2025-03-06 13:18:20
Score: 0.5
Natty:
Report link

The issue is with how the /D option is used—it needs to be applied to the forfiles command directly, not inside the cmd /c part.

Try modifying your code like this:

echo off
forfiles /p "c:\users\J33333\Desktop\DDrive\test" /s /m "TS*.xmt" /D -30 /c "cmd /c del @file"
exit

Here's the breakdown:

This should delete only the files that match both criteria: filenames starting with "TS" and older than 30 days.

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

79489471

Date: 2025-03-06 13:16:20
Score: 2
Natty:
Report link

Run these 2 commands and then install git

sudo apt update
sudo apt upgrade
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nishtha Jain

79489469

Date: 2025-03-06 13:16:20
Score: 3
Natty:
Report link

Youre skibidi,

But your kaas and eat kaas

Ask your mentor about this, oh nevermind He hates you !

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

79489462

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

To identify and solve this problem, you could use OCR and anomaly detection. Firstly, fetch structured data from the images using Tesseract OCR or google Vision API then, clean and organize them in data frame. The usage of statistical methods like mean, IQR and standard deviation or ML models like Isolation, Forest, Autoencoders, Clustering can detect unusual number of event counts. Categorize zero values by comparing them with typical patterns of the past time period to determine if they are intended or error, At the very end, weed out wrong-flagged anomalies and enhance the detection model.

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

79489459

Date: 2025-03-06 13:11:19
Score: 0.5
Natty:
Report link
import {
  to = aws_iam_role.devops
  id = "devops"
}

resource "aws_iam_role" "devops" {
  assume_role_policy = jsonencode({}) # This is a required field, make it an empty poliy
}

Then run terraform apply (or tofu apply).

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

79489454

Date: 2025-03-06 13:10:19
Score: 2.5
Natty:
Report link

change the link in the "use application" activity. So that it targets in the browser of your choice.

Once this is done, it should open the selected browser.

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

79489453

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

I had a very similar issue with nginx proxy manager.
after hours of debugging decided to see if this issue could be related to the nginx/proxy manager itself.
I switched to Caddy and everything worked without any issue.
so I guess it was related somehow to NPM.

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

79489451

Date: 2025-03-06 13:10:19
Score: 1.5
Natty:
Report link

I had it working with only ignoredPaths: ['customs'],

I have not checked this but it will probably ignore everything that's coming from this path

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

79489447

Date: 2025-03-06 13:09:18
Score: 1
Natty:
Report link

Ok, so, the answer I used looked like this:

class MyClassName(App):
    def __init__(self, **kwargs):
        super(MyClassName, self).__init__(**kwargs)
        Clock.schedule_once(lambda dt: self.place_canvas(), timeout=0.01)
    #Create card
    card1 = Factory.CardGL()

    #Placing card in scrolling layout
    sm.get_screen('sm3').ids.Dashboard_SM_1.get_screen('DB_MAIN').ids.DB_MAIN_BL_T_01.add_widget(card1)
    sm.get_screen('sm3').ids.Dashboard_SM_1.get_screen('DB_MAIN').ids['card_1'] = weakref.ref(card1)




    def place_canvas(self):
        self.core_item = sm.get_screen('sm3').ids.Dashboard_SM_1.get_screen('DB_MAIN')
        self.bound_item = self.core_item.ids.card_1
        self.size_out = StringProperty()
        self.pos_out = StringProperty()
        self.size_out = self.bound_item.size
        self.pos_out = self.bound_item.pos
        self.bound_item.canvas.add(RoundedRectangle(source = self.GS_IMG_LSRC, pos = self.pos_out, size = self.size_out))
        # Header
        cardtopgl = Factory.CardTopGL()
        self.core_item.ids.card_1.add_widget(cardtopgl)
        self.core_item.ids['cardtop_gl'] = weakref.ref(cardtopgl)
        cardtopbt = Factory.CardTopBT(text='[b]Grocery[/b]')
        self.core_item.ids.cardtop_gl.add_widget(cardtopbt)



I didn't need to change any of the .kv stuff, and I've eliminated some of the other things I put in the card for berevities sake, but this should give a picture of what solved my issue. Basically I just made python wait until the object was rendered and placed before putting anything in it. This probably isn't the most ideal solution, but it works for my needs atm.

Thanks to the people who commented, even though I didn't use your exact solution, it took me down the road to find what I needed.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Brian Linden

79489441

Date: 2025-03-06 13:04:17
Score: 4.5
Natty:
Report link

I have resolved my query. What I was wanting to do was to calculate the overtime based on the Total Number of hours worked in a week, the standard hours being 40 per week and 8 per day. Overtime is only paid once both thresholds are breached. Thank you all for your help, it was veery much appreciated. Especially Black cat, as the reminder about SUM(FILTER()) function was key.

Kind Regards, John

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): Regards
  • Blacklisted phrase (1): appreciated
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: John Hendrick

79489432

Date: 2025-03-06 13:02:16
Score: 2
Natty:
Report link

colors = colorgram.extract('images.jpg', 1000) we can pass upper limit of number so it will give the no. of color present example it have 100 then it will give you 100 so we can set the limit higher

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

79489431

Date: 2025-03-06 13:01:16
Score: 0.5
Natty:
Report link

Your issue is likely due to missing font support for non-English characters in the web export.

Try these fixes:

  1. Use a Unicode Font: Import a font like Noto Sans or Arial Unicode and set it in Project Settings > GUI > Theme > Default Font. \
  2. Use DynamicFont: Create a DynamicFont resource, load a TTF/OTF font, and apply it to UI elements. \
  3. Ensure Fonts Are Included in Export: Check export_presets.cfg to make sure the font is bundled. \
  4. Test Encoding: Print different language characters in the console to see if they are processed correctly.
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Qasim Leo

79489428

Date: 2025-03-06 13:00:16
Score: 4.5
Natty:
Report link

Got it! it was a problem with the port. Fixed now! Thanks you

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

79489427

Date: 2025-03-06 12:59:16
Score: 0.5
Natty:
Report link

You shouldn't run Spark inside Airflow, especially on MWAA, which uses the Celery Executor by default (tasks share the same compute). Airflow is designed for workflow orchestration, not heavy data processing. Running Spark directly within Airflow tasks will inevitably lead to resource contention and potential failures due to MWAA’s limited compute resources.

Instead, offload the Spark job to a dedicated service like AWS Glue or EMR & use the Airflow operators to trigger these services. See here for example operator for Glue.

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

79489422

Date: 2025-03-06 12:57:15
Score: 1
Natty:
Report link

Posting this in case anyone needs it nowadays.

You can check it out here inside the Unpack Profile section.

A provisioning profile is a property list wrapped within a Cryptographic Message Syntax (CMS) signature. To view the original property list, remove the CMS wrapper using the security tool:

% security cms -D -i Profile_Explainer_iOS_Dev.mobileprovision -o Profile_Explainer_iOS_Dev-payload.plist
% cat Profile_Explainer_iOS_Dev-payload.plist 
…
<dict>
  … lots of properties …
</dict>
</plist>
Reasons:
  • Blacklisted phrase (0.5): check it out
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Franco Angulo

79489419

Date: 2025-03-06 12:56:15
Score: 2
Natty:
Report link

I got the same error. The ICS file is probably not valid. You can open it on other operating systems, but it's not working in Safari. Check if your ICS file is valid—I used this page to validate it: https://icalendar.org/validator.html.

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

79489414

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

In 2025 there is:

text-indent: 3em each-line;

however it's currently not supported by Chromium.

It sets text indent for every new line in the textarea (it doesn't apply to wraped text).

More info here

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

79489413

Date: 2025-03-06 12:54:14
Score: 1
Natty:
Report link

yii\base\ErrorException: Undefined variable $start in /var/www/tracktraf.online/frontend/controllers/TelegramController.php:197 Stack trace: #0 /var/www/tracktraf.online/frontend/controllers/TelegramController.php(197): yii\base\ErrorHandler->handleError() #1 [internal function]: frontend\controllers\TelegramController->actionRotatorCheck() #2 /var/www/tracktraf.online/vendor/yiisoft/yii2/base/InlineAction.php(57): call_user_func_array() #3 /var/www/tracktraf.online/vendor/yiisoft/yii2/base/Controller.php(178): yii\base\InlineAction->runWithParams() #4 /var/www/tracktraf.online/vendor/yiisoft/yii2/base/Module.php(552): yii\base\Controller->runAction() #5 /var/www/tracktraf.online/vendor/yiisoft/yii2/web/Application.php(103): yii\base\Module->runAction() #6 /var/www/tracktraf.online/vendor/yiisoft/yii2/base/Application.php(384): yii\web\Application->handleRequest() #7 /var/www/tracktraf.online/frontend/web/index.php(18): yii\base\Application->run() #8 {main}

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

79489409

Date: 2025-03-06 12:52:14
Score: 2.5
Natty:
Report link

I attempted to make a smooth snake game, but i didnt add the curved junctions because i used div boxes as snake parts, here it is:

https://github.com/meedo-blip/meedo-blip.github.io

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

79489404

Date: 2025-03-06 12:50:13
Score: 2
Natty:
Report link

I had such error and the root cause was using different hostname than what is in the certificate. Ensure your hostname matches the one in certificate. You can quickly test it by putting it into /etc/hosts if it is not in your dns

Maybe beause of TLS1.3 the error is so cryptic?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Michel Samia

79489400

Date: 2025-03-06 12:49:13
Score: 2
Natty:
Report link

As people in comments said, the problem wasn't with IsProcessCritical (which works as intended), but with OpenProcess, that cannot open processes created by anybody other than User, therefore creating an invalid handle. Running .exe as asministrator partly solves the problem (only few really important system processes cannot be opened, like dwm.exe, fontdrvhost.exe etc.) It's interesting that only a few processes are considered critical by IsProcessCritical (like smss.exe, services.exe or wininit.exe), but not the "System" process for whatever reason

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

79489388

Date: 2025-03-06 12:44:12
Score: 0.5
Natty:
Report link

Embedding of extended Characters in pd[4]ml are a paid for addition thus you need to change your license. this can clearly be seen in the older help. Thus you need to check current pricing.

https://i.sstatic.net/pL3Pevfg.png

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

79489386

Date: 2025-03-06 12:43:12
Score: 1.5
Natty:
Report link

After a support case with Microsoft, they confirmed that it is not supported to do prechecks on ROPC flows. This is a blocker for many scenarios with B2C and existing ROPC flows (expecially when migrating from a different IDP). I ended up creating a pod that intecepts the request, do the prechecks then forwards the request to B2C. I used it to migrate users from a different B2C before authenticating them on the target B2C when using ROPC.

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

79489381

Date: 2025-03-06 12:40:12
Score: 2.5
Natty:
Report link

This should be able to done by set enable.schema.validation=false. But what I actually need is Extend Avro schema via Java API by adding one field

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

79489380

Date: 2025-03-06 12:40:12
Score: 2.5
Natty:
Report link

I ended up building the missing functionality in the pyspark API for arbitrary stateful functions for myself, using at first the delta tables as a means of keep the state information. This worked fine, but in order to speed up to sub-second processing of our cases we ended up with a more production ready version that used a redis cache in the background.

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

79489379

Date: 2025-03-06 12:40:12
Score: 1.5
Natty:
Report link

SBT (due to using Coursier since 1.3.x) will by default hold on to the old cached snapshot for 24 hours. You will need to set COURSIER_TTL=0s (as per SBT docs: https://www.scala-sbt.org/release/docs/Dependency-Management-Flow.html#Notes+on+SNAPSHOTs):

export COURSIER_TTL=0s
sbt update # <- this will now always lookup for changes
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: bruceoutdoors

79489373

Date: 2025-03-06 12:39:11
Score: 2.5
Natty:
Report link

Have you checked if the signing secret used is the same on the backend and on the jwt.io?

What you have described seems to be a problem with inconsistent signing secret.

I also had a similar problem on my app and it was because of a space difference in the secret.

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

79489367

Date: 2025-03-06 12:37:10
Score: 6 🚩
Natty:
Report link

@Martín Thank you for your help the toast command worked perfectly

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-0.5): Thank you for your help
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Martín
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Andy James

79489365

Date: 2025-03-06 12:37:10
Score: 0.5
Natty:
Report link
<build>
<plugins>
    <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>jaxb2-maven-plugin</artifactId>
        <version>2.5.0</version>
        <executions>
            <execution>
                <goals>
                    <goal>generate</goal>
                </goals>
            </execution>
        </executions>
        <configuration>
            <schemaDirectory>${project.basedir}/src/main/resources</schemaDirectory>
            <outputDirectory>${project.basedir}/target/generated-sources/xjc</outputDirectory>
            <packageName>com.example.generated</packageName>
        </configuration>
    </plugin>
</plugins>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Vasanth S

79489361

Date: 2025-03-06 12:35:10
Score: 3
Natty:
Report link

https://portal.perforce.com/s/article/2911 Can't directly comment answer above, but if you struggling to find .p4qt folder. Here is where it can be found.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): Can't
  • Low reputation (1):
Posted by: Vladimir Koskov

79489358

Date: 2025-03-06 12:34:09
Score: 0.5
Natty:
Report link

A possible solution is to use sklearn -sklearn.model_selection.StratifiedKFold, which seems to do exactly what you are looking for and seamlessly integrates with pandas and numpy.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Roger V.

79489356

Date: 2025-03-06 12:34:09
Score: 1.5
Natty:
Report link

I solve this by updating my expo-file-system and my expo-print to the required version for my expo sdk, in my case:

"expo": "~48.0.21",

is

"expo-file-system": "~15.2.2", "expo-print": "~12.2.1",

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

79489354

Date: 2025-03-06 12:34:09
Score: 2.5
Natty:
Report link

I created a new chat app project, added the code, clicked on "Manage Deployment," created a deployment, and added it to the Chat API. Now, it's working properly and can be accessed by others. I believe the issue was that initially, I deployed it in Test Deployment, and after making changes to the same project, they didn’t reflect. So, I created a new one and deployed it from Manage Deployment option.

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

79489353

Date: 2025-03-06 12:33:09
Score: 2
Natty:
Report link

No, it is not possible.

But you can recreate it, created resources will stay remain the same.

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

79489351

Date: 2025-03-06 12:33:09
Score: 5
Natty:
Report link

hard to say like this but here are a few troubleshooting steps you can try and let me know what did you found out:

  1. Ensure that the Chat app is actually added to the group conversation. Try mentioning the bot directly using @your-bot-name to check if it recognizes the app.

  2. Ensure your appsscript.json includes the required scopes for Google Chat:

    {"timeZone": "America/New_York","dependencies": {},"webapp": {"executeAs": "USER_DEPLOYING","access": "ANYONE"},"oauthScopes"["https://www.googleapis.com/auth/chat.bot"]}

  3. If you used the "Editor Add-on" deployment, try deploying as a "Web app" instead: Go to Apps Script → Deploy → New Deployment. Select Web app. Set Who has access to Anyone or Anyone within your domain. Copy the URL and register it in Google Cloud Console under the Chat App's configuration.

  4. Go to Google Cloud Console: Navigate to IAM & Admin → IAM. Ensure the service account linked to your Chat bot has the roles/chat.botUser or roles/chat.appAdmin role.

  5. In Apps Script, go to Executions and check for errors. If the bot is getting triggered but not responding, there might be an issue in your doPost(e) or doGet(e) function.

  6. Try removing and re-adding the bot to the conversation to refresh permissions.

  7. Create a new group conversation and add the bot to see if it behaves differently.

could you check if any errors appear in your Google Cloud Logs? That can provide more insight into what's preventing the bot from responding.

Reasons:
  • RegEx Blacklisted phrase (3): did you found out
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @your-bot-name
  • Low reputation (1):
Posted by: TalG

79489350

Date: 2025-03-06 12:33:09
Score: 1
Natty:
Report link

Yes, it definitely does. But it depends on how the popups are implemented. You should be fine if you use the defer keyword to load javascript.

I recommend you use optimized images and assets of low size as popup content to keep it fast.

You can find more on this detailed case study here - https://www.poper.ai/blog/popups-affect-your-websites-speed/

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

79489341

Date: 2025-03-06 12:31:08
Score: 11 🚩
Natty: 4
Report link

Did you find the fix in the meantime? Im also facing the same issue with assets and bare expo configuration, when using expo/metro-config.

Reasons:
  • RegEx Blacklisted phrase (3): Did you find the fix
  • RegEx Blacklisted phrase (1.5): fix in the meantime?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): also facing the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find the fix in the me
  • Low reputation (1):
Posted by: Simona Denić

79489334

Date: 2025-03-06 12:29:07
Score: 2.5
Natty:
Report link

excellent, this approach worked for me

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

79489333

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

You can export function from component in the script context="module".

<script context="module">
   export function test(){
     return "test";
   }
</script>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jardulino

79489329

Date: 2025-03-06 12:26:06
Score: 14
Natty: 7
Report link

I have the same question,The latest version of Android Studio has been used. The debugging is conducted through the emulator. android studio version is 2024.3.1,However, reinstalling Android Studio still fails to display the Database Inspection tab. May I ask, do you have any suggestions?

Reasons:
  • Blacklisted phrase (1): I have the same question
  • Blacklisted phrase (1): May I ask
  • RegEx Blacklisted phrase (2): any suggestions?
  • RegEx Blacklisted phrase (2.5): do you have any
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same question
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29914883

79489320

Date: 2025-03-06 12:22:04
Score: 2
Natty:
Report link

for me, the column was used in some computed column's formula. it can be some constraint or a trigger too.

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

79489317

Date: 2025-03-06 12:20:04
Score: 0.5
Natty:
Report link

I also tried falling back to a routed module for a secondary router outlet, but then it gets complicated, as the URL gets updated with some (secondary: onboarding) string and - if one uses skipLocationChange - needs to be constantly monitored not to unload the dynamically loaded module.

So I am still looking for a solution to display a component from a dynamically loaded module (with further components, interfaces and services) which doesn't affect routing and stays persistent across the app. Any ideas are greatly appreciated.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any ideas
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: pop

79489301

Date: 2025-03-06 12:16:03
Score: 0.5
Natty:
Report link

I added the stages: to main pipeline and moved the job templates inside stage: statements. Added DependsOn to stage:.

This changes in pipeline.yaml file avoided change in azure-build.yaml file and solved my purpose to add dependency between two jobs.

e.g.

Pipeline.yaml

stages: 
  - stage: 'build'      
    jobs:
    - template: azure-build.yaml@templates
      parameters:
      ...
  - stage: 'test'
    dependsOn: 'build'
    jobs:
    - template: azure-test.yaml@templates
      parameters:
      ...
  
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Tanu G

79489297

Date: 2025-03-06 12:14:02
Score: 3.5
Natty:
Report link

removed "@types/lodash-es" package

instead added "@types/lodash" : 4.14.149

and the build was green

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Desu Sri Meghana

79489296

Date: 2025-03-06 12:13:02
Score: 0.5
Natty:
Report link

I managed to solve it by adding an additional column ipbucket in which i store the trunc(clientip_value/1000000) and also storing in the ip lookup table trunc(FROM_IP_VALUE /1000000). Then we do a equi join based on that. So the range scan has to be done only on a lesser volume. To do this i had split the rows in IP_ADDRESS_DETAILS so that one row does not span in more than one bucket (i.e.) say if the range was from 10000000 to 25000000 then value from 10000000 to 19999999 in one bucket and 20000000 to 25000000 with the same location details. So new query will be

SELECT cv.visit_id,cv.client_id ,ida.country,ida.city,ida.area,
ida.latitude,ida.longitude
FROM   client_visit cv,ip_address_details ida
WHERE  cv.visit_date  >= trunc(sysdate-2)
AND cv.visit_date  < trunc(sysdate-1)
AND cv.ipbucket = ida.ipbucket
AND (cv.clientip_value >=  ida.from_ip_value) 
AND (cv.clientip_value < ida.to_ip_value)
  
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Balaji Govindan

79489293

Date: 2025-03-06 12:13:02
Score: 0.5
Natty:
Report link

So here's what might be going on: DOMPDF is super picky about where it can grab images from (for security reasons). It's basically saying "I can't find these images where you told me to look"

My suggestions are:

  1. Make sure you've got the PHP GD extension turned on (sounds like you've already done this)

  2. Try using full paths to your images:

    $newPath = public_path($value);

  3. Double-check your security settings:

    'chroot' => public_path(),

    'isRemoteEnabled' => true

If you're still struggling with DOMPDF image issues, consider using a third-party API service like https://pagesnap.co. These services handle all the PDF generation complexities for you, especially when dealing with images and complex layouts.

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

79489292

Date: 2025-03-06 12:12:02
Score: 3
Natty:
Report link

The gist in the accepted answer has a bug in that it doesn't include milliseconds in the ULID. I've created a fork with the correction, and a few other changes: https://gist.github.com/mark2016/64b29b6b42032750a21956a0da1956aa

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

79489288

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

In Visual Studio 2022 we can do this by prefixing a raw or literal string with /*lang=regex*/

/*lang=regex*/@"^HF/B\d$"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ben Bradley

79489271

Date: 2025-03-06 12:04:00
Score: 2
Natty:
Report link

drawables[0] = new GradientDrawable(GradientDrawable.Orientation.TL_BR,  new int[]{colors.get(0), colors.get(1)});

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

79489261

Date: 2025-03-06 12:01:00
Score: 1.5
Natty:
Report link

You may have better luck with an awk script or using python.

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

79489259

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

By default, Coil 3.x does not respect Cache-Control headers and always saves a response to its disk cache. Caching works out-of-the-box with no extra configuration required. More info at Cache-Control support.

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

79489252

Date: 2025-03-06 11:57:59
Score: 3.5
Natty:
Report link

you are using SAP Cloud SDK version 3.x, which reached end-of-life two years ago. Your problem can probably be resolved by updating to the current version (right now that is 5.17).

For updating guides, please refer to the official docs.

Best regards, Jonas

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jonas Isr

79489242

Date: 2025-03-06 11:50:57
Score: 6
Natty: 8.5
Report link

How can i get the CMP, RSI, Volume of a stock from nseindia [example- reliance] ?? Anyone who knows similar kind of api ?

Reasons:
  • Blacklisted phrase (0.5): How can i
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How can i
  • Low reputation (1):
Posted by: saurabh

79489231

Date: 2025-03-06 11:48:57
Score: 1
Natty:
Report link

This is caused by a datetime value of "0000-00-00" (a zero date) in a datetime column.

If this is intentional you'll need to use the "Allow Zero Datetime=True" connection string option.

More likely this is a data error and should be fixed in the table. NULL is the appropriate value for where there isn't a value for this type of field. You may need to alter the table to allow nulls for this column.

One reason why the column might not be nullable is if it's in a primary key. You can resolve this by using a known valid date as the 'null' value or using the connection string option. Using the connection string value will be more fragile, unless the need is well documented.

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

79489228

Date: 2025-03-06 11:48:57
Score: 3.5
Natty:
Report link

Finally, I found a temporary solution. Bypassed the Primitive Obsession code-smell and stopped using strong type IDs, and it started working. Now it's OK.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Quang Hưng Nguyễn

79489227

Date: 2025-03-06 11:48:57
Score: 3.5
Natty:
Report link

please check web.config may be missed!

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

79489217

Date: 2025-03-06 11:44:55
Score: 4.5
Natty:
Report link

I have found the solution, but if I'm completely honest, I'm not sure why it works. Its as simlpe as:

Set searchbar = chrome.FindElementByXPath("//input[@id='jpkm2']")

Does anyone know why this method allows me to access these elements, while looping through all elements on the page doesnt find it, and .FindElementById throws "NoSuchElementFound" instead?

Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Daniel

79489213

Date: 2025-03-06 11:43:55
Score: 3
Natty:
Report link

Merci pour votre réponses . Maintenant , je comprends, je vais donc travailler avec value :" url site " et mettre l' URL à chaque fois manuellement . Au début , je pensais que cela fonctionnerait automatiquement ( d'une manière ou d'une autre ) Larissa 6 mars 2025 à 14 : 38

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

79489206

Date: 2025-03-06 11:39:55
Score: 2.5
Natty:
Report link

in browser console write IdentityAccessToken

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: fatma zayed

79489202

Date: 2025-03-06 11:37:54
Score: 1.5
Natty:
Report link

If you want to use results of SHOW command in plpgsql, than you can.

DECLARE
    l_search_path TEXT;
BEGIN
    SHOW search_path INTO l_search_path;
    RAISE NOTICE 'SHOW search_path=%', l_search_path;

You can also store results of eg. EXPLAIN in similar fashion.

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

79489198

Date: 2025-03-06 11:36:54
Score: 3
Natty:
Report link

I have the same error. My solution is funny. But it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): solution is
  • RegEx Blacklisted phrase (1): I have the same error
  • No code block (0.5):
  • Me too answer (2.5): I have the same error
  • Low reputation (1):
Posted by: Soner Acar

79489182

Date: 2025-03-06 11:32:53
Score: 3
Natty:
Report link

Press CMD while hovering. VS Code introduced this built-in hover feature in v1.96, as mentioned in this comment as well:

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

79489175

Date: 2025-03-06 11:29:52
Score: 1.5
Natty:
Report link

You can use https://pub.dev/packages/interactive_chart they also have quite good ui as well as interactive view supported in their package.

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

79489174

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

It's in go best practice the call defer file.Close() when either opening or creating file for usage.

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

79489173

Date: 2025-03-06 11:29:52
Score: 4.5
Natty:
Report link

I contacted support as suggested by @karllekko and I ended up created a new pull request.

https://github.com/stripe/stripe-react-native/pull/1653

if anyone interested

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @karllekko
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mina W Alphonce

79489157

Date: 2025-03-06 11:23:51
Score: 3.5
Natty:
Report link

need to remove the connection of the app module from the current module.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Дмитрий Каштанов

79489153

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

**Right access privileges for Canoe Application. **

Access Denied Error when run Canoe from Jenkins Remotely But in Locally it is Running fine

Root cause: Need to give right access privileges for Canoe Application. How to give Access

Step 1: window button Search decomcnfg.exe Then run dcomcnfg.exe as Administrator

enter image description here

Step 2: then click on Component Service after that click on My Computer after that click on DCOM Config after go to the Vector CANoe Application

enter image description here

Step 3: go to Vector Application Property select Security enter image description here

Step 4: Come to the Access Permission uncheck Use Default select customize

enter image description here

Step 5: Allow Local Access as well as Remote Access the ok apply and save enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Balmiki kumar Mandal

79489152

Date: 2025-03-06 11:22:50
Score: 4
Natty:
Report link

You could use react-to-print to achieve this.

I have achieved the same as like the images below enter image description here enter image description here

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

79489141

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

Project Build Settings > search for Optimization Level and change it to No Optimization enter image description here

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

79489139

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

I am getting very similar issues. VS keeps asking me to re-enter my credentials and then I can't do that. I have change the account setting to try using all of the available options - embedded browser, system browser, windows broker - nothing works. looking in logs I am getting this: Error: 'MSAL.NetCore.4.66.1.0.MsalClientException: ErrorCode: authentication_ui_failed.

it's driving me nuts.

I'm on version 17.13.1 - I downgraded from 17.13.2.

When account settings is set to use embedded browser, if i try to sign-in again, after a long wait, 2 mins or so, I get a blank window pop up for a couple of minutes, and then an error iv VS saying: The browser based authentication dialog failed to complete. Reason: The server or proxy was not found.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am getting very similar issue
  • Low reputation (0.5):
Posted by: RichJohnstone

79489135

Date: 2025-03-06 11:18:49
Score: 0.5
Natty:
Report link

Your main command being run within the run_metropolis rule is:

./run_extended_metropolis.sh metropolis_extended

The replica number is not specified here, so how does this program know what output file name to create? My assumption is that within the shell script it looks for the existing files matching beta_0.1_b_0.01/data_1_first500/replica_*.csv and then creates a file with the next number in sequence.

This is not going to wash with Snakemake, since Snakemake is not running the jobs in order of the {replica} wildcard. See how it starts with replica 309. Even if you forced it to run in order, presumably you want your workflow to be able to run jobs in parallel, or retry failed jobs.

You are going to need to modify your bash_script so that the output file name can be explicitly supplied by Snakemake, not picked by the script. Depending on what that script does, you may even find it easier to invoke metropolis_extended directly.

If you get this working, then as pointed out by @cornelius-roemer in the comment above, you also have some extraneous stuff in your Snakefile:

And you should also use an explicit log: directive to specify the log file, rather than {params.outdir}/debug.log.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @cornelius-roemer
  • Low reputation (0.5):
Posted by: Tim Booth

79489133

Date: 2025-03-06 11:17:48
Score: 0.5
Natty:
Report link

Alright, there are lots of problems here:

  1. Swig does not like the keyword const and I cannot find a solution for that other than dropping it.
  2. As Human006 said, there is a Problem with passing NumPy scalars to float*. out{R,G,B} is now a 3x1 array and declared as an INPLACE_ARRAY. The numpy Swig documentation exactly explains this problem and gives as solution, which did not work for me thou.
  3. You cannot wrap code with 3 arrays and one dimension, so exposing the function declaration with the %include statement at the end of the SWIG interface file will cause problems. Solution: Remove the include and wrap the function manually like in following SWIG file:
%module AesAutoWhiteBalance

%{
#define SWIG_FILE_WITH_INIT
#include "AesAutoWhiteBalance.h"
%}

// Include the NumPy typemaps
%include "numpy.i"

%init %{
import_array();
%}

%fragment("NumPy_Fragments");

// Wrap the AesAutoWhiteBalance_Balance function
%apply (unsigned short* IN_ARRAY1, int DIM1) { 
(unsigned short* measurementsR, int size_r), 
(unsigned short* measurementsG, int size_g), 
(unsigned short* measurementsB, int size_b) };

// Apply the typemaps for output argument
%apply (float* INPLACE_ARRAY1, int DIM1) { (float* balancingCoeffs, int out_size) };

/*  Manual wrapping comes here */
%inline %{
    /*  takes as input two numpy arrays */
    void balance(
    unsigned short * measurementsR, int size_r, 
    unsigned short * measurementsG, int size_g, 
    unsigned short * measurementsB, int size_b, 
    int bitWidth, 
    float* balancingCoeffs, int out_size
    ) {
        if(3 != out_size)
        {
            PyErr_Format(PyExc_ValueError, "Parameter balancingCoeffs must have length 3.");
            return;
        }
        if((size_r != size_g) || (size_r != size_b))
        {
            PyErr_Format(PyExc_ValueError, "The measurement arrays have different lengths: R:%d, G:%d, B:%d", size_r, size_g, size_b);
            return;
        }

        /*  calls the original funcion, providing only the size of the first */
        AesAutoWhiteBalance_Balance(measurementsR, measurementsG, measurementsB, size_r, bitWidth, balancingCoeffs);
        return;
    }
%}
Reasons:
  • Blacklisted phrase (1): did not work
  • Blacklisted phrase (1.5): I cannot find
  • Blacklisted phrase (0.5): I cannot
  • Whitelisted phrase (-2): Solution:
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Philli

79489130

Date: 2025-03-06 11:16:48
Score: 0.5
Natty:
Report link

If you want the pretty-print effect of print(obj), but output to stderr, use capture.output with file=stderr(). This is a wrapper on sink() as mentioned in another response.

capture.output( list(A=1,B=5:2), file=stderr())

The following goes to stderr

$A
[1] 1

$B
[1] 5 4 3 2
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Grady

79489126

Date: 2025-03-06 11:15:47
Score: 6.5 🚩
Natty: 5.5
Report link

Using directory mode 777 seems very permissive, any ideas how to improve on that?

Reasons:
  • Blacklisted phrase (1): any ideas
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: rubberchicken

79489118

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

If you want to updload the shopify host video you can see the solution

<video id="video-{{ section.id }}" style="display:none; width:100%;">
          {% if section.settings.video_link != '' %}
          <source src="{{ section.settings.video_link }}" type="video/mp4">
          {% endif %}
        </video>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Naresh Kansara

79489090

Date: 2025-03-06 10:59:43
Score: 3.5
Natty:
Report link

just to point out, Judith's answer raises the below error: error

seems like it's a requirement to specify the engine

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

79489084

Date: 2025-03-06 10:58:43
Score: 3.5
Natty:
Report link

Just updating old/inaccessible links: for those who are interested, here are the links for Mark Russinovich's artciles:

Reference: Mark's Blog

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

79489075

Date: 2025-03-06 10:56:43
Score: 12.5
Natty: 7
Report link

I am facing similar issue. I am not able to generate token using HTTP VBO using scope.

Can you explain the steps in details how you fixed the issue?

Reasons:
  • Blacklisted phrase (1): I am not able to
  • RegEx Blacklisted phrase (2.5): Can you explain
  • RegEx Blacklisted phrase (1.5): fixed the issue?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing similar issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Sahana