79448516

Date: 2025-02-18 14:08:32
Score: 2
Natty:
Report link

You just need to add this attribute to your bootstrap script tag "data-navigate-once", It will stop livewire from re-evaluating the script each time it navigates. Effectively solving the problem.

Refer to the docs here for more information: https://livewire.laravel.com/docs/navigate#reloading-when-assets-change

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

79448498

Date: 2025-02-18 13:59:30
Score: 2
Natty:
Report link

Hi everyone with this problem.

In my case, use header Accept: application/json in postman and etc, help me

Reasons:
  • Blacklisted phrase (1): help me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Daizygod

79448495

Date: 2025-02-18 13:58:30
Score: 3
Natty:
Report link

After much head banging I figure out that app runs in some "compatibility mode" if targetSdkVersion is too low (may be relative to device apilevel). targetSdkVersion >=24 fixed it for me. Shitty documentation Android :/

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

79448493

Date: 2025-02-18 13:58:30
Score: 1
Natty:
Report link

This is an old topic, however someone might arrive here by search. While AnyLogic does not formally support Unreal Engine, they have added (since end of 2024) support for NVidia Omniverse which is able to provide better 3D rendering than the native engine, similar to what you want to achieve on Unreal Engine. You can find it in the official documentation.

https://anylogic.help/advanced/omniverse/prerequisites.html

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

79448492

Date: 2025-02-18 13:57:29
Score: 1.5
Natty:
Report link

Create a JAR artifact for the project you want to add as a dependency. You can do this using IntelliJ's Build Artifact tool or with Maven package. Then, in the other project (where you want to add the dependency), go to: File -> Project Structure -> Modules -> your_module -> Dependencies Tab -> Click (+) Button and add JAR Dependency.

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

79448477

Date: 2025-02-18 13:52:28
Score: 0.5
Natty:
Report link

I think the sort of thing done below should work.

import networkx as nx

g = nx.complete_graph(4)

nx.set_node_attributes(g, {1: {"hello": "world"}})
nx.set_edge_attributes(g, {(2, 3): {"foo": "bar"}})

print(str(g.nodes.data()), str(g.edges.data()))

This produces output which shows node and edge attribute data:

[(0, {}), (1, {'hello': 'world'}), (2, {}), (3, {})] [(0, 1, {}), (0, 2, {}), (0, 3, {}), (1, 2, {}), (1, 3, {}), (2, 3, {'foo': 'bar'})]

There may also be some other way explained in this documentation on reading/writing Networkx graphs.

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

79448465

Date: 2025-02-18 13:49:27
Score: 0.5
Natty:
Report link

enter image description here

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <link
      rel="stylesheet"
      href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"
      integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg=="
      crossorigin="anonymous"
      referrerpolicy="no-referrer"
    />
    <style>
      .container {
        width: 100%;
        z-index: -1;
      }

      .progressbar li {
        list-style-type: none;
        width: 10%;
        float: left;
        font-size: 12px;
        position: relative;
        text-align: center;
        color: #666666;
      }

      .progressbar li:after {
        width: 100%;
        height: 2px;
        content: "";
        position: absolute;
        background-color: #666666;
        top: 15px;
        left: -50%;
        display: block;
        z-index: -999999;
      }

      .progressbar li:before {
        width: 30px;
        height: 30px;
        content: "";
        line-height: 30px;
        border: 2px solid #666666;
        display: block;
        text-align: center;
        margin: 0 auto 10px auto;
        border-radius: 50%;
        background-color: white;
        z-index: 999999;
      }

      .progressbar li:first-child:after {
        content: none;
      }

      .progressbar li.active {
        color: green;
      }

      .progressbar li.active:before {
        color: green;
        border-color: green;
      }

      .progressbar li.checked::before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f058";
        color: green;
        font-size: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .progressbar li.active + li:after {
        background-color: #808080;
      }
    </style>
  </head>
  <body>
    <div class="container">
      <ul class="progressbar">
        <li class="checked">Step 1</li>
        <li class="active">Step 2</li>
        <li>Step 3</li>
        <li>Step 4</li>
        <li>Step 5</li>
      </ul>
    </div>
  </body>
</html>

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

79448458

Date: 2025-02-18 13:46:26
Score: 0.5
Natty:
Report link

Dynamically fix service topic and subscription name

FunctionController.java

@FunctionName("notificationEventTopicTrigger") public void serviceBusTopicEvent( @ServiceBusTopicTrigger(name = "message", topicName = "%TOPIC_NAME%", subscriptionName = "%SUBS_NAME%", connection = "SERVICE_CONN_URL") String message, final ExecutionContext context) { logInfo("Service bus trigger processed a message..."); eventProcessor.processEvent(message); }

local.settings.json

{ "IsEncrypted": false, "Values": { "FUNCTIONS_WORKER_RUNTIME": "java", "AzureWebJobsStorage": "UseDevelopmentStorage=true", "SUBS_NAME": "notification1", "SERVICE_CONN_URL": "Endpoint=sb://test", "TOPIC_NAME": "notification-topic", }, "Host": { "LocalHttpPort": 7072, "CORS": "*", "CORSCredentials": false } }

application.yml

spring: cloud: azure: servicebus: connection-string: ${SERVICE_CONN_URL} namespace: poc123 topic-name: ${TOPIC_NAME} subscription-name: ${SUBS_NAME}

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

79448457

Date: 2025-02-18 13:46:26
Score: 2
Natty:
Report link

It looks like you haven't shared all the code for your JavaScript function. I'll give you a generic solution to calculate the cart total, and you can adapt it to your code.

Here's an example of a JavaScript function that calculates the cart total, assuming you have a list of items with their prices:

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

79448452

Date: 2025-02-18 13:43:25
Score: 4.5
Natty:
Report link

You can simply add an Empty Constructor or use lombok @NoArgsConstructor

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @NoArgsConstructor
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hamza Naceur

79448446

Date: 2025-02-18 13:41:23
Score: 7 🚩
Natty: 5.5
Report link

I tried your method and it looks like works. But I found that most of the code in the compiler directory were not counted. For example, the code coverage rate of rustc_abi is 55/86. But rustc_abi actually has more than 2k lines of code.

Is this because the code is not linked into the binary? Is there any solution?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (2): any solution?
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Sparrow Li

79448435

Date: 2025-02-18 13:39:22
Score: 2
Natty:
Report link

Best solution would be : Step 1 : Generate PAT from gitHub ( Go to developers setting and generate) Step 2 : On VS code , enter "git credential-manager github login" Step 3 : Enter the PAT generated on the window prompted in vs code Step 4 : Clone repo

This works perfectly.

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

79448434

Date: 2025-02-18 13:39:22
Score: 3.5
Natty:
Report link

If you work on a PHP project, just install PHP Intelephense..

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

79448430

Date: 2025-02-18 13:34:20
Score: 6 🚩
Natty: 6.5
Report link

what about 3rd party library like this https://github.com/kumgold/compose-pdf-maker

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Starts with a question (0.5): what
  • Low reputation (1):
Posted by: GOLD

79448427

Date: 2025-02-18 13:33:20
Score: 2
Natty:
Report link

Faced this problem when I created a remote repository with a README file to push an existing local repo. Should have just created without one as your git host suggests which went unnoticed. Created one without and problem solved.

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

79448425

Date: 2025-02-18 13:32:20
Score: 0.5
Natty:
Report link

Import the Correct Auth Facade

In DashboardController.php file, replace this incorrect import:

use Illuminate\Container\Attributes\Auth;

with the correct one:

use Illuminate\Support\Facades\Auth;

Then your index() function should be work.

Why did this happen?

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

79448423

Date: 2025-02-18 13:32:20
Score: 2
Natty:
Report link

rename ld-linux.so.2 like glibc-ld move it and node to same dir such as /lib/node/ or /libexec/node/ create shell-wrapper ./glibc-ld ./node symlink this script to $PATH/node It's a bit silly, but it should work without much modification

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

79448415

Date: 2025-02-18 13:29:19
Score: 4
Natty:
Report link

use this package

https://github.com/Chronos2500/CustomNavigationTitle

👆CustomNavigationTitle

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

79448412

Date: 2025-02-18 13:29:18
Score: 1.5
Natty:
Report link

I don't know the flutter_local_notifications plugin but the doc says you have to ask for permission like this:

FlutterLocalNotificationsPlugin flutterLocalNotificationsPlugin = FlutterLocalNotificationsPlugin(); flutterLocalNotificationsPlugin.resolvePlatformSpecificImplementation< AndroidFlutterLocalNotificationsPlugin>().requestNotificationsPermission();

The doc : https://pub.dev/packages/flutter_local_notifications#requesting-permissions-on-android-13-or-higher

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

79448411

Date: 2025-02-18 13:28:18
Score: 3
Natty:
Report link

The answer is that a property's getter and setter are invoked only from an instance.

The example that demonstrates this is within https://stackoverflow.com/a/7118013/1496279 .

> print Bar.x
> # < property object at 0x04D37270> 
> print Bar () .x
> # 0

The ( ) creates an instance.

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

79448407

Date: 2025-02-18 13:26:18
Score: 1.5
Natty:
Report link

Downgrade the Chronos, than try to install again:

composer require cakephp/chronos:^1.3

Then:

composer require cakephp/localized
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mateus Franklin

79448405

Date: 2025-02-18 13:26:17
Score: 5
Natty: 5
Report link

Question:

Can you do the same using Query instead of Indirect function?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user22779659

79448400

Date: 2025-02-18 13:25:17
Score: 3
Natty:
Report link

connect it with delegate call then you see how that your spoofed address occurs in on chain tx i have never tried you can do it make it live if someone call view then the delegate call ocuurs on on chain

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

79448397

Date: 2025-02-18 13:24:16
Score: 1.5
Natty:
Report link

It's important to user lowercase environmental variables, i.e., https_proxy works, HTTPS_PROXY does not.

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

79448389

Date: 2025-02-18 13:20:16
Score: 1.5
Natty:
Report link

According to the documentation of expo router (see in the attachment) you can keep a screen but hide it's tab by passing href: null to the <Tab.Screen />

Expo Tabs

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

79448387

Date: 2025-02-18 13:19:15
Score: 3.5
Natty:
Report link

You typed: 'onclick'. This is not working you have to use: 'on_click' you forgot the underscore.

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

79448382

Date: 2025-02-18 13:18:15
Score: 1
Natty:
Report link

Here is the win32 python code for you.

import win32com.client as win32

def excel_sensitivity_label(file_path): """open excel workbook""" xl = win32.Dispatch('Excel.Application') xl.Visible = False wb = xl.Workbooks.Open(file_path) set_sensitiviy_label(wb)

setting sensitivity label

def set_sensitiviy_label(wbook): """set sensitivity label""" label = wbook.SensitivityLabel.CreateLabelInfo() label.AssignmentMethod = 1 #MsoAssignmentMethod.PRIVILEGED # label id and site id can be find in excel through vba sub routine label.LabelId = "a8a73c85-e524-44a6-bd58-7df7ef87be8f" label.SiteId = "6c15903a-880e-4e17-818a-6cb4f7935615" wbook.SensitivityLabel.SetLabel(label, label)

excel_sensitivity_label(file_path)

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

79448379

Date: 2025-02-18 13:16:14
Score: 2
Natty:
Report link

So I just implemented this on my Sitecore environment with a CDN and it's awesome! These are my steps:

The image link above is a screenshot that has the parameters of the rule you need to create in your CDN. By default CustomAccept is what Dianoga calls the custom header. That value is set in your CDN config and you can change it to whatever you want or leave it, doesn't matter. The only thing that matters is that the setting value in your config matches what you target in your CDN rule.

If you have any questions beyond this what really helped me is actually reading the readMe on Dianoga's github page. That should answer the rest of your questions (as well as the article linked above the image link)

IF YOU'RE DOING THIS WITHOUT A CDN MAKE SURE TO DELETE THE MEDIACACHE FOLDER IN APP DATA. Dianoga talks about this in their steps on their github page. Since sitecore pulls from cache, it will pull images already there even if webP works and gets created already. You have to wipe it so that webP is the only thing in there. If you use a CDN you don't have to worry about this and maybe the worst is wiping your CDN cache.

Reasons:
  • Blacklisted phrase (2): was a life saver
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Pinpaho

79448370

Date: 2025-02-18 13:12:13
Score: 2
Natty:
Report link

Certainly too late for an answer however this works in Excel for the web and Office 365.

 =SUM(N(SCAN(0,A1:Z1,LAMBDA(ini,arr,IF(arr>90,ini+1,0)))=6))

temperature

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

79448364

Date: 2025-02-18 13:10:13
Score: 0.5
Natty:
Report link

I had been following the methodolgy laid out in https://www.merrell.dev/ios-share-extension-with-swiftui-and-swiftdata/ but hadn't followed it exactly. It turns out if I pass the newly constructed container from the ViewController to the SwiftUI view like this:

let contentView = UIHostingController(rootView: ShareView(context: context).modelContainer(modelContainer))

then in the SwiftUI view @Environment(.modelContext) private var modelContext

yields a good ModelContext. I'm scratching my head a little, but it works.

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

79448350

Date: 2025-02-18 13:03:11
Score: 0.5
Natty:
Report link

When I do something like:

 var customSettingsMax = AsDynamic(new {
    Width = 350,
    ResizeMode = "Max",
    format= "webp",
    quality= 100
  });

<img loading="lazy" src='@Link.Image(imgUrl, customSettingsMax)'>

It wil not generate a webp. However, when I do:

<img loading="lazy" src='@Link.Image(imgUrl, customSettingsMax, format: "webp")'>

It will, so I think the format setting is ignored somewhere....

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When I
  • Low reputation (0.5):
Posted by: MBouwman

79448349

Date: 2025-02-18 13:03:11
Score: 3.5
Natty:
Report link

I changed the project to multi target frameworks and this fixed the runtime error(s).

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

79448342

Date: 2025-02-18 13:02:11
Score: 1.5
Natty:
Report link

I don't think this solves your issue specifically, but:

I have found that this works if I call library directly

library(KFAS)    
model_good <- KFAS::SSModel(ts ~ -1 + SSMcustom(Z = Z_t, T = T_t, R = R_t, Q = Q_t, a1 = a1_t, P1 = P1_t)

And this does not if I try to use KFAS::SSMcustom instead. This returns the same error message that you describe.

model_good <- KFAS::SSModel(ts ~ -1 + KFAS::SSMcustom(Z = Z_t, T = T_t, R = R_t, Q = Q_t, a1 = a1_t, P1 = P1_t)

(sorry if this isn't the best way to post an "answer", I don't have enough reputation to add a comment it appears)

Reasons:
  • RegEx Blacklisted phrase (1.5): I don't have enough reputation
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: wiseguyj7

79448339

Date: 2025-02-18 13:01:11
Score: 3.5
Natty:
Report link

I hope this might help you.

https://www.geeksforgeeks.org/how-to-install-face-recognition-in-python-on-windows/#

I have downgrade python version as 3.8 and tested.

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

79448335

Date: 2025-02-18 13:00:11
Score: 1.5
Natty:
Report link

Look into your project structure. For example, if you have created a new typescript file outside src i.e. root of your project directory, nestjs will create a src inside build which was not there initially.

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

79448320

Date: 2025-02-18 12:54:09
Score: 1.5
Natty:
Report link

To get types displayed, try adding types to compilerOptions in tsconfig.json

{
  "compilerOptions": {
    "types": ["@uploadcare/file-uploader/types/jsx"]
  }
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Egor

79448316

Date: 2025-02-18 12:53:09
Score: 3.5
Natty:
Report link

You can dothis with a combination of RIGHT, LEN, and FIND functions.

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

79448307

Date: 2025-02-18 12:50:08
Score: 1.5
Natty:
Report link

and in case anyone else is using the TutorialBot.py file from GitLab, remember to change the "Filters" to from telegram.ext import filters as discovered by this user

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

79448302

Date: 2025-02-18 12:47:08
Score: 2.5
Natty:
Report link

Always be sure to set you rendermode. as default in sub components it's static rendering.... witch result in well being static ^^

overlooked it ;-)

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

79448299

Date: 2025-02-18 12:45:07
Score: 2
Natty:
Report link

I'll assume that the problem is that the path list is empty. This is most often the reason for index out of range when using index -1.

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

79448296

Date: 2025-02-18 12:45:07
Score: 2.5
Natty:
Report link

eyJubSI6IlNNLUc5OTFCIiwiaWQiOiIxNjk4NjI1NjEiLCJpYyI6MSwiYXAiOiJleUp6Y3lJNklrRnVaSEp2YVdSVGFHRnlaVjgzTWpjMElpd2ljR1FpT2lKdGNEWXlaV3RoTm1jM01qWnlOR0lpTENKcGNDSTZJakU1TWk0eE5qZ3VNalUwTGpJeU1pSXNJbkIwSWpvNE1UZ3hmUT09IiwiYnQiOiJleUpoWkNJNklqQXlPakF3T2pBd09qQXdPakF3T2pBd0lpd2lOV2NpT2pFc0luQXlJam94ZlE9PSIsInNhIjoxLCJycSI6MCwidnMiOjM0MzAwfQ==

Reasons:
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: dragon666

79448287

Date: 2025-02-18 12:42:07
Score: 1
Natty:
Report link

Today this may be done with

pointer-events:none;
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: Alexandr

79448282

Date: 2025-02-18 12:40:06
Score: 2
Natty:
Report link

DA API charges 2 cloud credits per processing hour/

const adskTokenUsageInCloudCredits = (adskCalculatedTimeTaken / 1000 / 60 / 60) * 2

Refer https://aps.autodesk.com/pricing

APS Pricing

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

79448277

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

Check this solution here if it helps you This is a code and a model for using fsolve function with MATLAB and Simulink. The both method are equivalent and give the same results. There are three types: 1- Basic : fsolve example (MATLAB & Simulink). 2- fsolve example (MATLAB & Simulink)- Inherent variables. 3- fsolve example (MATLAB & Simulink)- Inherent variables - Vector Input.

https://tahanster.gumroad.com/l/kcacwf

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

79448275

Date: 2025-02-18 12:40:06
Score: 2
Natty:
Report link

Ensure that you added the secret to GitHub.

  1. navigate to repo

  2. navigate to settings on that repo

  3. navigate to secrets and variables

  4. navigate to actions

  5. confirm that it exists and check details like spelling etc are the same as on the actions yml file

GitHub Secrets for Actions

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

79448270

Date: 2025-02-18 12:39:05
Score: 7 🚩
Natty: 4
Report link

Have you found a way to do this? I'm looking for a solution to the exact same scenario

Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found a way to do this
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Sam

79448252

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

In your first attempt it seems the object stored in configMBean doesn't have a method called createExportParams which causes the error.

In your second attempt it seems that findService did not find MBean which means you cannot run getExportSettings().

You could try switching your path to /AppConfig/sbconfig.

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

79448239

Date: 2025-02-18 12:28:03
Score: 2.5
Natty:
Report link

This was fixed when the next patch for Android Studio was released, back in 2019.

(Just to close this question off, old unanswered questions look untidy).

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

79448233

Date: 2025-02-18 12:27:01
Score: 8.5 🚩
Natty:
Report link

Can you share the flutter doctor output?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you share
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you share the
  • Low reputation (1):
Posted by: Benokan Kafkas

79448231

Date: 2025-02-18 12:25:01
Score: 2.5
Natty:
Report link

Ok! Apparently you have to

  1. first run you app;
  2. run in debug mode, so the inspector can be shown.

before debuging

after debuging

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

79448228

Date: 2025-02-18 12:24:01
Score: 2.5
Natty:
Report link

I finally found the problem. I was using the wrong import.

org.springframework.http.HttpMethod.GET

did the trick. jakarta.ws.rs.HttpMethod.GET returned a string that was evaluated as pattern.

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

79448225

Date: 2025-02-18 12:24:01
Score: 1.5
Natty:
Report link

Sets themselves are NOT mutable, even if their contents are. See code below. After line 2, y points to the contents of x. But because the set changes in line 4, it has to be destroyed and a new one is made. That is why afterwards, y no longer points to the contents of x but to the ORIGINAL set that was held by x. x = set(['a','b','c']) y = x print(x is y) x = set(['a','b','c','d']) print(x is y) print(y)

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

79448223

Date: 2025-02-18 12:22:00
Score: 1.5
Natty:
Report link

For me upgrading to the latest version of VSCode resolved the issue.

Turns out that the Python extensions were failing because they were newer than my VSCode version and the old version of VSCode was incompatible with the new Python extensions.

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

79448220

Date: 2025-02-18 12:21:00
Score: 1.5
Natty:
Report link

For Flux 0.16, use sum(length,Flux.trainables(model)).

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

79448213

Date: 2025-02-18 12:17:59
Score: 0.5
Natty:
Report link

Assuming the entire text is one line, something like the following will extract the three groups: path and the two versions:

Path *: *(.*) Version xyz *: *(.*) Version abc *: *(.*)

The version xyz would be \2 etc. Some variations would exist between regex implementations.

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

79448210

Date: 2025-02-18 12:16:59
Score: 1
Natty:
Report link

If Chrome Custom Tabs aren’t opening other apps, try these fixes:

1️⃣ Check Settings – Go to Chrome Settings → Site settings → Open by default and allow links to open in other apps.

2️⃣ Update Chrome & WebView – Make sure both are updated in the Play Store.

3️⃣ Clear Cache & Data – Go to Settings → Apps → Chrome → Storage → Clear cache & data.

4️⃣ Set Chrome as Default – Check Settings → Apps → Default Apps → Browser App and select Chrome.

5️⃣ Try a Different Browser – Test if links open properly in Firefox or Edge to see if it’s a Chrome issue for more information [visit our site]

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

79448202

Date: 2025-02-18 12:13:58
Score: 5.5
Natty: 4.5
Report link

I am also using pkpass and I want to enable NFC to that, can you please provide a way or approach to access this, I am already using a certificate with NFC check, that I have downloaded via developer portal. Can you please confirm that, do we have to approach apple to access NFC, or we can do it only by enabling NFC in pkpass certificate, as for now I have enabled that but now the pass is not even opening.

Reasons:
  • RegEx Blacklisted phrase (2.5): can you please provide
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Yash Singh

79448201

Date: 2025-02-18 12:13:56
Score: 10 🚩
Natty:
Report link

@Michael ilkanayev, hello. Were you able to solve the problem? I am experiencing a similar issue with React Native 0.76 and Axios/Fetch. In my case, the photos were also loading slowly. I managed to achieve a significant speedup in photo uploads by adding the parameter "maxRedirects: 0" to Axios. As for the Network Error issue, I have only resolved it by resending the photos in case of an error.

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve the problem?
  • RegEx Blacklisted phrase (3): Were you able
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Michael
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: JustCurious4

79448200

Date: 2025-02-18 12:12:55
Score: 1
Natty:
Report link

Alternatively you can apply this formula.

 =IFNA(DROP(REDUCE("",SEQUENCE(ROWS(A1:A4)),
 LAMBDA(u,v,VSTACK(u,     HSTACK(CHOOSECOLS(A1:A4,v),
 UNIQUE(TOCOL(CHOOSECOLS(B1:O4,v),1)),
 BYROW(UNIQUE(TOCOL(CHOOSECOLS(B1:O4,v),1)),
 LAMBDA(x,SUM(N(SCAN(0,CHOOSECOLS(B1:O4,v),
 LAMBDA(ini,arr,IF(arr=x,ini+1,0)))=4)))))))),1),"")

fruits

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

79448199

Date: 2025-02-18 12:12:55
Score: 2.5
Natty:
Report link

for me the answer was to erase the type: "module" from the package.json

someone in the team add this line and broke the tests :(

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

79448197

Date: 2025-02-18 12:10:55
Score: 3
Natty:
Report link

Today I received an email saying that xtb is going to close its API on March 14, 2025. So choose a competitor

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ondřej Novák

79448196

Date: 2025-02-18 12:09:55
Score: 0.5
Natty:
Report link

the right answer is this

const a = {"a.b":{"c.d":"test"}}

_.omit(a, "['a.b']['c.d']") // a.b:{}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: elad BA

79448195

Date: 2025-02-18 12:09:55
Score: 0.5
Natty:
Report link

There is case that I never found treated. Open a cmd window in the folder that contains the private key. Do the command:

ssh -i certificatefilename.ext user@server

If you get this message:

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: UNPROTECTED PRIVATE KEY FILE! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

In this case you have to change the security settings for the private key file so ONLY the current user can read it!

You have to use the key in Openssh format, if you have only the .ppk use puttygen.exe to convert.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Filler text (0.5): @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  • Filler text (0): @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  • Low reputation (1):
Posted by: nicolap8

79448184

Date: 2025-02-18 12:05:54
Score: 3
Natty:
Report link

One seems to be able to use the GUI way described by troglo now. When redeploying I only see the option for Artifact Registry. Deploys without failure. Others also seem to be able to deploy it as of now https://www.googlecloudcommunity.com/gc/Serverless/Cloud-Function-1st-gen-failing-to-update-to-use-Artifact/m-p/864110

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

79448181

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

the problem was with mime package so I downgraded the package to 3.0.0 and the application is now working well

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

79448167

Date: 2025-02-18 11:57:52
Score: 1.5
Natty:
Report link

Setting following property should disable all the metrics -

management.metrics.enable.all=false

Based on

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

79448163

Date: 2025-02-18 11:56:51
Score: 2.5
Natty:
Report link

İf you make right-click on the vs-code icon and select close the window, then it works but ı had made a lot try like closing with task manager and click the cross icon, they didnt work.

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

79448158

Date: 2025-02-18 11:55:51
Score: 2.5
Natty:
Report link

Remove

floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked,

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Romil Pipaliya

79448154

Date: 2025-02-18 11:54:50
Score: 4
Natty:
Report link

"Lead developer, career guide" is a very good read, focused in the personal abilities, it helped me a lot.

Reasons:
  • Blacklisted phrase (1): helped me a lot
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is a
  • High reputation (-1):
Posted by: DanielV

79448150

Date: 2025-02-18 11:52:49
Score: 5.5
Natty: 4
Report link

How did you do to solve this problem? I have it too (when i wanted to build the game(under an executable), it displayed me the exact same error)

Reasons:
  • RegEx Blacklisted phrase (1.5): solve this problem?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: Celian Cohen

79448149

Date: 2025-02-18 11:52:49
Score: 0.5
Natty:
Report link

Thanks to @MatsLindh who recommended a better solution:

from sqlalchemy import Sequence
seq = Sequence('user_column_seq', optional=True)
class User(db.Model):
    id: Mapped[int] = mapped_column(primary_key=True)
    column: Mapped[int] = mapped_column(nullable=True, unique=True)

user1 = User() # NULL
user2 = User(column=seq.next_value()) # next free value
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-2): solution:
  • Has code block (-0.5):
  • User mentioned (1): @MatsLindh
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: roundedrectangle

79448143

Date: 2025-02-18 11:50:48
Score: 1
Natty:
Report link

Your question is completely valid, and many beginners in web development have similar thoughts when first encountering the frontend-backend separation. Let me break it down in a structured way.

1. Why Does the Backend Need a Separate Server?

The main reason is that the frontend (React) and backend (Flask/ExpressJS) serve different purposes and have different execution environments.

Frontend run in the browser. Cannot interact directly with databases, files, sensitive operations like authentication.

Backend run on a server. It has full access of databases, files, business login and sensitive operations. Backend can deal with multiple frontend clients.

2. Why Can't the Frontend Run Backend Code Directly?

Anyone can think, "Why can't the browser just run Python or Node.js directly?". Here's why:

Browsers are designed and developed for the execute only JS. Allowing backend code like python or nodeJS to run directly on a browser lead to security risk. By using it users can directly access the database and users can execute harmful code.

It mean if the frontend directly connect to the databases, anyone can read, modify, or delete the data without any restrictions. Backend server's main purpose is protect the database and handle the data.

Backend servers are developed for dealing with multiple client application with multiple requests, database operations, business logic, and interconnected with different services. Therefore Backend need more resources to be perform the heavy operations. But frontend need to be lightweight and responsive for users.

3. Why Does Fetching Data from the Backend Seem Complex?

You mentioned that using fetch to communicate with the backend feels like a proxy system and is unnecessarily complex. However, this separation has advantages:

We can develop Frontend and Backend independently. By using this method we can swap out a React frontend for a mobile application without changing the backend.

Instead of exposing database credentials to the front end, the backend acts as an middleware to authenticate and validate all requests.

A well-structured backend API (Flask, Express) can serve multiple clients (React web app, mobile app, other services). This architecture makes it easier to integrate with external services (e.g., payments, authentication).

4. Why Can't React Just Run Backend Code?

You may have noticed that React allows importing some modules, but not others, in Node.js use require. This is because:

React run in the browser. NodeJs run on the server-side. Browsers only support import. But require is part of NodeJS, It mean require using in only backend. However bundlers remove backend specific code. Such as Webpack, and Vite strip out NodeJS specific code when building the project. Therefor when building the project making backend login unusable.

My Final thoughts

YES , Backend Frontend separation is adds complexity, But it is necessary for security, scalability , and performance. Now a day modern applications are designed and developed this way so that different devices can talk to the same backend API without exposing sensitive logic to the browser. Would it be easier if browsers supported full backend capabilities? Maybe. But that would open up huge security risks and reduce flexibility.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Dilshan W.M.A.

79448130

Date: 2025-02-18 11:47:48
Score: 3
Natty:
Report link

You could try using Regex to 'test' the string, since this falls into that category.

type BinaryString = `${string & { __brand: "{0|1}*" }}`;

function assertBinaryString(value: string): BinaryString {
    const binaryRegex = /^[01]*$/;
    if (binaryRegex.test(value)) {
        return value as BinaryString;
    } else {
        throw new Error("Invalid binary string format");
    }
}

let validDate: BinaryString = assertBinaryString("010101");
console.log(validDate); // Output : 010101
let invalidDate: BinaryString = assertBinaryString("random");
console.log(invalidDate) // Output : Error

Source: How to Define a Regex-Matched String Type in TypeScript ?

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Nithika Dias

79448128

Date: 2025-02-18 11:46:47
Score: 4
Natty:
Report link

Thank you very much for both of your replies. I will try out both, but so far both fulfill my requirements. This helps me a lot.

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

79448123

Date: 2025-02-18 11:45:46
Score: 1.5
Natty:
Report link

I had a similar problem and have created my own script based on Wayne's answer. You can pass it the path to a Jupyter notebook and it will print the code cells with the largest produced output ordered by the size.

For easier reference, the cell number, size of the output it produced and the first few lines lines of its code are printed. You can skip through the code cells from largest to smallest output by hitting enter :)

Please be aware that you will need to run this script from the command line (otherwise the input() part won't work)

import nbformat as nbf
from typing import TypedDict


class CodeCellMeta(TypedDict):
    cell_num: int
    output_size_bytes: int
    first_lines: list[str]


def get_code_cell_metadata(nb_path: str):
    ntbk = nbf.read(nb_path, nbf.NO_CONVERT)
    cell_metas: list[CodeCellMeta] = []
    for i, cell in enumerate(ntbk.cells):
        cell_num = i + 1
        if cell.cell_type == "code":
            meta: CodeCellMeta = {
                "output_size_bytes": len(str(cell.outputs)),
                "cell_num": cell_num,
                "first_lines": cell.source.split("\n")[:5],
            }
            cell_metas.append(meta)

    return cell_metas


def human_readable_size(size_bytes: int) -> str:
    size_current_unit: float = size_bytes
    for unit in ["B", "KB", "MB", "GB", "TB"]:
        if size_current_unit < 1024:
            return f"{size_current_unit:.2f} {unit}"
        size_current_unit /= 1024.0
    return f"{size_current_unit:.2f} PB"


def show_large_cells(nb_path: str):
    code_cell_meta = get_code_cell_metadata(nb_path)

    cell_meta_by_size_est = sorted(
        code_cell_meta, key=lambda x: x["output_size_bytes"], reverse=True
    )

    bytes_remaining = sum([el["output_size_bytes"] for el in cell_meta_by_size_est])

    for i, el in enumerate(cell_meta_by_size_est):
        print(f"Cell #{el['cell_num']}: {human_readable_size(el['output_size_bytes'])}")
        print("\n".join(el["first_lines"]))
        print("\n")
        bytes_remaining -= el["output_size_bytes"]

        if i != len(cell_meta_by_size_est) - 1:
            input(
                f"Remaining cell outputs account for {human_readable_size(bytes_remaining)} total. Hit enter to view info for next cell."
            )
        else:
            print("No more cells to view.")


if __name__ == "__main__":
    import sys

    try:
        nb_path = sys.argv[1]
        if not nb_path.endswith(".ipynb"):
            raise ValueError("Please provide a path to a Jupyter notebook file.")
    except IndexError:
        raise ValueError("Please provide a path to a Jupyter notebook file.")

    show_large_cells(nb_path)
Reasons:
  • RegEx Blacklisted phrase (2.5): Please provide
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sejmou

79448121

Date: 2025-02-18 11:44:46
Score: 1.5
Natty:
Report link

Pode realizar uma validação na tabela referenciada antes da exclusão:

WHEN NOT MATCHED BY SOURCE 
   AND NOT EXISTS (SELECT 1 FROM dbo.SSBT WHERE TN = T.TN) 
THEN DELETE;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jonathan Rodrigues

79448115

Date: 2025-02-18 11:43:46
Score: 0.5
Natty:
Report link

The problem was coming from the routes param on the FastAPI class in the main.py file.

app = FastAPI(
    title="title",
    description="API",
    version="0.2",
    servers=[{"url": "http://localhost:8000", "description": "Localhost"}],
    routes=router.routes, # don't use that !
...
)

When the param is removed, the dependencies are effectively overridden by the fixtures and tests can run with the appropriate session.

I don't know if this a FastAPI issue.

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

79448110

Date: 2025-02-18 11:39:45
Score: 3.5
Natty:
Report link

Do not use "cypress-cucumber-preprocessor", since it has already been deprecated.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dev Chaminda Perera

79448108

Date: 2025-02-18 11:39:45
Score: 6
Natty: 7
Report link

Can you do so for in-app purchasing as well?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: eugenekoiner

79448099

Date: 2025-02-18 11:36:43
Score: 6.5 🚩
Natty: 6.5
Report link

In Talend can we differentiate the data as different tables like indicating that this data from this file, if we took data from different files into single output file...????

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

79448098

Date: 2025-02-18 11:36:43
Score: 1
Natty:
Report link

I was working with certificates quite often and needed something similar. That's why I build https://github.com/pete911/certinfo. Among other things, it allows you to do what the above perl script does as well:

Reasons:
  • Contains signature (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: pete911

79448096

Date: 2025-02-18 11:36:42
Score: 4
Natty:
Report link

The lxml approach doesn't work for a schematron from the ConnectingEurope repository. A validation attempt fails with following message:

Fail: This implementation of ISO Schematron does not work with schemas using the "xslt2" query language.

It seems there are several people searching for such a solution, as also in this request, but there is no answer so far. Is there anyone able/willing to sched some light onto this, maybe with a code example in Python or C/C++?

Reasons:
  • Blacklisted phrase (1): Is there any
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Murphy42

79448084

Date: 2025-02-18 11:33:41
Score: 3
Natty:
Report link

I modified the swa cli js files to include extra logging and found the root cause was because I did not have an index.html file, I only had a home.html file.

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

79448070

Date: 2025-02-18 11:29:40
Score: 4.5
Natty:
Report link

thanks for the freaking question.... im here to tell you that,

it is because you ran out of token so you have nothng to give but u still be able to get the token using real money and exchange it to current envoirement or state of living

any reply?

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

79448069

Date: 2025-02-18 11:28:39
Score: 2
Natty:
Report link

You need to increase maxbyte in domain.sh/standalone.sh, if you don't have this line in the file, add it and restart the server.

JDK_SERIAL_FILTER="${JDK_SERIAL_FILTER:-maxbytes=250000000;maxdepth=128;maxarray=100000;maxrefs=300000}"

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

79448053

Date: 2025-02-18 11:20:37
Score: 10.5 🚩
Natty: 5.5
Report link

I am facing the same issue. Could you share your solution here?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you share your solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user2552712

79448049

Date: 2025-02-18 11:19:36
Score: 1.5
Natty:
Report link

messaging().setBackgroundMessageHandler(...) should be in your index.js so that when the app is in Kill or Quit state, the app receives notifications

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

79448048

Date: 2025-02-18 11:18:36
Score: 0.5
Natty:
Report link

You can use <Space vertical={true}>your content blocks</Space>

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Vitalii Del Vorobioff

79448037

Date: 2025-02-18 11:14:35
Score: 3.5
Natty:
Report link

I have one device two accounts how many. Passkeys will be built and will be shown

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

79448032

Date: 2025-02-18 11:14:35
Score: 1.5
Natty:
Report link

I recently came across this problem and was able to come up with a solution that should cater to all possibilities of array inputs.

What I mean by that is GitLab CI input arrays are a bit odd. They're a little like JSON arrays, except they allow values that aren't wrapped in quotes as well as those unquoted values having spaces. For example, the following is totally valid:

my_array_values:
  - value_1
  - "value 2"
  - value 3
  - "value 4"

This will cause $[[ inputs.my_array_values ]] to hold the following value:

'[value_1, "value 2", value 3, "value 4"]'

Hence, we can't use jq since it isn't valid JSON. You could enforce the use of "" wrapped values within your team / organisation and then use jq. However, if you want a more robust solution you could use this abomination I cooked up:

script:
  -|
   readarray -t tags < <(echo $[[ inputs.tags ]] |
     sed '
       s/[][]//g; # remove brackets
       s/,\s\+/,/g; # remove spaces after commas
       s/,/\n/g; # remove commas
       s/\"//g; # remove double quotes
       s/ /\\ /g; # escape spaces
     ' |
     xargs printf "%s\n")
   )
   for value in ${my_array_values[@]}; do
     echo "$value"
   done

If anyone that's good at bash has a better way of doing this please let me know

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: 0xREDACTED

79448029

Date: 2025-02-18 11:13:35
Score: 2.5
Natty:
Report link

Finally I fix the problem. Many thanks to @solidpixel for advice. Just added this line:

surface.setPreserveEGLContextOnPause( true ); // GLSurfaceView
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @solidpixel
  • Self-answer (0.5):
Posted by: Style-7

79448028

Date: 2025-02-18 11:13:34
Score: 4
Natty:
Report link

I uninstall Docker Desktop and reinstall docker: https://smallsharpsoftwaretools.com/tutorials/use-colima-to-run-docker-containers-on-macos/

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Chris Wong

79448022

Date: 2025-02-18 11:10:34
Score: 1
Natty:
Report link

I had the same issue. My solution was in the documentaion of ngrx

This issue arises specifically with custom features that accept input but do not define any generic parameters. To prevent this issue, it is recommended to specify an unused generic for such custom features:

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

79448021

Date: 2025-02-18 11:10:34
Score: 0.5
Natty:
Report link

The issue is related to the latest MetaMask extension version 12.11.0.

You may encounter this problem when executing multiple transactions sequentially—specifically when a second transaction is triggered immediately after the successful completion of the first transaction.

In this version, the first MetaMask pop-up functions correctly, but the second pop-up may indicate a failure, even though the transaction will eventually be confirmed on the blockchain.

My observation is that if you do not close the extension—something you might do after the first transaction by clicking the "Close Extension" button—the next transaction loads within the same pop-up. This causes it to use outdated values from the initial load, leading to a simulated failure. However, the transaction does not fail in reality, as the previous transaction on the blockchain has already been completed.

FYI, this issue does not occur if you close the extension after the first transaction and allow a new pop-up to open for the next transaction.

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

79448014

Date: 2025-02-18 11:07:33
Score: 1.5
Natty:
Report link

try to replace emailDeleteHandler: ##something goes here## with this emailDeleteHandler: (email: string)=> void

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

79448012

Date: 2025-02-18 11:07:33
Score: 3
Natty:
Report link

2-Bedroom Suite offers the perfect blend of space and comfort, ideal for families or roommates seeking privacy and convenience while enjoying a cozy, well-designed living environment.

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

79448010

Date: 2025-02-18 11:07:33
Score: 0.5
Natty:
Report link

You can use unicode : string responsavel = unicode"Estado de SÃO PAULO Coçar";

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

79448007

Date: 2025-02-18 11:06:33
Score: 3.5
Natty:
Report link

i appreciate to this people that spend their time to improve our knowledge thanks ❤️❤️

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Amir Asefi

79447998

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

What's the precision of the updated_at field? If you have batch imports you might get records with the same update_at timestamp, if the precision is too low, then limit 1 still only gives one row, but not necessarily the latest.

Even if you have no batch imports, the best data type for determinining the last inserted OR updated row is a rowversion field, that's a sequential number unique for the whole table that's not just generated at insert (as used in autoinc primary keys) but also increments with updates automatically. The SurrealDB is not offering this feature, though. And an autoincrementing Id would only do half the job, unless you only care about the insert order and not the last updated record.

In https://surrealdb.com/docs/surrealql/datamodel/ids#auto-incrementing-ids you find the optimal way to handle determining the last id though:

When dealing with a large number of records, a more performant option is to use a separate record that holds a single value representing the latest ID.

That's followed by a code example to implement such a table. Then having the last Id generated allows to simply query that one record without an order by and limit clause, as you know what ID you want. It'll still require an index on the autoincremented ID to get the fastest fetch of that one record.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What's the
  • Low reputation (0.5):
Posted by: LegacyDev

79447996

Date: 2025-02-18 11:02:32
Score: 1
Natty:
Report link

Check the object is null or enclose with try and catch

sol1: if(mainObject && mainObject.yourObject != null { /** add what yuo what you want to handle*/ }

Sol2: try{obj = mainObject.yourObject;}catch(Exception e){/** fallback code*/}

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