79099838

Date: 2024-10-17 21:15:33
Score: 4.5
Natty:
Report link

I can not access through VNC client @duck

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @duck
  • Single line (0.5):
  • Low reputation (1):
Posted by: Qwerty Qazaq

79099830

Date: 2024-10-17 21:12:32
Score: 2.5
Natty:
Report link

You are using two-way data binding which updates the property immediately.

The sample project is managed on Stackblitz. Check Here

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

79099806

Date: 2024-10-17 20:57:29
Score: 1
Natty:
Report link

I'm not entirely clear on exactly what your question is... But I interpret it as "How do I configure a project to use a specific implementation of an interface inside my AppHost?"

To do that, you would pass down a configuration that tells your app which implementation of an interface to use and then let that project choose the implementation based on the passed down configuration. This is probably most easily done through arguments, but can also be done with environment variables.

In your Apphost class, using arguments:

// Add your project to the IDistributedApplicationBuilder
builder.AddProject<Projects.MyWebUI>("my-web-ui").WithArgs("MyMagicA");

And then inside the MyWebUi.Program.cs file:

if (args.Contains("MyMagicA"))
{
    builder.Services.AddScoped<IMyMagic, MyMagicA>();
}
// Handle the case where we are told to use MyMagicB
else if (args.Contains("MyMagicB"))
{
    builder.Services.AddScoped<IMyMagic, MyMagicB>();
}
// Probably have some fallback value if no matching argument was passed in,
// or throw exception.

AppHost, using environment variables:

// Environment variable is added as a key-value pair
builder.AddProject<Projects.MyWebUI>("my-web-ui").WithEnvironment("magic-key", "MyMagicA");

MyWebUi.Program.cs file:

// Get the value from environment variables using the key:
var magicKey = builder.Configuration["magic-key"];

if (magicKey == "MyMagicA")
{
    builder.Services.AddScoped<IMyMagic, MyMagicA>();
}
// Handle the case where we are told to use MyMagicB
else if (magicKey == "MyMagicB")
{
    builder.Services.AddScoped<IMyMagic, MyMagicB>();
}
Reasons:
  • Blacklisted phrase (1): How do I
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: ThomasLundgren

79099796

Date: 2024-10-17 20:53:28
Score: 4.5
Natty:
Report link

Thank you for the answer, i will try as soon as i have time to go back to it!

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

79099793

Date: 2024-10-17 20:52:28
Score: 5
Natty:
Report link

I have same issue, in my cloudwatch metrics I even don't have AWS/Cognito namespaces, AWS docs says it should be available there!

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have same issue
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: SMA

79099789

Date: 2024-10-17 20:50:27
Score: 2.5
Natty:
Report link

Ran into a scenario where CS4014 wasn't working, found a bug https://github.com/dotnet/roslyn/issues/20782 with a link to a fix https://github.com/ykoksen/unused-task-warning/ Installing the Lindhart.Analyser.MissingAwaitWarning NuGet package generated a warning

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

79099788

Date: 2024-10-17 20:50:27
Score: 3.5
Natty:
Report link

Instead of sending a MTOM attachment, I tried sending an Inline attachment and the Siebel server seemed to like that better (no XML parsing error). SoapUI Attachments and Files

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

79099783

Date: 2024-10-17 20:48:26
Score: 1
Natty:
Report link

You can also get this cryptic error if you try to access the log4j2 configuration file using http instead of https. I added log4j2.debug=true and my log showed I was trying to load configuration via http, not https. If you must load via http, then add this export: "-Dlog4j2.Configuration.allowedProtocols=https,http" See page How to allow log4j-2.17.2 to download configuarion via HTTP? for details.

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

79099771

Date: 2024-10-17 20:44:25
Score: 3
Natty:
Report link

Getting the same issue while pulling data from RDS using glue 2.0 but working fine in glue 3, 4

So below is workaround for glue 2

First downloaded the jar file of postgres from https://jdbc.postgresql.org/download/

After Adding below parameter it is working fine

--extra-jars -> path/to/s3/postgresql-42.6.2.jar

--user-jars-first -> true

Reasons:
  • Has code block (-0.5):
  • Me too answer (2.5): Getting the same issue
  • Low reputation (1):
Posted by: Ujjawal Mandhani

79099765

Date: 2024-10-17 20:42:25
Score: 1
Natty:
Report link
user_text = input()
bad_text = ["Done", "done", "d"]
while user_text not in bad_text:
    print(user_text[-1::-1])
    user_text = input()
    if user_text in bad_text:
        break
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Daniel Trapp

79099757

Date: 2024-10-17 20:37:24
Score: 0.5
Natty:
Report link

Override the iOS bundle ID with a version that contains hyphens instead of underscores - e.g. com.site.your_app -> com.site.your-app

flutterfire configure --project=PROJECT_ID --ios-bundle-id=IOS_BUNDLE_NAME

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

79099755

Date: 2024-10-17 20:36:24
Score: 1
Natty:
Report link

--preserveWatchOutput

Also you can add it to the tsconfig.json

{
  "compilerOptions": {
    "preserveWatchOutput": true
  }
}

I dug so deep on this problem only to discover my solution was merged in v.10.4.5

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

79099726

Date: 2024-10-17 20:26:21
Score: 1
Natty:
Report link

using Jarod42s "old way", I ended here

template<class T, int X>
struct B {
  B(const T&) { cout << "X=" << X << "\n"; }
};

template <int N, class T> B<T, N> make_B(const T& t) { return B<T, N>(t); }
#define MAKE_B(obj, val) make_B<val>(obj)

...

B b2 =MAKE_B("Whatever", 42);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: albert

79099724

Date: 2024-10-17 20:25:21
Score: 1.5
Natty:
Report link

The issue you've described sounds like a defect with the API, if all of the assumptions you outlined are correct. From a syntax perspective, your test is written correctly.

Does the API respond with a 200 and a null body, or a different response code?

Are you sure the endpoint that establishes state for your application is the one that is returning null? Providing more context about the implementation of the system under test may point to the issue more clearly.

Have you asked the developers of the application you're testing what the expected behavior is on a session resume? As this is an end-to-end test, it should normally be sufficient to "do what a user would do" and wait the allowed amount of delay for the system to pass assertions without interrogating the implementation (local storage, API payloads, etc). As recommended by Playwright's docs: test user-visible behavior

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

79099720

Date: 2024-10-17 20:23:20
Score: 3.5
Natty:
Report link

The previous answer doesn't work in either capacity unless you use .currentTarget instead of .target as the event listener is what triggered the event

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

79099708

Date: 2024-10-17 20:19:19
Score: 1
Natty:
Report link

You can also use the standard Series.between function along with the time object from the datetime library. Piggybacking off of @unutbu's example:

import pandas as pd
import numpy as np
from datetime import time

N = 100
df = pd.DataFrame(
    {
        "date": pd.date_range("2000-1-1", periods=N, freq="H"),
        "value": np.random.random(N),
    }
)
df.loc[df["date"].dt.time.between(time(20, 0), time(21, 0))]

In this way you can still use the "inclusive" parameter and you don't have to mess with indexes.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @unutbu's
  • Low reputation (0.5):
Posted by: Ruben

79099706

Date: 2024-10-17 20:18:18
Score: 1.5
Natty:
Report link

Definitely XmlSerializer will create numbers with ',' if the thread culture has NumberFormat.NumberDecimalSeparator = "," I think this is a bug given that the XmlDeserializer ignores the thread culture and will throw an error if it finds numbers with comma...

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

79099698

Date: 2024-10-17 20:14:17
Score: 1.5
Natty:
Report link

You can keep your proxy, VPN, and SSL connection verification by performing the following steps to add your CA as a trusted issuer:

Azure CLI Errors - Certificate Verify Failed

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

79099694

Date: 2024-10-17 20:13:17
Score: 3
Natty:
Report link

No, you can't apply masking policy on a shared data. However, you can share the masked data from production to stage env.

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

79099686

Date: 2024-10-17 20:09:15
Score: 1.5
Natty:
Report link

What are custom JVM properties: Java has its own concept of environment variables for whatever reason.

How can I obtain the system properties for a particular JVM instance programmatically?

I downloaded a JVM zip, unpacked it, and then used jcmd.

$ Get-Process pycharm64

 NPM(K)    PM(M)      WS(M)     CPU(s)      Id  SI ProcessName
 ------    -----      -----     ------      --  -- -----------
    268 1,556.25   1,759.14     151.31    2092   1 pycharm64  

$ .\jcmd.exe 2092 VM.system_properties
2092:
...
idea.cycle.buffer.size=1024
idea.dynamic.classpath=false
idea.fatal.error.notification=disabled
idea.max.content.load.filesize=20000
idea.max.intellisense.filesize=2500
idea.no.launcher=false
idea.paths.selector=PyCharm2023.2
...
Reasons:
  • Blacklisted phrase (0.5): How can I
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Kaia

79099682

Date: 2024-10-17 20:06:14
Score: 1.5
Natty:
Report link

I was able to get around this without disabling SSL validation, and without changing the bundle PEM file:

Azure CLI Errors - Certificate Verify Failed

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

79099668

Date: 2024-10-17 20:01:13
Score: 3
Natty:
Report link

@Jeaninez The partner certificate is self-signed, so there is no certificate chain, it chains to itself. Is there a way to enable debugging within this class so we can tell why it is failing. For all intents and purposes, this should work but to us this is just a "black box" and it is not clear what our next steps should be to troubleshoot -- or if there is a bug in this code.

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Whitelisted phrase (-2): this should work
  • No code block (0.5):
  • User mentioned (1): @Jeaninez
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Debra Petta

79099644

Date: 2024-10-17 19:50:11
Score: 3
Natty:
Report link

Using the method: innerType() or sourceType(): ej: z.object({}).superRefine(()=>{}).sourceType()

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

79099639

Date: 2024-10-17 19:49:11
Score: 0.5
Natty:
Report link

You could try something like this:

list1 = [1, 2, 3, 4,5, 6, 7, 8, 9, 10]
list2 = []
i=0

while i !=len(list1):
    variabl = str(list1[i]) + str(list1[i+1])
    list2.append(int(variabl))
    i = i+2

Output:

[12, 34, 56, 78, 910]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Adeva1

79099636

Date: 2024-10-17 19:48:10
Score: 1
Natty:
Report link

It would be best if you used the <Script> element from NextJS, is not necessary to combine it with <Head>, actually is possible it will not work. So Instead is better to pass strategy="beforeInteractive" property on <Script> element

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

79099629

Date: 2024-10-17 19:47:10
Score: 1.5
Natty:
Report link

Right click > Open still did not bring up the password prompt for me and nothing happened. What got the installer working for me was Right Click > Show Package Contents. After getting the path to the Contents folder, cd to it from your terminal and run sudo ./osx-x86-64.

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

79099618

Date: 2024-10-17 19:43:09
Score: 4
Natty:
Report link

Solved by changing the port to 8080 instead of 80.

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

79099610

Date: 2024-10-17 19:39:08
Score: 1.5
Natty:
Report link

Does this package still work? I'm trying to run the sample code but get an error:

library(OECD)
dsets <- get_datasets()


Error in read_xml.response(httr::GET(url, ...)) : Not Found (HTTP 404).
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: vrad

79099607

Date: 2024-10-17 19:38:07
Score: 5.5
Natty: 4
Report link

were you able to make it work? I am a total noob, and am looking for a way to embed inta posts and profiles into different blog posts. [ I´ve tried to greet you multiple times but for some reason it doesnt show:(]

Reasons:
  • RegEx Blacklisted phrase (3): were you able
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user27858989

79099598

Date: 2024-10-17 19:35:07
Score: 1
Natty:
Report link

You have to upgrade your Strimzi cluster or downgrade your Kubernetes version. 0.26.0 is over 3 years old and Kubernetes 1.30 never existed when it was released.

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

79099589

Date: 2024-10-17 19:31:05
Score: 1
Natty:
Report link

SOLUTION: Just update "ffmpeg_kit_flutter_min" to version 6.0.3 in pubspec.yaml. Now it works

Reasons:
  • Whitelisted phrase (-2): SOLUTION:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Nijat Naghiyev

79099579

Date: 2024-10-17 19:29:05
Score: 2.5
Natty:
Report link

**Nah. This is how to merge clips:

  1. Select multiple clips that are next to eachother. (Hold shift and click each of them, or hold shift and click-drag to select all of them.)
  2. Click the "Timeline" tab.
  3. Select "Create Sequence from Selection", and the remaining options are self-explanatory.**
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: amateur

79099575

Date: 2024-10-17 19:28:04
Score: 1
Natty:
Report link

Just make your files as an actor like below I do:

actor SingletonWithStatic {
  private init() { }
  private var output = ""
  static let shared = SingletonWithStatic()

  func prepare(outputLine line: String) {
    output += line
    output += "\n"
  }

  func flushOutput() {
    print(output)
    output = ""
  }
}

Or you can silent your warning by making your static variable unsafe, but make sure you use that static variable in thread safe manner.

class SingletonWithStatic {
  private init() { }
  private var output = ""
  nonisolated(unsafe) static let shared = SingletonWithStatic()

  func prepare(outputLine line: String) {
    output += line
    output += "\n"
  }

  func flushOutput() {
    print(output)
    output = ""
  }
}

Or mark your class or struct as @MainActor

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

79099572

Date: 2024-10-17 19:27:04
Score: 1
Natty:
Report link
def subtract_float_columns_simple(df, A, B):
    # Convert columns to float, set invalid parsing to NaN
    df[A] = pd.to_numeric(df[A], errors='coerce')
    df[B] = pd.to_numeric(df[B], errors='coerce')

    # Subtract the columns, NaN will be propagated automatically
    return df[B] - df[A]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: guzel6031

79099565

Date: 2024-10-17 19:23:03
Score: 2
Natty:
Report link

pip install custom package to /tmp/ and add to path

subprocess.call('pip install requests -t /tmp/ --no-cache-dir'.split(), stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) sys.path.insert(1, '/tmp/') import requests

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

79099557

Date: 2024-10-17 19:21:02
Score: 4
Natty:
Report link

Many thanks to AndreasRu, it works... Great Case closed

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mike Savoy

79099548

Date: 2024-10-17 19:18:01
Score: 3
Natty:
Report link

You can you COALESCE function or builde a more complex query wthi the CASE function to filter nulls

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

79099534

Date: 2024-10-17 19:14:00
Score: 3
Natty:
Report link

another possible reason for this is indentation. So, make sure model and field sare in the same block.

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

79099528

Date: 2024-10-17 19:13:00
Score: 1
Natty:
Report link

Well, in Node you can run an express server on a URL lambda which is independent of API gateway. It's slightly cheaper, faster deployments, and you get much better error messages. The tradeoff is you must implement your own security considerations. Works well for me because has capabilities for addressing some concerns and most API's I do in projects don't need 90% of what API gateway is.

I haven't found a similar option in Python. All the Lambda servers I see on Python are explicitly linked to API gateway.

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

79099516

Date: 2024-10-17 19:07:59
Score: 2.5
Natty:
Report link

I managed to fix it by utilizing onTokenValidated and injecting custom claims into the context. Works perfectly with the Authorize attribute.

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

79099514

Date: 2024-10-17 19:07:59
Score: 2.5
Natty:
Report link

Since Java 23, JavaDoc supports Markdown. See JEP 467 for the syntax.

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

79099512

Date: 2024-10-17 19:06:59
Score: 4
Natty:
Report link

i am getting a similar problem also: W/System (11937): Ignoring header X-Firebase-Locale because its value was null. D/EGL_emulation(11937): app_time_stats: avg=334.20ms min=21.00ms max=526.36ms count=3 W/System (11937): Ignoring header X-Firebase-Locale because its value was null. D/FirebaseAuth(11937): Notifying id token listeners about user ( UlNOwuxRTyNG0ubaedHoaTvgI6C2 ). [log] Error during sign-in: type 'List<Object?>' is not a subtype of type 'PigeonUserDetails?' in type cast. i doest log in, however, then it throws this error. On my emulator, i get a popup saying my credentials were incorrect even though they are.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): i am getting a similar problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: James Baker

79099506

Date: 2024-10-17 19:05:58
Score: 0.5
Natty:
Report link

New Fiddle

For those of you stumbling upon this topic in the far flung future of the year 2024 and beyond, you might like to use a CSS Grid Layout to solve this problem. You just need the three styles below on the parent element, in this case the "edit" div.

  display: grid;
  align-content: center;
  justify-content: center;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Charles

79099495

Date: 2024-10-17 19:00:57
Score: 6 🚩
Natty:
Report link

Answer is in this link ( note you should to add Heroku ID to waitlist) : "Request timeout" H12 Heroku error tying to access MongoDB Atlas

Reasons:
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kamran Heydarov

79099491

Date: 2024-10-17 19:00:57
Score: 2.5
Natty:
Report link

Settings proxy request interception rules And your going to want to put a check mark on all the options to get best results.

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

79099474

Date: 2024-10-17 18:54:56
Score: 1
Natty:
Report link

I found that Python libraries were installed in two different paths on the server: One was '/usr/local/lib/python3.8/dist-packages', and the other one was '/usr/lib/python3/dist-packages'.

When I executed the scripts directly from the command line on the server, it did access the Pandas package from '/usr/local/lib/python3.8/dist-packages', whereas it was loading Pandas out of PHP using shell_exec() from '/usr/lib/python3/dist-packages', meaning it did load an older version of Pandas when executing the Python script out of PHP.

So, executing the same Python3 scripts from command line and out of PHP did import the packages from different directories.

I did remove Python3 and both package directories, reinstalled Python3 and both Pandas and Matplotlib packages, and that solved the problem for me.

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

79099469

Date: 2024-10-17 18:52:55
Score: 3.5
Natty:
Report link

If you are using Data Stream Api , you can think of broadcast state pattern

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

79099463

Date: 2024-10-17 18:50:54
Score: 6 🚩
Natty: 5.5
Report link

You crazy guys, why you need T_mult?

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

79099449

Date: 2024-10-17 18:45:52
Score: 1.5
Natty:
Report link

There is now a solution

CREATE TABLE new_table (LIKE old_table INCLUDING DEFAULTS);

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bob McCormick

79099448

Date: 2024-10-17 18:45:52
Score: 1
Natty:
Report link

Since you are responsible to manage the operating system yourself (selection, updates etc.), it is Infrastructure-as-a-Service (IaaS). More than that, Azure VMs are labeled as IaaS, as from official descriptions from Microsoft itself. This is particularly relevant as it is a potential question for AZ-900 certification.

Azure VM described as IaaS in Microsoft Learn

Azure VM described as IaaS in Microsoft Azure

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

79099438

Date: 2024-10-17 18:42:51
Score: 2
Natty:
Report link

You should check if the request is a preflight ($_SERVER['REQUEST_METHOD'] == "OPTIONS") and just send a 200 status code

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

79099423

Date: 2024-10-17 18:39:50
Score: 3
Natty:
Report link

https://solopredict.tips/ Looking for 100% verified solo fixed matches? Solo Prediction is the top-rated website for secure, accurate soccer predictions and fixed matches. As a trusted platform, Solo Prediction offers guaranteed profit through expertly analyzed betting tips. Our global team of professionals from various countries provides reliable and transparent predictions backed by real proof. Choose Solo Predict .tips for consistent success in your betting journey. Trust, transparency, and profit are our promises. Bet with confidence and never regret your choice!

Reasons:
  • RegEx Blacklisted phrase (1.5): fixed matches?
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: SOLOPREDICT FIXEDMATCHES

79099418

Date: 2024-10-17 18:37:49
Score: 2
Natty:
Report link

I also hit this problem. As it turns out, I had to mark the notebook as "trusted", otherwise it won't run javascript.

See screenshot attached. The checkbox to mark it as a "trusted notebook" is on the menu bar on the notebook's tab. Same menu bar as the "run" buttons, etc.

Screenshot of Trusted Notebook Checkbox

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

79099417

Date: 2024-10-17 18:37:49
Score: 1.5
Natty:
Report link

You can first scan the array in the forward direction and find out how many replaces there will be and which ones. After that, you can go back performing all the replaces in O(n). Thus, each char will be moved no more than once.

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

79099407

Date: 2024-10-17 18:32:48
Score: 3.5
Natty:
Report link

Had this exact same question. Timing it out, httplib2 timeout unit is in seconds.

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

79099404

Date: 2024-10-17 18:32:47
Score: 8.5 🚩
Natty: 4
Report link

I'm having a similar issue, but is kinda weird. I´m getting:

 ⨯ external "react-hook-form"

The target environment doesn't support dynamic import() syntax so it's not possible to use external type 'module' within a script

But the thing is that "react-hook-form" is not external, is actually in my node_modules, I'm using it like this:

import { Controller, useForm, ValidationRule } from 'react-hook-form';

I'm using NextJS 14, Module Federation NextJs-MF 8.5.4

I've struggling with this for a week or more, if someone has an idea please let me know. Thanks in advance.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): please let me know
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm having a similar issue
  • Low reputation (1):
Posted by: Miguel Moreno Carrillo

79099402

Date: 2024-10-17 18:31:47
Score: 3
Natty:
Report link

Can you check the failed logins on the database by running the query
SELECT * FROM DBA_AUDIT_SESSION WHERE RETURNCODE != 0;

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: munsidd

79099400

Date: 2024-10-17 18:31:47
Score: 3
Natty:
Report link

I have the same issue with python 3.12.6 using pyinstaller 5.13.2. I using an older version of pyinstaller because of the way the pkging structure changed after 5.13.2

The issue was: The numpy.libs dll are missing in the executable pkg created by pyinstaller. The dlls are under: \Lib\site-packages\numpy.libs

The Fix: You can either manually copy the numpy.libs folder into the pkg after pyinstaller or modify your spec file to include those files

n_f=[]
for files in glob(sys.prefix + r'\Lib\site-packages\numpy.libs\*.*'):
    f2 = files,"numpy.libs"
    n_f.append(f2)
all_files.extend(n_f)

and then set datas = all_files in the Analysis

a = Analysis(['examples.py'],pathex=['/Developer/PItests/minimal'],binaries=None,datas=all_files,hiddenimports=[],hookspath=None,runtime_hooks=None,excludes=None)

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (0.5):
Posted by: Vivian Yung

79099396

Date: 2024-10-17 18:30:46
Score: 2
Natty:
Report link

perplexity of model can be achived by exponential of its cross entropy loss: pp = 2^(-loss)

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

79099394

Date: 2024-10-17 18:29:46
Score: 0.5
Natty:
Report link

I received this note from Keysight: "With IOLS 2024 and IOLS 2024 Update 1, the R&D team has developed and included the Keysight Instrument IO Service. This service has a "KIIS" server running in the background that provides a REST API to extract instrument information added into Keysight IO Libraries Suite's GUI -> Connection Expert. This means that if the customer has versions of IO Libraries Suite that are older than the 2024 version, the workaround below will not work. The customer can download these newer versions of IOLS from here: www.keysight.com/find/iosuite"

Basically, this is OK but not trivial. I am going to rename all our DVMs uniquely ModelNo-SerialNo, and require our test software to use those IDs.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: Max Yaffe

79099377

Date: 2024-10-17 18:22:44
Score: 3.5
Natty:
Report link

You can code your response in both ways and put a counter to see how many moves your counter does to go from a place to another and to change letters.

On the problem : wouldn't it be faster to declare another char[100] and fill it as we go through the first char array ? And then either return it, or change the first char address to the second ?

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

79099374

Date: 2024-10-17 18:22:44
Score: 3
Natty:
Report link

It happens the same when I try to convert PDF to JPG. It works correctly only when I add -flatten to the command.

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

79099369

Date: 2024-10-17 18:20:44
Score: 2
Natty:
Report link

I think you'd also need to set "Always Embed Swift Standard Libraries" build setting is to "Yes" in your Xcode project. Clean and rebuild the project, then test again on a real device.

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

79099365

Date: 2024-10-17 18:19:44
Score: 0.5
Natty:
Report link

You are getting that error because the object that you retrieved using the requests library in Python does not have an attribute or method like tell().

Based on this documentation, you can either use response.text to read the content response from the server. You can also use response.json() if you are dealing with data in JSON format. If you want to get a raw stream of bytes of your data, use response.raw and set stream=True at first when making the request.

Since you are working with stream upload using upload_from_file, you can try using response.raw in your code. Here’s an example:

import requests
from google.cloud import storage


url = "https://people.sc.fsu.edu/~jburkardt/data/csv/addresses.csv"

# GCP info
client = storage.Client(project="my-project")
bucket = client.get_bucket('my-bucket')
target_blob = bucket.blob("test/report_01.csv")

with requests.get(url, stream=True) as f:
    target_blob.upload_from_file(f.raw)

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

79099360

Date: 2024-10-17 18:18:43
Score: 1
Natty:
Report link

Both @turo comment and @rob-spoor answer helped me understand what's happening. But I wanted to elaborate a bit more to also describe what happens when we add a where clause.

Doing query.from doesn't overwrite the previouse query.from but it adds a new table to the from using the cross join. For example, starting from 1 root to n roots, this is the equivalent sql query:

In my example I had a table with 3 rows.

Nice! But what happens when i add the where clause? In this case the where applies only to the first table. Let's see it in practice:

But what happens when we do just a simple select and not the count?

Apparently JPA implicitly applies a DISTINCT on the primary key. That's why, no matter how many roots we have, the result is always the same as if we only had one root.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @turo
  • User mentioned (0): @rob-spoor
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: zcb

79099348

Date: 2024-10-17 18:14:43
Score: 2
Natty:
Report link

Word uses the Windows driver so you need to change the driver settings as well, otherwise no matter what settings you push to the printer, the driver settings will always overwrite the printer configuration.

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

79099345

Date: 2024-10-17 18:13:42
Score: 1
Natty:
Report link

I see this question is from 2022, but given that this still a relevant issue depending on what years of data you are trying to work with...

To use Tiger data from 2023 onward, you must use PostgreSQL v 16+. To use Tiger data from 2022 backward, use an earlier version of PostgreSQL.

As you note, the column definitions changed in a way that breaks the relevant geospatial extensions. The version of PostgreSQL you are using will impact which version of PostGIS and related extensions get installed. In particular, there are PostGIS docker images out there based on prior (< 16) versions of PostgreSQL, and they will produce exactly the error seen above.

I might recommend looking on dockerhub for an image I published under "therapeuticyoga/postgis-osm-geo-route-amd" that is compatible with TIGER 2023+ data.

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

79099341

Date: 2024-10-17 18:13:42
Score: 3
Natty:
Report link

Depending on the Terraform version you're using, you could set the version attribute as optional, see: https://developer.hashicorp.com/terraform/language/expressions/type-constraints#optional-object-type-attributes.

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

79099339

Date: 2024-10-17 18:12:42
Score: 3.5
Natty:
Report link

Decided to use an event listener instead of a signal listener which just gives me the data of whatever I click on.

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

79099333

Date: 2024-10-17 18:10:41
Score: 0.5
Natty:
Report link

This is a little bit late but hope someones encountering this will need it.

axios.interceptors.request.use((config: any) => {
  alert(config.method.toUpperCase());
  return config;
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: manaclan

79099330

Date: 2024-10-17 18:09:41
Score: 3
Natty:
Report link

just use height: 100vh; min-height: fit-content;

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

79099327

Date: 2024-10-17 18:09:41
Score: 1.5
Natty:
Report link

Here, static_cast is a keyword, so it doesn't belong to the std namespace. That's why the error is showing expected unqualified-id before 'static_cast'.

In simpler terms, you're using an identifier std::static_cast that doesn't exist. The std:: namespace is used to qualify identifiers within the C++ Standard Library (like std::vector, std::copy, etc.).

See more about scope resolution operator https://www.ibm.com/docs/en/i/7.3?topic=expressions-scope-resolution-operator-c-only

See How do you properly use namespaces in C++? for use of namespaces generally.

Reasons:
  • Blacklisted phrase (1): How do you
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sudip

79099318

Date: 2024-10-17 18:06:40
Score: 2
Natty:
Report link

You might need to use "seleniumwire" instead of just selenium.

It is designed to intercept and modify browser requests during a Selenium session. It also lets you capture network traffic, including request payloads and headers.

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

79099312

Date: 2024-10-17 18:04:40
Score: 1.5
Natty:
Report link

This is occurring because the formats of df['formatted_date'] and '2024-08-05' are different, this can be fixed by adding this simple line: df['formatted_date'] = df['formatted_date'].dt.strftime("%Y-%m-%d")

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

79099297

Date: 2024-10-17 17:57:38
Score: 4
Natty:
Report link

use a fixed page name to begin routing @page "info/{ticker}/{name}/{accessionNumber}"

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @page
  • Low reputation (1):
Posted by: super.Omar

79099293

Date: 2024-10-17 17:56:37
Score: 2
Natty:
Report link

The docs cover how to customize the well-known endpoint without providing a custom filter. See OpenID Connect 1.0 Provider Configuration Endpoint.

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

79099270

Date: 2024-10-17 17:48:35
Score: 2
Natty:
Report link

Thanks for sharing this. We are suggesting below steps to better troubleshoot the issue.

  1. Use the HomeGraph Viewer tool to confirm that the state of the gate is correctly updated after the gate is closed. Ensure that the correct state is reflected in the HomeGraph before the test queries it again. This will help you determine if the problem is with the state update or the timing of the query.
  2. In your case, the test is querying the state too soon after closing the gate. Increasing the timeout between the state change and the query could allow enough time for the state to propagate through your system and reach Google’s HomeGraph. Try increasing the Report State timeout within Test Suite beyond 20 seconds to give the system more time to process the change.

Let us know how it goes.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): Thanks for sharing
  • Whitelisted phrase (-1): In your case
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Armen Sarkisyan

79099258

Date: 2024-10-17 17:44:34
Score: 3
Natty:
Report link

this issue has been resolved by MS on the backend. you'll need to use the method above to restore your flows

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

79099246

Date: 2024-10-17 17:40:32
Score: 0.5
Natty:
Report link

How to Setup Web App and Importing Data in Sheets

This is based on my own understanding of your problem, The solution I came up with is using Web App in Apps Script. I added and modified your code.


Sample Output:

index.html Page 1

recipe.html Page 2


This is How you Setup

New Project Image

Create Files

Naming HTML

function doGet(e) {
  let html = HtmlService.createTemplateFromFile(e.parameter.page || "index");
  let data = getValues();
  if (e.parameter.title) {
    for (let i = 0; i < data.length; i++) {
      if (data[i][1] == e.parameter.title) {
        html.recipe = data[i];
        return html.evaluate()
      }
    }
  }
  html.recipe = data;
  return html.evaluate();
}

function getValues() {
  // Paste your Sheet ID here
  const sheetId = '-SHEET ID-';
  const ss = SpreadsheetApp.openById(sheetId);
  const rawData = ss.getActiveSheet().getRange(2, 2, ss.getLastRow() - 1, ss.getLastColumn()).getValues();
  let data = [];
  for (let i = 0; i < rawData.length; i++) {
    let tempData = []
    for (let o = 0; o < rawData[i].length; o++) {
      if (rawData[i][o] != '' && rawData[i].length) {
        tempData.push(rawData[i][o]);
      }

    }
    data.push(tempData);
  }
  return data
}

How to get SHEET ID

Sample Image from Web.

Sample Image from Web


In your Index and Recipe HTML's paste this code

index.html

<!DOCTYPE html>
<html lang="cz">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Kuchařka ztracených receptů</title>
  <script>
    function getRecipe(title){
      const loc = <?= ScriptApp.getService().getUrl()?>+`?page=recipe&title=${title}`;
      window.open(loc);
      }
  </script>
</head>
<style>
  button {
    color: rgb(210, 210, 210);
    background-color: rgb(53, 104, 139);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15pt;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    margin: 15px;
    /*15px mezera z top, right, bottom, left*/
  }

  h1 {
    color: rgb(21, 42, 55);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30pt;
  }

  .button-container {
    text-align: center;
    /*centrování tlačítek*/
    margin-top: 20px;
    /* místo nad tlačítky */
  }
</style>
<body style="background-color:rgb(179, 199, 213);">
  <h1>Kuchařka ztracených receptů</h1>
  <div class="button-container">

    <? for (let i = 0; i < recipe.length; i++) { ?>
    <button onclick="getRecipe(<?= recipe[i][1] ?>)"><?= recipe[i][1] ?></button>
    <? } ?>
  </div>
</body>
</html>

recipe.html

<!DOCTYPE html>
<html lang="cz">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Recipe</title>
  <script>
    function winClose(){
      window.top.close();
    }
  </script>
</head>
<style>
  button {
    color: rgb(210, 210, 210);
    background-color: rgb(42, 84, 111);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 10pt;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
  }
  h3 {
    color: rgb(21, 42, 55);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20pt;
  }
</style>
<body>
  <h4 class="title">
    <?= recipe[0] ?>
  </h4>
  <h5>
    <?= recipe[1] ?>
  </h5>
  <p>Ingredients</p>
  <ul>
    <? for(let i = 2; i < recipe.length - 1; i++ ){ ?>
    <li>
      <?= recipe[i] ?>
    </li>
    <? } ?>
  </ul>
  <br>
  Steps:
  <? const lastRecipe = recipe.length - 1; ?>
  <?= recipe[recipe.length - 1] ?>
  <br><br>
  <button onclick="winClose()">Hlavní stránka</button>
</body>
</html>


How to Setup a Web App

Follow these Instruction


Reference:

Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): How to
  • Low reputation (0.5):
Posted by: Lime Husky

79099236

Date: 2024-10-17 17:37:31
Score: 2
Natty:
Report link

There isn't an out-of-the-box way to do this but if you don't want to create and maintain Lambda functions, you could use this no-code approach.

CloudWatch alarms automatically publish events to EventBridge [1], so you could configure EventBridge rules in other regions to forward events you're interested in into the "aggregator" region [2]. And then, in the aggregator region, you could set up another rule with your SQS queue as a target [3].

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

79099228

Date: 2024-10-17 17:35:31
Score: 1.5
Natty:
Report link

We were struggling with a similar issue (Invalid Signature on a JWT issued by Azure Entra ID). The comment from @Apps on the other answer here was the correct one for us - we just needed to add {clientId}/.default into the requested scopes when authenticating.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Apps
  • Single line (0.5):
Posted by: Andrew

79099220

Date: 2024-10-17 17:32:30
Score: 3
Natty:
Report link

If you just want to run python in your web browser you can try Python Interactive Console

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

79099218

Date: 2024-10-17 17:31:29
Score: 2
Natty:
Report link

The 413 error occurs because the server isn't properly parsing the incoming form data, possibly due to missing middleware or misconfiguration. By adding express.urlencoded middleware and ensuring it's applied before your routes, you allow the server to parse URL-encoded form data. Additionally, consistent use of module syntax (require vs. import) and checking for other errors will help prevent crashes and ensure your server runs smoothly.

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

79099215

Date: 2024-10-17 17:31:29
Score: 0.5
Natty:
Report link

Just for anyone who ends up here - I had similar issue when unwinding after a split on property that did not exist.

WITH rememberMe, split(n.property, ",") as list
UNWIND CASE WHEN list = [] THEN [] ELSE list END AS l
RETURN rememberMe

was losing rememberME. Fixed with:

WITH rememberMe, split(CASE WHEN EXISTS(n.property) THEN n.property ELSE "" END, ",") as list
UNWIND CASE WHEN list = [] THEN [] ELSE list END AS l
RETURN rememberMe
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Stephanie

79099210

Date: 2024-10-17 17:29:29
Score: 3.5
Natty:
Report link

See this for more info, now that the feature is officially in preview.

https://cloud.google.com/bigquery/docs/reference/standard-sql/pipe-syntax

(It was a bug that the error message appeared earlier.)

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

79099202

Date: 2024-10-17 17:26:28
Score: 3
Natty:
Report link

Use curl -4 ifconfig.me command in cmd to get correct IP because of some network configuration or proxies mongodb will pick wrong public IP.

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

79099197

Date: 2024-10-17 17:24:28
Score: 1
Natty:
Report link

Linux Mint 21.3

~/$ ssh -vT [email protected]
OpenSSH_8.9p1 Ubuntu-3ubuntu0.10, OpenSSL 3.0.2 15 Mar 2022
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: include /etc/ssh/ssh_config.d/*.conf matched no files
debug1: /etc/ssh/ssh_config line 21: Applying options for *
debug1: Connecting to github.com [140.82.121.3] port 22.
debug1: Connection established.
debug1: identity file /home/user/.ssh/id_rsa type 0
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rafael

79099194

Date: 2024-10-17 17:23:28
Score: 3
Natty:
Report link

jupyter nbconvert --ClearOutputPreprocessor.enabled=True --inplace yournotebookname.ipynb

Run this command from anaconda prompt terminal.

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

79099193

Date: 2024-10-17 17:23:28
Score: 2
Natty:
Report link

I simply went to the angular.json file and added a reference to the bootstrap.js file in the scripts section.

"scripts": [
  "scripts/bootstrap.js"
]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ARMWilkinson

79099188

Date: 2024-10-17 17:18:27
Score: 2
Natty:
Report link

I experienced this after switching a referenced library from a library targeting .net Framework 2.0 to one targetting Framework 4.0. My application targets .Net 6, so not a great error message.

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

79099178

Date: 2024-10-17 17:13:26
Score: 0.5
Natty:
Report link

Overall it makes sense. Not sure if you've seen it already, but this reference architecture is similar to what you're building: https://learn.microsoft.com/en-us/azure/architecture/example-scenario/integration/app-gateway-internal-api-management-function

Some comments:

SPOF concerns can be mitigated by onboarding availability zones to be protected from compute failure. Configuration deployment failures can be prevented by controlling your dev process.

Look at v2 tiers to have lower provisioning and scaling time: https://learn.microsoft.com/en-us/azure/api-management/v2-service-tiers-overview#key-capabilities

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Vitaliy Kurokhtin

79099176

Date: 2024-10-17 17:13:26
Score: 0.5
Natty:
Report link

For ESM module do the following:

echo {} > event.json
npx esbuild handler.ts > handler.js 
lambda-local --esm -l handler.js -h handler -e event.json 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: llama

79099173

Date: 2024-10-17 17:12:26
Score: 2
Natty:
Report link

Anyone finding this in 2024 and having issues with the accepted answer because of "provider not found on local machine" just update the connection string by changing Microsoft.Jet.OLEDB.4.0 to Microsoft.ACE.OLEDB.12.0. Works like a charm.

Apparently this has to do with 32-bit vs 64-bit.

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

79099170

Date: 2024-10-17 17:11:26
Score: 3.5
Natty:
Report link

Question answered by Clemens in a comment to the question

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

79099166

Date: 2024-10-17 17:10:25
Score: 0.5
Natty:
Report link

IntelliJ (File > Settings > Build,Execution,Deployment > Build Tools > Maven )

change maven home path to "user maven wrapper".

It worked for me.

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

79099159

Date: 2024-10-17 17:08:24
Score: 9 🚩
Natty: 6.5
Report link

were u able to make it work ??

Reasons:
  • RegEx Blacklisted phrase (3): were u able
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Arshnoor Singh

79099149

Date: 2024-10-17 17:04:22
Score: 6 🚩
Natty: 5
Report link

I have the same problem in Safari on iphone and my cookies have an expiry period of one month.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: smohadjer

79099145

Date: 2024-10-17 17:03:21
Score: 0.5
Natty:
Report link

I'm pretty sure that what you want is to @extend the class.

@import "text-styles.css"

.profile {
  @extend .h1_48;
}

@media only screen and (max-width: 768px) {
  .profile {
    @extend .h5_18;
  }
}

For more, I reccomend reading W3Schools

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

79099132

Date: 2024-10-17 16:59:20
Score: 6 🚩
Natty: 6
Report link

Any idea how I can find the (robust) standard errors for these covariates?

Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Unknown

79099122

Date: 2024-10-17 16:56:19
Score: 2.5
Natty:
Report link

In addition to my previous answer to this question, I just now discovered that multiple key bindings within VSCode stop working whenever I open/run Microsoft Word.

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