79516067

Date: 2025-03-18 01:26:30
Score: 4.5
Natty: 4.5
Report link

https://github.com/marketplace/actions/export-workflow-run-logs can upload workflow logs to Amazon S3, Azure Blob Storage, and Google Cloud Storage.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can u
  • Low reputation (0.5):
Posted by: John Vandenberg

79516062

Date: 2025-03-18 01:20:29
Score: 1
Natty:
Report link

i just had to install @tailwindcss/postcss as dependency and updated my postcss.config.js to

module.exports = {
plugins: {
    "@tailwindcss/postcss": {},
    autoprefixer: {},
},

}

and the error disappeared

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

79516060

Date: 2025-03-18 01:16:28
Score: 3
Natty:
Report link

MH_initialize(); is error do you know why

#include  <windows.h>
#include "pch.h"
#include "Minhook.h"
#include <cstdio>

uintptr_t base = (uintptr_t)GetModuleHandle(NULL);
uintptr_t GameAssembly = (uintptr_t)GetModuleHandle("GameAssembly.dll");

void CreateConsole()
{
    AllocConsole();
    FILE* f;
    freopen_s(&f, "CONOUT$", "w", stdout);
}

void init()
{
    MH_initialize();<- this one is errored  
    CreateConsole();
    printf("Hello");
}

void main()
{
    init(); 
}



BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
{
    switch (ul_reason_for_call)
    {
    case DLL_PROCESS_ATTACH:
        //Create a new thread 
        CreateThread(0, 0, (LPTHREAD_START_ROUTINE)main, 0, 0, 0);
    case DLL_THREAD_ATTACH:
    case DLL_THREAD_DETACH:
    case DLL_PROCESS_DETACH:
        break;
    }
    return TRUE;
}
Reasons:
  • RegEx Blacklisted phrase (2.5): do you know why
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: fwafa

79516058

Date: 2025-03-18 01:15:26
Score: 6.5 🚩
Natty:
Report link

S3A filesystem does not natively support atomic file creation, which is required by Hudi's locking mechanism.

Did you find anything in their documentation after posting your question?

https://hudi.apache.org/docs/

Reasons:
  • RegEx Blacklisted phrase (3): Did you find
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: swawge

79516036

Date: 2025-03-18 00:59:23
Score: 1.5
Natty:
Report link

Go and change countries & regions to all countries.

currently you are not selecting any country:

enter image description here

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

79516035

Date: 2025-03-18 00:57:22
Score: 2.5
Natty:
Report link

This seemed to have been a bug in plotly. The newer versions fix this bug. My original attempt now works as expected. Here is how the output looks with plotly-4.10.4 -

enter image description here

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

79516034

Date: 2025-03-18 00:56:22
Score: 1
Natty:
Report link

Resolved the issue by replacing Autowired bean creation of VaultTemplate with manually creating a new instance. of VaultTemplate.

VaultTemplate vaultTemplate = new VaultTemplate(VaultEndpoint vaultEndpoint, ClientAuthentication clientAuthentication);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user1462617

79516032

Date: 2025-03-18 00:55:22
Score: 4
Natty: 4.5
Report link

math-expression-evaluator is popular according to git stars.

https://www.npmjs.com/package/math-expression-evaluator

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

79516029

Date: 2025-03-18 00:51:21
Score: 1
Natty:
Report link

recursive_simple_cycles from NetworkX can be used:

import networkx as nx

list(nx.recursive_simple_cycles(nx.DiGraph(a)))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: mikm

79516022

Date: 2025-03-18 00:40:19
Score: 2.5
Natty:
Report link

The archive failed is likely an XCode command line tools error.

You could try running the app locally without eas. Make sure that your phone and computer are on the same Wi-Fi network.

You can also follow this guide if you are trying to push out a production build.

Reasons:
  • Blacklisted phrase (1): this guide
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: th0rin0

79516018

Date: 2025-03-18 00:32:18
Score: 0.5
Natty:
Report link

It is not Possible easily.

but the alternative is to use the official Google Chrome android browser helper and make your own changes. this is an aar that you can modify.

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

79516017

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

Yolov8 has been a little broken since they started moving everything from keras_cv to keras_hub. I think they have been working on it. I have not been able to get sensible results in my own recent work with YOLOv8 keras. I am also having a problem with surplus boxes showing up when I validate, low map, and I think there may be some weird behavior with the data augmentation pipeline.

I think it would be awesome if the team published an updated example soon that works seamlessy with the new hub

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

79516014

Date: 2025-03-18 00:31:16
Score: 8 🚩
Natty: 4.5
Report link

Were you able to resolve this issue? I'm currently experiencing the same on a react-native upgrade.

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve this issue?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: cdanwards

79516010

Date: 2025-03-18 00:26:14
Score: 2
Natty:
Report link

This restriction can be removed from MySQL Workbench 8.0 in the following way. Edit the connection, on the Connection tab, go to the 'Advanced' sub-tab, and in the 'Others:' box add the line 'OPT_LOCAL_INFILE=1'.

Quoted from this link and big_water: https://bugs.mysql.com/bug.php?id=91872

This did work for me in MySQL workbench 8.0, but I felt that this answer was not specific enough. I struggled to find the connection tab.

From an opened connection, select the 'server' drop down menu, then select 'Management Access Settings...' near the bottom of the menu. This will bring you to the connection tab.

For additional information on the connections tab, see the manual here: https://dev.mysql.com/doc/workbench/en/wb-manage-server-connections.html

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

79516008

Date: 2025-03-18 00:24:14
Score: 4
Natty:
Report link

Below is an example of a repo i used to add new Saudi Riyal symbol in my application

https://github.com/abdulrysrr/new-saudi-riyal-symbol

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

79516003

Date: 2025-03-18 00:18:12
Score: 1
Natty:
Report link

I suspected this problem too based on conflict resolution results, but after actually running tool from here:
py git-filter-repo --analyze
stats in the output file .git\filter-repo\analysis\blob-shas-and-paths.txt are something like this:

=== Files by sha and associated pathnames in reverse size ===
Format: sha, unpacked size, packed size, filename(s) object stored as
1    4fdc4b7d67     152745      33950     FluxFilter.json
2    0f3485f0f5     151344      16160     FluxFilter.json
3    addd4890d5     129822      13719     FluxFilter.json
4    369c158d9a     142178       9915     FluxFilter.json
     -----------------------------------------------------
17   1112b3b1e5     124947       4283     FluxFilter.json
18   1f24aa6fc3     116120       2147     FluxFilter.json
19   33082e1551     126083       1758     FluxFilter.json
     -----------------------------------------------------
20   a8b634d405     130377       1329     FluxFilter.json
21   9346666842     130426       1300     FluxFilter.json
22   e7895f6751     137863       1253     FluxFilter.json
     -----------------------------------------------------
26   6aa197cf49     115980        627     FluxFilter.json
27   8a6ba2124e     135864        589     FluxFilter.json
     -----------------------------------------------------
41   c27fad51a2     146322        191     FluxFilter.json
42   d6227db139     149838        189     FluxFilter.json
                              

When compressed file size should be around 30000. Which looks like sometimes git handles changes correctly and sometimes fails.

As suggestion attempt: possibly check with this tool if JSON to blame or some other file?

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

79516002

Date: 2025-03-18 00:16:12
Score: 1.5
Natty:
Report link

There are several possibilities:

  1. Your request URL seems to be a bit off: Your code makes a request to

xhttp.open("GET", "emotionDetector?textToAnalyze"+"="+textToAnalyze, true);

But this results in a malformed URL, instead try using

xhttp.open("GET", "emotionDetector?textToAnalyze=" + encodeURIComponent(textToAnalyze), true);

The use of encodeURIComponent makes sure any funny stuff in the text, such as special characters gets encoded properly.

  1. Your script is referenced as

src="../static/mywebscript.js"

This means your JavaScript file is expected to be in a static folder at the root level. Flask serves static files from a static/ directory inside your project folder. Try referencing it as

src="{{ url_for('static', filename='mywebscript.js') }}"

Good Luck =D

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

79515972

Date: 2025-03-17 23:45:06
Score: 5
Natty: 4.5
Report link

There's another solution more easy:

https://medium.com/@michalankiersztajn/sqldelight-kmp-kotlin-multiplatform-tutorial-e39ab460a348

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nay Rios

79515956

Date: 2025-03-17 23:27:03
Score: 3
Natty:
Report link

The error appears to be occurring because the view isn't checking if the user is authenticated before accessing its attributes. Django uses AnonymousUser to handle unauthenticated user sessions, and this model doesn't have a user_id field, which is causing the 500 error.

Check your view to see if you're ensuring the user is authenticated before attempting to access the user_id. Something like this might help:

if not request.user.is_authenticated:
    return JsonResponse({"error": "User not authenticated"}, status=401)

However, to help you better, could you share the code for your full view? Specifically, how you're getting the user and accessing their attributes.

Reasons:
  • RegEx Blacklisted phrase (2.5): could you share the code
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: holman rugama

79515950

Date: 2025-03-17 23:22:03
Score: 1
Natty:
Report link

Unfortunately, since those frameworks are pre-built and do not include dSYM files, the only option to get those is to request them from the vendor.

Also as an option, you may also try to import their SDK using the Swift Package Manager instead of Cocoapods:

But on the other hand, the only side effect of not having those dSYMs is that you won't be getting symbolicated crash logs if a crash happened inside the VoxImplantSDK. So if this is not a deal breaker for you, I wouldn’t bother.

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

79515940

Date: 2025-03-17 23:16:02
Score: 1
Natty:
Report link

You can hide the fields by setting the callout view's label to always be nil.

static NSString* emptyString(__unsafe_unretained UIView* const self, SEL _cmd) {
    return nil;
}

class_addMethod(objc_getClass("_MKUILabel"), @selector(text), (IMP)&emptyString, "@16@0:8");
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ryan Nair

79515936

Date: 2025-03-17 23:14:01
Score: 2.5
Natty:
Report link

This can be solved by using the Week day standalone:

{{(day | date : 'ccc'}}
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nicolas Stadler

79515927

Date: 2025-03-17 23:05:00
Score: 0.5
Natty:
Report link

You may consider this another possible solution to your issue.

If it is explicitly meant for the Sheets API, then the Google Sheets API does not have a built-in feature that is equivalent to UsedRange. If you'd like to request a feature similar to Excel's Worksheet.UsedRange in Google Sheets, I suggest submitting a feature request through Google’s Issue Tracker. Clearly explain your use case and the benefits of this feature to increase the likelihood of it being considered.

Refer to this documentation for instructions on creating an issue in the Google Issue Tracker.

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

79515925

Date: 2025-03-17 23:01:59
Score: 0.5
Natty:
Report link

When using a LoadBalancer as a Service type in kubernetes, it starts off by creating a NodePort service in the background to facilitate communication, the control plane will allocate the port from a default range port: 30000-32767. Then, configures the external load balancer to forward traffic to the assigned service port by cloud-controller-manager.

If you want to toggle this type of allocation you may set the field as:

spec: 
  allocateLoadBalancerNodePorts: #true or false
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: ralphyjade

79515923

Date: 2025-03-17 23:00:57
Score: 6 🚩
Natty: 4
Report link

Following @Maique's observation, we encountered an issue when using Google SSO with the username option enabled. The final redirect (using redirectUrl ?) triggered by clicking "Continue" is failing, and the session ID returned by the clerk.startSSOFlow function is null. Is there a way to reconcile both features?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Maique's
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: SennaSanzo

79515922

Date: 2025-03-17 22:59:56
Score: 1
Natty:
Report link

They announced they're going to sort this today, huzzah: https://cloud.google.com/appengine/docs/standard/secure-minimum-tls

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

79515919

Date: 2025-03-17 22:56:53
Score: 9.5 🚩
Natty: 6.5
Report link

I'm facing a similar situation but with NX-OS switches. I am able to build the list via API, but i cannot perform any task calling the hosts in another yml. I am not able to solve the syntax problem, could you provide an example on how do you use the hosts lists on tasks?

Reasons:
  • Blacklisted phrase (1): I am not able to
  • Blacklisted phrase (1): how do you
  • Blacklisted phrase (0.5): i cannot
  • RegEx Blacklisted phrase (2.5): could you provide
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Luciano Vazquez

79515911

Date: 2025-03-17 22:48:52
Score: 0.5
Natty:
Report link

The validation decorators (@ValidateNested() and @Type(() => KeyDto)) only work on actual objects, not strings and that is not working because NestJS treats query parameters as strings and does not automatically deserialize them into objects.

Since you don't want to use @Transform, the best option is to manually handle the transformation inside a custom Pipe.

import { PipeTransform, Injectable, ArgumentMetadata, BadRequestException } from '@nestjs/common';
import { plainToInstance } from 'class-transformer';
import { validate } from 'class-validator';

@Injectable()
export class ParseJsonPipe implements PipeTransform {
  async transform(value: any, metadata: ArgumentMetadata) {
    if (!value) return value;

    try {
      // Parse the JSON string into an object
      const parsed = JSON.parse(value);

      // Convert to the expected class
      const object = plainToInstance(metadata.metatype, parsed);

      // Validate the transformed object
      const errors = await validate(object);
      if (errors.length > 0) {
        throw new BadRequestException('Validation failed');
      }

      return object;
    } catch (error) {
      throw new BadRequestException('Invalid JSON format');
    }
  }
}

And then apply the Pipe in the controller:

@Get()
getSomething(@Query('key', new ParseJsonPipe()) key: KeyDto) {
  console.log(key); // This should now be an object
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Type
  • User mentioned (0): @Transform
  • Low reputation (1):
Posted by: Andrea Acampora

79515909

Date: 2025-03-17 22:47:51
Score: 1
Natty:
Report link

I ran into the same issue, the workaround was to specify the name of the emulator, but to solve the issue, check if you have different versions of Flutter, choose the right one and run flutter pub get

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

79515907

Date: 2025-03-17 22:47:51
Score: 2
Natty:
Report link

Recovering stolen bitcoins was a great experience for me recently. Initially doubting the viability of bitcoin recovery, I sought help from a recovery specialist named "RecoveryHacker101" after losing $46,000 in a binary options scam. Google had recommended this specialist. The team's ability to recover all of my cryptocurrency in less than a week surprised me. If you are trying to recover lost Bitcoin or are having trouble withdrawing money from a cryptocurrency investment, send an email to [recoveryhacker101(at)gmail(dot)com].

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Juan Adams

79515906

Date: 2025-03-17 22:46:51
Score: 0.5
Natty:
Report link

I was experiencing the same issue, same error message.

I then located this comment https://github.com/dotnet/sdk/issues/33718#issuecomment-1615229332 which states "ClickOnce publish is not supported with dotnet publish. You will need to use msbuild".

I had tried many variations of the MSBuild, and I was also trying to get this working in an Azure DevOps pipeline.

What I eventually got working on local CMD prompt is:

MSBuild myproject.csproj /target:publish /p:PublishProfile=ClickOnceProfile

This resulted in the PublishDir folder specified in my ClickOnceProfile.pubxml containing the expected files, which is the setup.exe file, Application Manifest, Launcher.exe and an Application Files folder.

Reasons:
  • RegEx Blacklisted phrase (1): same error
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: PaulAdvancedUk

79515897

Date: 2025-03-17 22:43:51
Score: 2
Natty:
Report link

Use Linqpad.

Enable logger : QueryExcecutionTimeLogger.Enabled=true;

It will dump queries generated from linqpad.

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

79515892

Date: 2025-03-17 22:38:50
Score: 1
Natty:
Report link

I came across this post when searching how to resolve the mypy issue of the OP. Upon searching through one of the links mentioned above I found this comment, which was a simple fix to appease mypy: just use _Pointer.

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

79515886

Date: 2025-03-17 22:35:49
Score: 2
Natty:
Report link

The answer is given in the comments by. @Brad and @siggemannen

Must DECLARE (and not just OPEN) the Detail cursor Cur_Cond where its where-clause @v_cur_rule_id has been set (for each row) by the Master cursor Cur_Rule.

Solution Code:

BEGIN

--set NOCOUNT ON;

declare Cur_Rule CURSOR LOCAL READ_ONLY FORWARD_ONLY for
    select rule_id from OMEGACA.ACC_POL_RULE where rule_id in (3,6) order by rule_id;
declare @v_cur_rule_id  int;

declare @v_cur_cond_id  int;

-- BEGIN LOOP C_RULE
OPEN Cur_Rule;
fetch next from Cur_Rule into @v_cur_rule_id;

while @@FETCH_STATUS = 0 
BEGIN
PRINT ('Rule:' + CONVERT(NVARCHAR(10), @v_cur_rule_id));

declare Cur_Cond CURSOR LOCAL READ_ONLY FORWARD_ONLY for
    select cond_id from OMEGACA.ACC_POL_COND where rule_id = @v_cur_rule_id order by cond_id;

    -- BEGIN LOOP C_COND
    OPEN Cur_Cond;
    fetch next from Cur_Cond into @v_cur_cond_id;
        while @@FETCH_STATUS = 0 
        BEGIN
        PRINT ('Cond:' + CONVERT(NVARCHAR(10), @v_cur_cond_id));
        fetch next from Cur_Cond into @v_cur_cond_id;
        END;
    CLOSE Cur_Cond;
    DEALLOCATE Cur_Cond;
    -- END LOOP C_COND

fetch next from Cur_Rule into @v_cur_rule_id;
END;

CLOSE Cur_Rule;
DEALLOCATE Cur_Rule;
-- END LOOP C_RULE

END;

best regards
Altin

Reasons:
  • Blacklisted phrase (0.5): best regards
  • Blacklisted phrase (1): regards
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Brad
  • User mentioned (0): @siggemannen
  • User mentioned (0): @v_cur_rule_id
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: altink

79515885

Date: 2025-03-17 22:34:48
Score: 0.5
Natty:
Report link

A note on the above answer, if the event is triggered by CLI/API with a custom event pattern then the event.source will be the one specified in the triggering call.

enter image description here

const client = new EventBridgeClient({});
const event = new PutEventsCommand({
  Entries: [
    {
      Source: "my_custom_source", // in this case `event.source` == "my_custom_source"
      Detail: JSON.stringify({ "a": "b"}),
      DetailType: "self trigger",
      Resources: [context.invokedFunctionArn],
    },
  ],
});
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: the-noob

79515882

Date: 2025-03-17 22:32:48
Score: 1.5
Natty:
Report link

you need to upgrade to IntelliJ IDEA Ultimate source

enter image description here

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

79515871

Date: 2025-03-17 22:24:47
Score: 4.5
Natty:
Report link

https://eceeq.org

header 1 header 2
cell 1 cell 2https://eceeoq.org/
cell 3 cell 4

Right

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

79515860

Date: 2025-03-17 22:18:46
Score: 1.5
Natty:
Report link

This is a much cleaner and more robust solution! The error handling and use of get_text(separator="\n", strip=True) for content extraction are particularly helpful. Remember that respecting robots.txt and website terms of service is crucial when scraping. Great job!"

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

79515856

Date: 2025-03-17 22:15:45
Score: 1
Natty:
Report link

It sounds like you're on the right track to the store and update results dynamically, you might need to adjust how you're handling the previous Num and currentNum updates before applying the operator. Consider using a temporary variable to store intermediate results before assigning them. Also, debugging with console.log() at each step can help track where the logic breaks.By the way, if you're into precise calculations, check out our IPPT Calculator—a great tool for tracking fitness performance with accuracy.

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

79515854

Date: 2025-03-17 22:14:45
Score: 2
Natty:
Report link

I have used sctp_test and iperf3 on Linux and it certainly works well.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Milind R

79515851

Date: 2025-03-17 22:11:44
Score: 1
Natty:
Report link

If you don't log into your email on Linux, the logs won't be automatically sent to your email.

The logs are stored in a local log file.

Example: /var/log/mail.log or /var/log/maillog.

Hope this helps.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Yarosalv

79515850

Date: 2025-03-17 22:10:44
Score: 1
Natty:
Report link

To achive full screen, I used a library called @telegram-apps/sdk

npm install @telegram-apps/sdk

Then I wrote this code in App component it loads when App component loades:

useEffect(() => {
    async function initTg() {
      if (await isTMA()) {
        init();

        if (viewport.mount.isAvailable()) {
          await viewport.mount();
          viewport.expand();
        }

        if (viewport.requestFullscreen.isAvailable()) {
          await viewport.requestFullscreen();
        }
      }
    }
    initTg();

  }, []);

Here is the result:
enter image description here

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

79515810

Date: 2025-03-17 21:45:38
Score: 1
Natty:
Report link

Link above (http://support.microsoft.com/kb/112841) has rotted, but here's the TL:DR;

mode con


C:\> mode con

Status for device CON:
----------------------
    Lines:          49
    Columns:        189
    Keyboard rate:  31
    Keyboard delay: 1
    Code page:      437

C:\> mode /?                                                                                                                                              

Configures system devices.

Serial port:       MODE COMm[:] [BAUD=b] [PARITY=p] [DATA=d] [STOP=s]
                                [to=on|off] [xon=on|off] [odsr=on|off]
                                [octs=on|off] [dtr=on|off|hs]
                                [rts=on|off|hs|tg] [idsr=on|off]

Device Status:     MODE [device] [/STATUS]

Redirect printing: MODE LPTn[:]=COMm[:]

Select code page:  MODE CON[:] CP SELECT=yyy

Code page status:  MODE CON[:] CP [/STATUS]

Display mode:      MODE CON[:] [COLS=c] [LINES=n]

Typematic rate:    MODE CON[:] [RATE=r DELAY=d]
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Eric Sherrill

79515802

Date: 2025-03-17 21:37:37
Score: 1.5
Natty:
Report link
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ronin Thomas

79515800

Date: 2025-03-17 21:36:37
Score: 2.5
Natty:
Report link

The variables BENCHMARK and COMPILER aren't assigned in time to be used in the same iteration of the loop. It works if you just use $(1) and $(2) instead.

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

79515794

Date: 2025-03-17 21:34:36
Score: 0.5
Natty:
Report link

Success! flutter clean cleared whatever intermediate file(s) had the old file name. It also broke dependencies, which I restored with flutter pub get. So if it helps someone else, doing this after changing the file extension (see above) to .m worked for me.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Eggsalad

79515793

Date: 2025-03-17 21:31:36
Score: 2
Natty:
Report link

The issue was we were using Auth Code Tokens when we should have been using Client Authentication Tokens.

UPS docs are weird as they say they are removing User/PW authentication but just use a form of it to get a Client Auth token. I would have thought the Auth Code tokens would be the "more secure" choice.

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

79515791

Date: 2025-03-17 21:31:36
Score: 1
Natty:
Report link

Here's a reusable object (agent class) StateStatistics that preforms the statistics collection on mutually exclusive states, you can download the source code from https://cloud.anylogic.com/model/859441d5-8848-4e81-b414-ea918cc7a172
The states can be anything (equipment states, client states, staff states, statechart states, etc.) and can be of any type (Object). The statistics collected includes: Total Time in State, # of Occurrences of a State, Average Time in State, Percentage of Time in State. In the example model, a hypothetical statechart is used to generate state changes, and an Option List is the type of states.
I would vote for including such or similar object into AnyLogic.

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

79515786

Date: 2025-03-17 21:29:35
Score: 3.5
Natty:
Report link

So I've had this issue trying to configure this in DBeaver. I lost a lot of time in the OCI console following a false lead (the ACL error usually means it's a authorization issue). I expect other JDBC clients might have a similar issue, so this is how I eventually solved it.

Under driver manager / Oracle / libraries:

enter image description here

Under connection settings / Driver properties set the keystore and the truststore (location, password and type for both). The password is the one provided when you downloaded the Wallet from the portal.

The connection settings are just using the TNS setup.

enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): have a similar issue
  • Low reputation (1):
Posted by: Alex

79515771

Date: 2025-03-17 21:23:34
Score: 0.5
Natty:
Report link

This is an updated version Damon Coursey's technique for querying the Activity logs. This follows how activity logs are saved in Log Analytics workspace. It also uses the max_arg aggregator to work for multiple VMs instead of one, and provides some additional fields for uptime in hours or days.

Note you will need to export the Activity logs for each subscription into a Log Analytics workspace, per this guide: https://learn.microsoft.com/en-us/azure/azure-monitor/essentials/activity-log?tabs=powershell#send-to-log-analytics-workspace

Configure DaysOfLogsToCheck, and Max_Uptime. Note this will only help you track events for as long as Activity logs are stored in your workspace (default 90 days).

// Uses Activity logs to report VMs with assumed uptime longer than X days (days since last 'start' action). 
// Activity Log export must be configured for a relevant subscription, to save activity logs to a log workspace.
// Ref: https://learn.microsoft.com/en-us/azure/azure-monitor/essentials/activity-log?tabs=powershell#send-to-log-analytics-workspace
let DaysOfLogsToCheck = ago(30d);
let Max_Uptime = totimespan(3d); // Specify max uptime here, in hours (h) or days (d).
let MaxUptimeDate = ago(Max_Uptime);
let Now = now();
// At a high level: we pull all VM start OR stop(deallocate) events, then summarize to pull the most recent event for each host, then filter only the 'start' events.
// We do this to avoid double-counting a system that was stopped and started multiple times in the period.
// Some includes and excludes are also added per variables above, for tailored reporting on hosts and groups.
AzureActivity
| where TimeGenerated > DaysOfLogsToCheck
    and ResourceProviderValue == "MICROSOFT.COMPUTE"
    and Properties_d['activityStatusValue'] == "Start"
    and Properties_d['message'] in ("Microsoft.Compute/virtualMachines/start/action", "Microsoft.Compute/virtualMachines/deallocate/action")
    and TimeGenerated <= MaxUptimeDate
| extend
    Uptime_Days = datetime_diff('day', Now, TimeGenerated),
    Uptime_Hours = datetime_diff('hour', Now, TimeGenerated),
    MaxUptime=Max_Uptime
| project
    TimeGenerated,
    ResourceProviderValue,
    ResourceGroup=Properties_d['resourceGroup'],
    Resource=Properties_d['resource'],
    Action=Properties_d['message'],
    Uptime_Days,
    Uptime_Hours,
    MaxUptime
| summarize arg_max(TimeGenerated, *) by tostring(Resource) //Pull only the latest event for this resource, whether stop or start
| where Action == "Microsoft.Compute/virtualMachines/start/action" // Now only show the "start" actions
Reasons:
  • Blacklisted phrase (1): this guide
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user29985006

79515758

Date: 2025-03-17 21:19:33
Score: 0.5
Natty:
Report link

java.time

I warmly recommend that you use java.time, the modern Java date and time API, for all of your date and time work.

        String dateString = "2025-03-09T02:37:51.742";
        LocalDateTime ldt = LocalDateTime.parse(dateString);
        System.out.println(ldt);

Output from the snippet is:

2025-03-09T02:37:51.742

A LocalDateTime is a date and time without time zone or offset from UTC. So it doesn’t know summer time (DST) and happily parses times that happen to fall in the spring gap that happens in your own default time zone between 2 and 3 in the night on this particular date where the clocks are turned forward.

Don’t we need a formatter? No, not in this case. Your string is in the standard ISO 8601 format. Which is good. The classes of java.time generally default parse the most common ISO 8601 variants natively, that is, without any explicit formatter. So parsing proceeds nicely without one. You also notice in the output that LocalDateTime prints the same format back from its toString method, just like the other java.time types do.

Don’t use Date and the other legacy date-time types

The Date class was always poorly designed and has fortunately been outdated since java.time was launched with Java 8 more than 10 years ago. Avoid it.

Tutorial link

Oracle Tutorial: Trail: Date Time exlaining how to use java.time.

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

79515757

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

Use these Versions, these are most compitable to eachother:

langchain==0.1.0
langchain-community==0.0.15
langchain-core==0.1.14
langchain-openai==0.0.1
langsmith==0.0.83
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sarfaraz Ahmed

79515750

Date: 2025-03-17 21:12:32
Score: 3.5
Natty:
Report link

Спасибо.
pip install pyspark==3.2.1 помогло

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: Богдан Сербин

79515744

Date: 2025-03-17 21:10:29
Score: 6 🚩
Natty: 4
Report link

The procedere is confusing, arrogant, time wasting, not politely but fucking shit

Reasons:
  • Blacklisted phrase (2): fuck
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: rioyu

79515735

Date: 2025-03-17 21:05:28
Score: 5
Natty: 5
Report link

I'm using C++ Builder 12.2, and this error persists? Can I cut and past the code in Euro's comment to get my app to link?

Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: w0wbagger

79515733

Date: 2025-03-17 21:04:27
Score: 2.5
Natty:
Report link

Important to know: encrypt=false does NOT disable encryption, it just indicates that it's not required by the client. If it's set to false, and the server requires encryption, then the connection will be encrypted, but the server certificate will not be verified.

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

79515705

Date: 2025-03-17 20:43:23
Score: 5
Natty: 5
Report link

I have the same need, do you have by chance have an example policy showing how to lowercase a regex output?

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

79515704

Date: 2025-03-17 20:42:20
Score: 9.5 🚩
Natty: 5.5
Report link

Did you ever find a solution for this?

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever find a solution
  • 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
  • Low reputation (1):
Posted by: Lion bro

79515703

Date: 2025-03-17 20:42:20
Score: 3
Natty:
Report link

It works when I start server with localhost http-server -a localhost -p 4200

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

79515700

Date: 2025-03-17 20:41:20
Score: 1
Natty:
Report link

Alternatively, in vite.config.js:

export default defineConfig({
  clearScreen: false,
  ...
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: michael

79515697

Date: 2025-03-17 20:39:20
Score: 3
Natty:
Report link

In the latest VS 2022 it's moved to (right-click on your project) Add > New REST API Client > Generate ...

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Caspian Canuck

79515696

Date: 2025-03-17 20:38:19
Score: 1
Natty:
Report link

I don't think that there is a particular way to do this in graphene-django community.. but your method is very good unless the code need to be cleared and well structured for reuse and customize using configurations.

BUT

I wouldn't choose to ignore the well strucutred error message which can django forms give when using with graphene mutations, also, your method is generalized for all the queries and mutations.. that you can do in your app, so it need to be maintained carefully.

But it is inspiring method to have customized logging for graphql requests for example.

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

79515688

Date: 2025-03-17 20:32:18
Score: 1.5
Natty:
Report link

No, the browser does not automatically declare a variable using the script filename. If console.log(Control); works, it's because Control.js explicitly defines Control as a global variable (e.g., using var Control = ... or a function). To avoid this, use let, const, or ES modules.

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

79515653

Date: 2025-03-17 20:13:14
Score: 1.5
Natty:
Report link

This article explains how to reduce Docker image size by doing things like:

  1. Adding a .dockerignore file to exclude unnecessary files and dirs

  2. Clearing the apt cache

  3. Using --mount=type=cache

  4. Changing the Dockerfile to use smaller base images

  5. Using multi-stage builds to exclude unnecessary artifacts from earlier stages in the final image

Reasons:
  • Blacklisted phrase (1): This article
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: elephantintheroom

79515651

Date: 2025-03-17 20:11:13
Score: 2.5
Natty:
Report link

Your visibility logic is fine, but using toString() on your @Serializable objects can return unexpected values. Instead, define explicit route strings for your destinations and use those for consistent navigation comparisons.

Also, instead of using toString() you can replace it with decoding/encoding:
https://kotlinlang.org/docs/serialization.html#serialize-and-deserialize-json

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Serializable
  • Low reputation (0.5):
Posted by: artyorsh

79515649

Date: 2025-03-17 20:10:13
Score: 1
Natty:
Report link

These elements (columns) cannot be bound into JDBC which is why this mechanism will not support them as parameterized. There are two options to do this safely - ideally you should use both:

The second is important because characters can sometimes be used to end a column and add a SQL injection. I believe the current characters are safe but you want to future proof this against someone adding to the list.

Within your function is would be better (as @juliane mentions) to return the value in your validation function. That will allow you to mark the return value as "sanitized" for SQL injection purposes in many code checking tools. Snyk seems to allow you do this with custom santizers but I couldn't track down a lot of documentation on how to do this. The benifit here is that everywhere you use this validation function would then be automatically recognized by Snyk.

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

79515647

Date: 2025-03-17 20:09:13
Score: 2
Natty:
Report link

The root cause is that there is a legacy and a (new) Places API.
In addition the legacy Places API is now not visible by default.

You can still activate it via deep link: https://console.cloud.google.com/apis/library/places-backend.googleapis.com

The public issue tracker is here: https://issuetracker.google.com/issues/401460263

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

79515642

Date: 2025-03-17 20:05:12
Score: 1
Natty:
Report link

You should configured .bash_profile and check ANDROID_HOME use echo and then you simply need to run your app with this command :

source ~/.bash_profile

npx react-native run-android
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: AH Forootan

79515637

Date: 2025-03-17 20:04:12
Score: 2
Natty:
Report link

Format datetime in resource or collection with:

// Error with null
'published_at' => $this->published_at->format('Y-m-d H:i:s'),

// No errors
'published_at' => $this->published_at != null ? $this->published_at->format('Y-m-d H:i:s') : null,

// Custom date if null
'published_at' => ($this->published_at ?? now()->addDays(10))->format('Y-m-d H:i:s'),            

Regards

Reasons:
  • Blacklisted phrase (1): Regards
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Noobek

79515629

Date: 2025-03-17 20:01:11
Score: 2
Natty:
Report link

For a 1MB preloaded database, I would choose Approach 2 because its consistently low latency (20–30 ms) ensures a faster startup, and the cost of reloading 1MB is negligible on modern hardware—especially if you ensure the work is done asynchronously to avoid blocking the UI thread

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

79515627

Date: 2025-03-17 20:00:11
Score: 2.5
Natty:
Report link

Here's what I did.

  1. Go to wsl, setup your project and create the virtual environment file "env"

  2. Inside wsl, use command `code .` to open vscode from wsl (no need to activate the virtual environment yet)

  3. Once your vscode window showed up, change the Python Interpreter to the one listed under the virtual environment file "env"

  4. Now press the debug button vscode, it should be able to load the virtual environment

  5. Here's my launch.json file enter image description here

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

79515626

Date: 2025-03-17 20:00:11
Score: 0.5
Natty:
Report link

“[Simba][BigQuery] (100) Error interacting with REST API Timeout was reached” is an error in which the connector retries a failed API call before timing out.

Since you mention that you open your firewall, try to use the baseline BigQuery REST API service, used to interface with the BigQuery data source, via the REST API. The default value is: https://bigquery.googleapis.com.

To activate the “Catalog(project)” drop-down list, technically in this list you can select the name of your BigQuery project. This project is the default project that the Simba Google BigQuery ODBC Data Connector queries against, and also the project that is billed for queries that are run using the DSN.

Typically, after installing the Simba Google BigQuery ODBC Data Connector, you need to create a Data Source Name (DSN). Alternatively, for information about DSN-less connections, see Using a Connection String.

You may use this pdf namely Simba Google BigQuery ODBC Data Connector Install and Configuration Guide for step by step creation of a DSN or Connection String.

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

79515623

Date: 2025-03-17 19:59:11
Score: 3
Natty:
Report link

So are you sure you don't need to have port_number in the url?

const socket = new WebSocket("wss://<server ip>:<port_number>/ws/chat/?first_user=19628&second_user=19629", ["Bearer", token]);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: laith drebaty

79515622

Date: 2025-03-17 19:59:11
Score: 1.5
Natty:
Report link
paasall <- read.csv("49PAAS.csv",header=TRUE) paasall cols <- character(nrow(paasall)) cols[] <- "black" myCol <- rep(colors()[1:49],each=2) pdf("P_PASS49Corr.pdf", width=49, height=49) pairs(paasall, panel=panel.smooth) dev.off()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Studia.00

79515613

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

What is polymorphism?

Poly means many and morph means shapes.

In layman terms of programming polymorphism can be called as creating many shapes of same thing.

There are two types of polymorphism:

  1. Compile time polymorphism (also called as overloading, and static binding)

  2. Runtime polymorphism (also called as overriding, dynamic method dispatching, and late binding)

Compile time polymorphism is when you create method of same name in the same class but it has different arguments.

Example:

public class TestClassOne {
    public static void main(String[] args) {
        Foo foo = new Foo();
        foo.fooMethod();
        foo.fooMethod("Hello World");
        foo.fooMethod(1);
    }
}

class Foo {
    public void fooMethod() {
        System.out.println("fooMethod");
    }
    public void fooMethod(String arg) {
        System.out.println("fooMethod with string args");
    }
    public void fooMethod(Integer arg) {
        System.out.println("fooMethod with Integer args");
    }
}

Runtime polymorphism is when you create method with same signature but in inheriting or implementing class. Which means yes polymorphism allows all methods to be overridden but it is not mandatory when class is inheriting another concrete class. However abstract methods should mandatorily be overridden by subclass/implementing class.

I do not know about other languages but Java:

  1. Does not allows to override final method.

  2. Does not allows final class to be inherited.

  3. Does not allows Interface or Abstract class to be final.

  4. Does not allows abstract method to be final.

Example


public class TestClassOne {
    public static void main(String[] args) {
        Foo foo = new Foo();
        foo.fooMethod();
        foo.fooMethod("Hello World");
        foo.fooMethod(1);

        //reference type of parent class
        //but object of child class
        Foo foo2 = new Foo2();
        foo2.fooMethod("Hello World");
        foo2.staticMethod(); //staticMethod of parent class will be called as static methods are bind to class not object

        Foo2 foo3 = new Foo2();
        foo3.staticMethod(); //staticMethod of child class will be called as reference type is Foo2
    }
}

class Foo {
    final public void fooMethod() {
        System.out.println("fooMethod");
    }
    public void fooMethod(String arg) {
        System.out.println("fooMethod with string args");
    }
    public void fooMethod(Integer arg) {
        System.out.println("fooMethod with Integer args");
    }
    public static void staticMethod() {
        System.out.println("Parent class staticMethod");
    }
}

class Foo2 extends Foo {
    @Override
    public void fooMethod(String arg) {
        System.out.println("fooMethod with string args in subclass");
    }

    public static void staticMethod() { //this is method hiding
        System.out.println("Child class staticMethod");
    }
}

/**
class Bar extends Foo {
    public void fooMethod(){ //will give compile time error as trying to override final method
        System.out.println("barMethod");
    }
}

abstract class absclass{
    final abstract void fooMethod(); //not allowed
    abstract void myMethod();
}
class concreteclass extends absclass{ //will give compile time error as it does not implement all methods
    public void myMethod(){
        System.out.println("myMethod");
    }
}
 **/

Static methods are not overridden, when you do so it is called method hiding instead of method overriding.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What is
  • Low reputation (1):
Posted by: Yasin Ahmed

79515612

Date: 2025-03-17 19:55:10
Score: 2
Natty:
Report link

git config --global http.schannelCheckRevoke false

Try this

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

79515611

Date: 2025-03-17 19:54:10
Score: 3.5
Natty:
Report link

change the system date to 2024, install plugin, change the date to recent. It will work until you reset FF

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

79515602

Date: 2025-03-17 19:45:08
Score: 2.5
Natty:
Report link

I'm using exifoo which is an app that does the job quite good and user-friendly

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

79515596

Date: 2025-03-17 19:40:07
Score: 4
Natty:
Report link

I've made a fork for this repo to build qsqlcipher for Qt6:

https://github.com/pourjour/qsqlcipher/tree/main

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
Posted by: pourjour

79515592

Date: 2025-03-17 19:39:06
Score: 0.5
Natty:
Report link

Maybe easiest of the options is applying filter method to your getByText().

const buttonsCount = await page.getByText('(Optimal on desktop / tablet)')
  .filter({ visible: true })
  .count()

See Matching only visible elements

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

79515591

Date: 2025-03-17 19:38:06
Score: 4
Natty:
Report link

https://www.microsoft.com/it-it/sql-server
You can download the demo from here. Or on github I didn't understand well if this is just your problem or if you have doubts about the old version?
https://learn.microsoft.com/en-us/lifecycle/policies/fixed you see also this.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Francesco Fedele

79515590

Date: 2025-03-17 19:38:06
Score: 1
Natty:
Report link

Use this:

=ARRAYFORMULA(IF(A:A<>"", TEXT(REGEXREPLACE(A:A, "T|\.\d+|[+-]\d{2}:\d{2}", ""), "yyyy-mm-dd HH:MM:SS"), ""))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Adel Alaa

79515588

Date: 2025-03-17 19:38:06
Score: 0.5
Natty:
Report link

You could use dbt External Tables package https://github.com/dbt-labs/dbt-external-tables and create an external table in Snowflake that looks at the S3 bucket.

Then in dbt you could query the stage and use METADATA$FILE_LAST_MODIFIED field that is attached to every file, in order to process only the last one.

Have a look at this as well: https://medium.com/slateco-blog/doing-more-with-less-usingdbt-to-load-data-from-aws-s3-to-snowflake-via-external-tables-a699d290b93f

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Moseleyi

79515583

Date: 2025-03-17 19:37:05
Score: 1
Natty:
Report link

How these command line options relate to WireMock performance in context of backing some load testing?

Only --async-response-enabled options is clearly documented as related to performance testing. The first two options and the last one are somehow misleading as both are referring to the number of threads for requests handling.

I would like to do some performance testing for an API gateway and I consider using WireMock to be used to mimick downstream services.

What values for these options do you suggest?

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How these
Posted by: Krzysztof Tomaszewski

79515578

Date: 2025-03-17 19:35:05
Score: 2
Natty:
Report link

This error is probably occurring because, according to the developer docs for the Distance Matrix API:

This product or feature is in Legacy status and cannot be enabled for new usage.

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

79515573

Date: 2025-03-17 19:32:04
Score: 1.5
Natty:
Report link

You are getting this error because this feature can't be used for future usage. According to the developer docs for Distance Matrix:

This product or feature is in Legacy status and cannot be enabled for new usage.

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

79515572

Date: 2025-03-17 19:32:04
Score: 1
Natty:
Report link

try this :

html, body {

width: 100%;
overflow-x: hidden;

}

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

79515569

Date: 2025-03-17 19:31:04
Score: 2.5
Natty:
Report link
  1. No, it does not. It only provides access to SOAP based APIs.

  2. IYou will have to contact JH's Vendor QA team to discuss.

  3. There is additional steps required.

  4. No.

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

79515563

Date: 2025-03-17 19:30:03
Score: 3
Natty:
Report link

kwoxer's answer would work or alternatively, use a js set value and target the element by id.

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

79515561

Date: 2025-03-17 19:30:03
Score: 1.5
Natty:
Report link

Although the accepted answers works, I guess many people who come across this question are not tech people, so I would recommend using exifoo instead, which is a simple app for exactly this purpose without needing any knowledge in using the terminal or something like that.

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

79515554

Date: 2025-03-17 19:27:02
Score: 4.5
Natty:
Report link

From the name of the field, I though you meant to want auto_now_add not auto_now so that it takes now date only when creating the row (not when updating the row). However, although this might solve your problem, but I can't understand why your trigger did not work fine.. please can you share your tg_fun_name function difinition.

Reasons:
  • Blacklisted phrase (1): did not work
  • RegEx Blacklisted phrase (2.5): please can you share your
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: laith drebaty

79515553

Date: 2025-03-17 19:27:02
Score: 0.5
Natty:
Report link

you can use schedule message and set date and time same as poll closes

I'm not familiar with this library, but you can search for it or get help from ChatGPT to write the code.

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

79515551

Date: 2025-03-17 19:27:02
Score: 0.5
Natty:
Report link

as simple as that

const find = (objs, search) => objs.filter(
  obj => Object.values(obj).some(
    val => val.includes(search)
  )
);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: fedeghe

79515552

Date: 2025-03-17 19:27:00
Score: 8 🚩
Natty: 5
Report link

Did you find a solution? I am experiencing the same issue

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution
  • Low reputation (1):
Posted by: GabMS

79515546

Date: 2025-03-17 19:25:00
Score: 0.5
Natty:
Report link

Thanks to JDArango, I was saved from hours of debugging and goggling. I created multiple users before i saw this solution

:~$ grep -r PasswordAuthentication /etc/ssh

grep: /etc/ssh/ssh_host_ecdsa_key: Permission denied
/etc/ssh/ssh_config:#   PasswordAuthentication yes
grep: /etc/ssh/ssh_host_rsa_key: Permission denied
/etc/ssh/sshd_config.d/60-cloudimg-settings.conf:PasswordAuthentication no
grep: /etc/ssh/ssh_host_ed25519_key: Permission denied
/etc/ssh/sshd_config:PasswordAuthentication yes
/etc/ssh/sshd_config:# PasswordAuthentication.  Depending on your PAM configuration,
/etc/ssh/sshd_config:# PAM authentication, then enable this but set PasswordAuthentication

In my case, the file name is 60-cloudimg-settings.conf

:~$ sudo nano /etc/ssh/sshd_config.d/60-cloudimg-settings.conf

:~$ sudo service ssh restart

:~$ sudo systemctl restart ssh

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Joy Joel

79515541

Date: 2025-03-17 19:21:57
Score: 7.5 🚩
Natty: 6.5
Report link

Found any solution to This? I'm facing that too

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solution to This?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muhammad Awais

79515535

Date: 2025-03-17 19:18:56
Score: 3.5
Natty:
Report link

As Chris says, the image needs to be flipped for Aruco marker detection

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

79515533

Date: 2025-03-17 19:17:56
Score: 4
Natty:
Report link

Performance may be improved by using the Tomcat OpenSSL Implementation.

See also Fastest connection for tomcat 9.0 in 2021: NIO or APR?.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: shelley

79515528

Date: 2025-03-17 19:16:55
Score: 4
Natty:
Report link

Performance may be improved by using the Tomcat OpenSSL Implementation.

See also Fastest connection for tomcat 9.0 in 2021: NIO or APR?.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: shelley

79515519

Date: 2025-03-17 19:11:54
Score: 0.5
Natty:
Report link

In case of CNNs the mean/variance should be taken across all pixels over the batch for each input channel. In other words, if your input is of shape (B, C, H, W) , your mean/variance will be of shape (1,C,1,1) . The reason for that is that the weights of a kernel in a CNN are shared in a spatial dimension (HxW). However, in the channel dimension C the weights are not shared.

In contrast, in case of a fully-connected network the inputs would be (B, D) and the mean/variance will be of shape (1, D) , as there is no notion of spatial dimension and channels, but only features. Each feature is normalized independently over the batch.

References:

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ivan Tishchenko