79399668

Date: 2025-01-30 11:10:25
Score: 2
Natty:
Report link

If your IIS application pool is associated with a site name, you can easily configure it in Visual Studio by navigating to your project's properties. Go to Web, then find the Servers section and select External Host. In the Project URL field, enter your hostname. When you run your project, it will automatically attach to the specified host.Project Properties

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

79399657

Date: 2025-01-30 11:07:24
Score: 1
Natty:
Report link

Okay it seems like the problem is that the package includes a plugin that is causing the problem. For plugins, there is the --server flag to pass in a mirror. It seems to work if I install the plugin using the server flag beforehand. As Pulumi doesn't seem to remember where it got the plugin from I will have to install it this way each time in the pipeline before running the regular pulumi install command.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Tim Vahlbrock

79399656

Date: 2025-01-30 11:07:24
Score: 2.5
Natty:
Report link

Take a look at the Update Configuration method which I believe will let you do this :)

eg dropinInstance.updateConfiguration('applePay', 'amount', '10.00');

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

79399653

Date: 2025-01-30 11:06:24
Score: 1.5
Natty:
Report link

We faced a similar issue on the load all method. The returned key was the same as the requesting key.

The issue was that the client calculated the partition id on binary data, that was creating using a different serializer than the server. Using the same serializer solved the problem

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

79399652

Date: 2025-01-30 11:05:24
Score: 0.5
Natty:
Report link

For anyone coming to this post, I've EF 8 and I can do the below command to see the list of migrations and their status. "(Pending)" will be added after a script pending for migration:

dotnet ef migrations list --verbose
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: pti_jul

79399646

Date: 2025-01-30 11:04:23
Score: 1
Natty:
Report link

This is the url I used to get the info I needed. The key, I think, is the chaining of '&prop=extracts|pageimages|info' in the request.

$url='https://en.wikipedia.org/w/api.php?action=query&format=json&prop=extracts|pageimages|info&inprop=url&exintro=1&explaintext=1&exsentences=5&piprop=original&pageids=' . $item->id;
$x=json_decode(file_get_contents($url), true);  
dump($x);   
Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user1106252

79399643

Date: 2025-01-30 11:02:22
Score: 0.5
Natty:
Report link

You can try these Formulas using REGEXREPLACE:

=REGEXREPLACE(A1, "\s+\n", CHAR(10))

Or

=REGEXREPLACE(A1, "\s+($|\n)", "$1")

Also, try using REDUCE:

=REDUCE(,SPLIT(A1, CHAR(10)), LAMBDA(a,c, JOIN(REGEXREPLACE(c,"\s[^ ]*$",""),a,CHAR(10))))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alma_Matters

79399638

Date: 2025-01-30 11:01:22
Score: 1.5
Natty:
Report link

This is related to the visibility_timeout configuration of SQS queues. as per documentation if a task isn’t acknowledged within the visibility_timeout, the task will be redelivered to another worker and executed. This causes problems with retry tasks where the time to execute exceeds the visibility timeout; if that happens it will be executed again, and again in a loop. So we have to increase the visibility timeout to match the time of the longest ETA(retry exhaustion) we’re planning to use.

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

79399636

Date: 2025-01-30 11:00:21
Score: 3.5
Natty:
Report link

Just remove <br> element

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: NIYOMUGISHA Obed

79399632

Date: 2025-01-30 10:59:21
Score: 1
Natty:
Report link

Old topic, but first Google result, so I am here to share my 15 minutes reaserch with you guys.

Go to Excel --> Preferences --> Edit --> uncheck "use system separator" or whatever. Inserting "," for decimals and "." for thousands actually worked for me.

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

79399629

Date: 2025-01-30 10:59:21
Score: 2
Natty:
Report link

There seems to be a problem with your python environment. Please try to reinstall CLIMADA in a fresh environment as described in the installation guide https://climada-python.readthedocs.io/en/stable/guide/install.html. This should resolve the issue.

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

79399616

Date: 2025-01-30 10:54:19
Score: 2
Natty:
Report link

I suppose that currently your views are in XML layouts. Glance is a framework base on Jetpack Compose. So you need to redo all views of your widget in Glance.

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

79399614

Date: 2025-01-30 10:53:18
Score: 4
Natty:
Report link

highlighting removed text in red and added things in green enter image description here

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

79399606

Date: 2025-01-30 10:52:18
Score: 2
Natty:
Report link

I had the same issue. Rolling back from .NET 8 to .NET 6 fixed it for me.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: zobbo

79399597

Date: 2025-01-30 10:48:17
Score: 3
Natty:
Report link

I don't how to put an image in a comment or if it is possible so I use this space to ask you a question and I will delete or develop this answer after I get your answer.

Is it the display you are looking for ?
plot

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
Posted by: rehaqds

79399591

Date: 2025-01-30 10:47:17
Score: 1
Natty:
Report link

your issue is related to using vulkan as graphics renderer try pengl rendering or force vulkan in release mode try these and get back to me this is to force vulkan in release mode flutter run --release --enable-vulkan this is to force opengl flutter run --release --enable-software-rendering

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

79399585

Date: 2025-01-30 10:45:16
Score: 4
Natty:
Report link

Take a look at Pythonnet, easy to use

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

79399580

Date: 2025-01-30 10:43:15
Score: 0.5
Natty:
Report link

As far as I know in T-SQL (and most likely Sybase) you cannot use order by clause in sub-query, derived table and view unless using Top n for example the following query will result an error message in T-SQL:

SELECT TOP 1 P.FirstName, P.LastName, (SELECT E.Title FROM Education E WHERE P.ID = E.PersonId ORDER BY E.StartDate DESC) 'LastEducationLevel' FROM Person P

However this one will be executed successfully:

SELECT P.FirstName, P.LastName, (SELECT TOP 1 E.Title FROM Education E WHERE P.ID = E.PersonId ORDER BY E.StartDate DESC) 'LastEducationLevel' FROM Person P

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

79399574

Date: 2025-01-30 10:41:15
Score: 3.5
Natty:
Report link

I update all what is possible. IDE, SDK, Gradle and Kotlin versions and also my computer. Now It working!

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

79399570

Date: 2025-01-30 10:39:14
Score: 2
Natty:
Report link

Have you tried running it on a physical device? I've had issues running flutter with resizable emulator.

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Divyam Thakur

79399567

Date: 2025-01-30 10:38:14
Score: 2.5
Natty:
Report link

The answer by @romeara no longer works. In the most recent release of Odfdom, 0.12.0, there is simply no class PageLayoutProperties. Instead the setProperty of the OdfStylePageLayout class must be used. This is the method used in the source @romeara linked to.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @romeara
  • User mentioned (0): @romeara
  • Single line (0.5):
  • Low reputation (1):
Posted by: user273104

79399566

Date: 2025-01-30 10:38:14
Score: 1
Natty:
Report link

To make such a test you need to have

  1. 2 SIP registrations created in Voximplant - one for each extension provided by PBX vendor.
  2. 2 scenarios in Voximplant. One of them should make outbound call using SIP registration related to the first PBX extension using VoxEngine.callSIP with regId parameter specified Second scenario will receive calls from the second extension. For that you need link SIP registration to a routing rule containing the desired scenario.

More information can be found here

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

79399565

Date: 2025-01-30 10:38:14
Score: 1.5
Natty:
Report link

To execute a set of tests, separate them by ||, e.g:
gradlew tests --tests=Foo||Bar||Baz

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

79399562

Date: 2025-01-30 10:38:14
Score: 0.5
Natty:
Report link

I can see the following problems in your code:

  1. read.file() needs to be replaced with read_csv() or read.csv() based on the libraries being used in the code.
  2. print() function is missing - if you directly use omega (you may not be able to see the results always. use print(omega(my.data)).

Corrections:

  1. my.data <- read_csv("path/to/your_file.csv")

  2. print(omega(my.data))

Try this and see it that works.

Reasons:
  • Whitelisted phrase (-1): Try this
  • No code block (0.5):
  • Low reputation (1):
Posted by: Swati

79399559

Date: 2025-01-30 10:37:14
Score: 1
Natty:
Report link

We used Mirrorfly for our project. When using Mirrorfly for the chat feature (core, messages, and chat), the size impact on your app will typically be around 2–3MB. The necessary SDKs come in .aar format, and to get the chat working, you will need to include the following components:

mirrorfly-android-sdk-core.aar – This includes the essential core functions such as authentication and user management (approximately 500KB). mirrorfly-android-sdk-chat.aar – This file is responsible for the chat functionalities (about 1MB). mirrorfly-android-sdk-messages.aar – It handles message sending, push notifications, and related tasks (around 500KB). These libraries allow you to integrate the chat feature with minimal impact on the app size.

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

79399558

Date: 2025-01-30 10:36:14
Score: 3
Natty:
Report link

Just a guess from my experience with IDEs, and specially with Rstudio, they don't do the implicit prints. So try using an explicit print. For example, print(omega(my.data))

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

79399549

Date: 2025-01-30 10:31:12
Score: 2
Natty:
Report link

To stop or pause a running OPTIMIZE operation on a Delta table (started via executeCompaction()), there is no direct API in Delta Lake 2.x or earlier. If the OPTIMIZE is running as a Spark job, you can kill the associated Spark job.

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

79399545

Date: 2025-01-30 10:30:12
Score: 2
Natty:
Report link

Plt.subplots can be used to create multiple axes and set shared y-axes so that y-axis labels can be aligned across two axes in subplots. You can position the label on one axis by using ax.set_ylabel(), and you can adjust its placement by using ax.yaxis.set_label_position(). For consistency of alignment, ensure that both subplots have the same y-axis.

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

79399544

Date: 2025-01-30 10:29:12
Score: 2
Natty:
Report link

Scaffold(extendBodyBehindAppBar: true);

appBar: AppBar(backgroundColor: Colors.transparent)

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

79399539

Date: 2025-01-30 10:28:11
Score: 1
Natty:
Report link

cwd work only with , shell=True, for example:

subprocess.Popen(command, cwd=path_to_work_dir, shell=True)

Because param cwd is work dir, not path to command.

cwd: Sets the current directory before the child is executed.

Use full path or shell=True. Don't do both

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

79399530

Date: 2025-01-30 10:24:11
Score: 0.5
Natty:
Report link

It was pointed out that subtle is actually undefined.

I replaced my function with this code and it now works (and is nicer as it just returns a string not a Promise<String>:

export default function hashPassword(unHashedPassword) {
    const hash = crypto.createHash("sha256")
    return hash.update(unHashedPassword).digest().toString("hex")
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Kris Rice

79399522

Date: 2025-01-30 10:20:09
Score: 2.5
Natty:
Report link
  onTapOutside: (event) {
              FocusManager.instance.primaryFocus?.unfocus();
            },

Thank you here for at least steering me in a good direction! Now it works.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: MrDevil

79399511

Date: 2025-01-30 10:17:07
Score: 11 🚩
Natty: 4
Report link

how were you able to use NAT gateway to connect to a private endpoint to resolve this issue? I'm having very similar problems with ACI and SQL behind private endpoint.

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve this issue?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm having very similar problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how were you
  • Low reputation (1):
Posted by: Marcin Siekierski

79399493

Date: 2025-01-30 10:11:05
Score: 1
Natty:
Report link

Javscript is nowdays a mix of interpreter and compiled lannguage , it's called JIT compilation and let me tell you what's this and how our JS engine executes code.

so when you write the code , js engine tokenizes the code and converts it to AST ( a tree like structure ) then it goes to Profiler ,Profiler's main work is that check for the code that runs repetitively like a loop or a function which is called many times and it takes that part of the code and throw it to TurboFan Compiler , turbofan's main job is that it optimize and compiled that portion of code into optimized binary and then run. and other parts of code runs interpreted by Ignition compiler which converts the code into ByteCode and runs.

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

79399490

Date: 2025-01-30 10:09:05
Score: 2.5
Natty:
Report link

It depends on what domain provider you are using but based on my research few of the major domain providers suggest using nameserver instead of CNAME.

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

79399483

Date: 2025-01-30 10:06:04
Score: 1.5
Natty:
Report link

Whoever experiencing this problem, try to import this in the following way:

import * as crypto from 'node:crypto';

var id = crypto.randomUUID() ......
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Денис Бричаг

79399478

Date: 2025-01-30 10:05:03
Score: 2.5
Natty:
Report link

A very useful table of F# naming conventions can be fount at https://learn.microsoft.com/en-us/dotnet/fsharp/style-guide/component-design-guidelines#guidelines-for-f-facing-libraries

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

79399473

Date: 2025-01-30 10:04:03
Score: 3
Natty:
Report link

One can get the outboundIpAddresses from the Resource JSON for the Container APP. In Azure Portal go to the container's Overview -> Essentials -> JSON View button. enter image description here

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

79399472

Date: 2025-01-30 10:04:03
Score: 3.5
Natty:
Report link

For anyone seeing this after 2024, PWAs are definitely the way to go. Chrome web apps are no longer supported by Google.

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

79399471

Date: 2025-01-30 10:04:03
Score: 2
Natty:
Report link

I suppose you solved this by now, but what I learned is that firebase protocol is meant for mobile apps. For a web app you should use gtag. If you are using a mobile app, the docs describe how to use the mobile specific platform to get the ID, which doesn't come from the firebase installations module.

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

79399470

Date: 2025-01-30 10:03:03
Score: 1
Natty:
Report link

The unintuitive solution to the problem is to mark AIDL interface with @VintfStability tag in service (and .bp file) and not to do this in application. The gitlab project is updated to the working state and may be used as a reference.

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

79399464

Date: 2025-01-30 10:00:01
Score: 0.5
Natty:
Report link

Solution found:

I had to add the following method to my DashboardController:

public function configureAssets(): Assets
{
   $assets = parent::configureAssets();
   $assets->addWebpackEncoreEntry('app');
   return $assets;
}

Source - Crease29

May it be useful to someone else !

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

79399449

Date: 2025-01-30 09:54:59
Score: 10.5 🚩
Natty: 6.5
Report link

did you manage to solve the issue? I'm stuck on the same problem

Reasons:
  • RegEx Blacklisted phrase (1.5): I'm stuck
  • RegEx Blacklisted phrase (3): did you manage to solve the
  • RegEx Blacklisted phrase (1.5): solve the issue?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Skander Karoui

79399435

Date: 2025-01-30 09:50:58
Score: 1.5
Natty:
Report link

Git has several solutions for your need. But as you don't want to use submodules or sparse-checkout I don't see any well established Git practice that fit's your needs.

Perhaps you should reconsider your thoughts on submodules or sparse-checkout.

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

79399425

Date: 2025-01-30 09:45:57
Score: 3.5
Natty:
Report link

Recent versions of Artillery (starting with v2.0.22) have built-in support for TypeScript, without the need for a manual build step - https://github.com/artilleryio/artillery/releases/tag/artillery-2.0.22

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

79399423

Date: 2025-01-30 09:45:56
Score: 4
Natty: 4.5
Report link

Check out the official PostgreSQL wiki for a list of possibilities: https://wiki.postgresql.org/wiki/Converting_from_other_Databases_to_PostgreSQL#Microsoft_SQL_Server

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

79399421

Date: 2025-01-30 09:44:56
Score: 2.5
Natty:
Report link

Thanks,I was using wrong rgb codes.I just did a print of the cell font color and it directed me to the right values.I see Moken has advised the same correction.

Var1 = ""
Var2 = ""   
if source_sheet['C11'].value == None:
Var1 = "No Data"
elif source_sheet['C11'].font.color.rgb == "FF92D050":
Var1 = "Green"
elif source_sheet['C11'].font.color.rgb == "FFFF0000":
Var1 = "Red"

print(Var1)

Regards Biru

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

79399417

Date: 2025-01-30 09:43:55
Score: 0.5
Natty:
Report link

Setting config.defaults.capture has no effect as it's not a recognized configuration option for Artillery. (It looks like it was possibly suggested by an AI copilot?)

You're not seeing http.-prefixed metrics you've defined in that block because Playwright-based tests don't capture those metrics. You can see the list of metrics reported by those tests in the official docs here: https://www.artillery.io/docs/reference/engines/playwright#metrics-reported-by-the-engine

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Hassy Veldstra

79399415

Date: 2025-01-30 09:43:55
Score: 1
Natty:
Report link

PS C:\Users\RAAM\Music\Html\Basic-_Html\New folder\react> npx create-react-app myapp npx : File C:\Program Files\nodejs\npx.ps1 cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170. At line:1 char:1

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: deepu deepika

79399406

Date: 2025-01-30 09:41:55
Score: 1
Natty:
Report link

android { namespace 'ir.galaxycell.kako' compileSdk 33

buildFeatures{ dataBinding true }

defaultConfig { applicationId "ir.galaxycell.kako" minSdk 21 targetSdk 33 versionCode 1 versionName "1.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

}

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

79399400

Date: 2025-01-30 09:40:55
Score: 1
Natty:
Report link

docker compose and docker-compose are 2 different things, Compose v2 (docker compose) is a plugin for Docker.

Reference plus more information can be found here.

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

79399397

Date: 2025-01-30 09:39:54
Score: 2.5
Natty:
Report link

From Hans Passant in comment,

The setting that actually matters is Project > Properties > Build > "Platform target"

I said in the question there was no use of AnyCpu but this was false when I checked these settings for the project.

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

79399394

Date: 2025-01-30 09:39:54
Score: 0.5
Natty:
Report link

Я как раз LLM обучаю на SHAP) можно проверить как она обучилась ! Вот что она рекомендует:

1.Масштабирование: Если вы хотите избежать масштабирования, удалите вызовы scaler.fit_transform и используйте исходные данные.

2.Фоновые данные: Рассмотрите возможность использования filtered_df_2023 и filtered_df_2024 в качестве фоновых данных для объяснителей.

  1. Параметр data в shap.Explanation: Убедитесь, что вы передаете исходные значения признаков, а не SHAP-значения.

    import pandas as pd import shap import matplotlib.pyplot as plt

    dataframe = X.copy() dataframe.reset_index('ds', inplace=True) dataframe['ds'] = pd.to_datetime(dataframe['ds'])

    filtered_df_1 = dataframe[(dataframe['ds'] >= '2023-01-01') & (dataframe['ds'] <= '2023-07-31')] filtered_df_2023 = filtered_df_1.drop(columns=['ds'], errors='ignore')

    filtered_df_2 = dataframe[(dataframe['ds'] >= '2024-01-01') & (dataframe['ds'] <= '2024-07-31')] filtered_df_2024 = filtered_df_2.drop(columns=['ds'], errors='ignore')

    explainer_2023 = shap.Explainer(best_model, filtered_df_2023) explainer_2024 = shap.Explainer(best_model, filtered_df_2024)

    shap_values_2023 = explainer_2023(filtered_df_2023) shap_values_2023_mean = shap_values_2023.values.mean(axis=0) shap_values_2023_base = shap_values_2023.base_values.mean()

    shap_values_2024 = explainer_2024(filtered_df_2024) shap_values_2024_mean = shap_values_2024.values.mean(axis=0) shap_values_2024_base = shap_values_2024.base_values.mean()

    feature_names = filtered_df_2024.columns

    shap_2023 = shap.Explanation( values=shap_values_2023_mean, base_values=shap_values_2023_base, data=filtered_df_2023.mean().values, # Используем исходные значения признаков feature_names=feature_names )

    shap_2024 = shap.Explanation( values=shap_values_2024_mean, base_values=shap_values_2024_base, data=filtered_df_2024.mean().values, # Используем исходные значения признаков feature_names=feature_names )

    print('2023') plt.figure(figsize=(10, 6)) shap.waterfall_plot(shap_2023, max_display=20)

    plt.figure(figsize=(10, 6)) shap.waterfall_plot(shap_2024, max_display=20)

Ответьте пожалуйста работает ли код, для оценки LLM Удачи Вам в работе)

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Руслан Танташев

79399374

Date: 2025-01-30 09:33:53
Score: 2
Natty:
Report link

@Op3r4t0r When running Deno tests with VSCode as of Deno 2.1.7, it only checks if there's a deno.json file in the workspace level or below it. If you open a workspace that has a directory with deno.json in it, VSCode will fail to find it and resolve correct paths.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Op3r4t0r
  • Low reputation (1):
Posted by: Forgetable

79399366

Date: 2025-01-30 09:30:52
Score: 1
Natty:
Report link

As per unclear answers before:

In the Git window, Pull Request should be available as a tab. In that tab there is a + button which can be used to create a pull request in the IDE. enter image description here

If the Azure Devops plugin is installed as mentioned in OP's post, this will work. Not sure if it is a requirement for it to work.

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

79399359

Date: 2025-01-30 09:28:52
Score: 0.5
Natty:
Report link

As Firebase Authentication does not natively support roles, you need to store user roles separately. The best approach is to use Firestore or Realtime Database to manage user roles.

Check this documentation for more information.

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

79399358

Date: 2025-01-30 09:27:51
Score: 0.5
Natty:
Report link

To append ellipsis to long lines with awk one can

echo 'blablabla' | \
  awk '{if (length($0) <= 100) print $0; else print substr($0, 1, 100) " ..."}'

.. or even

echo 'blablabla' | \
  awk '{if (length($0) <= 100) print $0; else print substr($0, 1, 100) " \033[90m...\033[0m"}'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: arcadius

79399351

Date: 2025-01-30 09:25:51
Score: 1
Natty:
Report link

is it possible to access an Azure Web App via a Point-to-Site VPN without using a Private Endpoint? If so, what configurations are required to make this work?

Yes, it's possible to access an Azure Web App via a Point-to-Site (P2S) VPN without using a Private Endpoint, but additional configurations are required because VNet Integration does not provide inbound access by default

Go to your App Service -> Networking ->Outbound Traffic -> VNet Integration -> Provide your Virtual network and Subnet and hit Connect.

enter image description here

enter image description here

After doing above changes, your Azure Web App is only accessible from the P2S VPN without a Private Endpoint.

Reasons:
  • Blacklisted phrase (1): is it possible to
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): is it
Posted by: Sirra Sneha

79399350

Date: 2025-01-30 09:25:51
Score: 0.5
Natty:
Report link

I want to share a somewhat hacky workaround - using a ResizeObserver on the problem button, I was able to effectively force the left position based on the right and the resulting width (reference).

I want to stress that this solution is very inconsistent and less performant than simply using right instead of left, so if there is a way to do so, I'm still on the lookout for answers.

Reasons:
  • Whitelisted phrase (-1): solution is
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: TCFP

79399346

Date: 2025-01-30 09:23:50
Score: 3
Natty:
Report link

small hint: exportHeaderValue is the header (text) that shall show in the export, not a boolean flag.

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

79399333

Date: 2025-01-30 09:20:50
Score: 1
Natty:
Report link

Reinstall Node.js and npm from NodeSource Repository fixed my problem. The simplest way to install Node.js and npm is from the NodeSource repository, which provides up-to-date versions tailored for your system. This method ensures you get the latest features, performance improvements, and security patches for Node.js and npm.

To accomplish that, take the following steps:

  1. Update the local repository to ensure you install the latest versions of Node.js and npm:

sudo yum update

  1. Add the NodeSource repository to the system with curl:

curl -sL https://rpm.nodesource.com/setup_16.x | sudo bash -

  1. To install Node.js and npm, run the following command:

sudo yum install -y nodejs 4. Verify the installed software with these commands:

node --version

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

79399331

Date: 2025-01-30 09:20:50
Score: 2
Natty:
Report link

you should check .htaccess file in public_html/wp-admin and check permissions. for directories: 755 for files: 644 if permissions is correct, rename .htaccess file in public_html/wp-admin and refresh. in my case renaming was solution.

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

79399330

Date: 2025-01-30 09:20:50
Score: 2.5
Natty:
Report link

400 : 1 erreur de validation pour le format GenerateChatCompletionForm L'entrée doit être un dictionnaire valide [type=dict_type, input_value='json', input_type=str] Pour plus d'informations, visitez https://errors.pydantic.dev/2.9/v/dict_type

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

79399328

Date: 2025-01-30 09:19:49
Score: 3
Natty:
Report link

I have same problem in my code. initially you pass empty array const [data, setData] = useState<CampaignSummary[]>([]); that cause issue in chart. If use add wrpper like that

const [loading, setLoading] = useState(true);
const [data, setData] = useState<CampaignSummary[]>([]);
 const font = useFont(inter, 12);

  useEffect(() => {
    const fetchCampaignSummary = async () => {
      try {
        const response = await axios.get(
          'lead-conversion-history',
        );
        setData(response.data);
setLoading(false)
      } catch (error) {
        console.log('Error fetching lead campaign summary:', error);
      }
    };

    fetchCampaignSummary();
  }, []);

  const campaignData = data.map((item: CampaignSummary) => ({
    campaignName: item.campaignName,
    convertedLeadCount: item.convertedLeadCount,
    totalLeadCount: item.totalLeadCount,
  }));
 if (loading) {
    return (
      <View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
        <ActivityIndicator size="large" color={appColors.primary} />
        <Text>Loading chart data...</Text>
      </View>
    );
  }

  return (
    <CartesianChart
      data={campaignData}
      xKey="campaignName"
      yKeys={['convertedLeadCount', 'totalLeadCount']}
      domain={{ y: [0, 50] }}
      padding={{ left: 10, right: 10, bottom: 5, top: 15 }}
      domainPadding={{ left: 50, right: 50, top: 30 }}
      axisOptions={{
        font: { fontFamily: 'Arial', fontSize: 10 }, // Update the font as needed
        tickCount: { y: 10, x: 5 },
        lineColor: '#d4d4d8',
        labelColor: appColors.text.light,
      }}
    >
      {({ points, chartBounds }) => (
        <BarGroup chartBounds={chartBounds} betweenGroupPadding={0.3} withinGroupPadding={0.1}>
          <BarGroup.Bar points={points.convertedLeadCount} animate={{ type: 'timing' }}>
            <LinearGradient
              start={vec(0, 0)}
              end={vec(0, 500)}
              colors={['#c084fc', '#7c3aed90']}
            />
          </BarGroup.Bar>
          <BarGroup.Bar points={points.totalLeadCount} animate={{ type: 'timing' }}>
            <LinearGradient
              start={vec(0, 0)}
              end={vec(0, 500)}
              colors={['#a5f3fc', '#0891b290']}
            />
          </BarGroup.Bar>
        </BarGroup>
      )}
    </CartesianChart>

with that logic you won't get the error. I have tested it and it is working

Reasons:
  • Blacklisted phrase (1): I have same problem
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have same problem
  • Low reputation (1):
Posted by: ibrar hussain

79399327

Date: 2025-01-30 09:18:49
Score: 1.5
Natty:
Report link

use

    <ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent">
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (0.5):
Posted by: Sadique Khan

79399323

Date: 2025-01-30 09:16:48
Score: 2
Natty:
Report link

Just make user.id open. If at least one property is final - Hibernate cannot create the proxy for this class and lazy loading is impossible (doc).

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

79399318

Date: 2025-01-30 09:14:48
Score: 1
Natty:
Report link

I'm not sure if this is overkill, but here's my attempt:

=LET(_Data,A2:C6,
_Col1, CHOOSECOLS(_Data,1),
_Col2, CHOOSECOLS(_Data,2),
_Col3, CHOOSECOLS(_Data,3),
_Uni,UNIQUE(_Col1),
_Select,BYROW(_Uni,LAMBDA(a,IF(SUM((_Col1=a)*((_Col2="yes")+(_Col3="yes")))=2,a,""))),
_Drop,FILTER(_Select,_Select<>"","EMPTY"),
_Filter,FILTER(_Data,_Col1=_Drop),
_Filter)

Example

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

79399315

Date: 2025-01-30 09:12:46
Score: 5
Natty:
Report link

have u found the solution for that? Same issue both on linux and windows platforms.

Reasons:
  • RegEx Blacklisted phrase (1): Same issue
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: DzikiSzynszyl

79399292

Date: 2025-01-30 09:03:44
Score: 2
Natty:
Report link

just change your NEO4J_URI neo4j+s://ABC123.database.neo4j.io to neo4j+ssc://ABC123.database.neo4j.io then restart kernel and run all.

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

79399289

Date: 2025-01-30 09:01:44
Score: 3.5
Natty:
Report link

I don't know if you still needed it, but this thread helped me do the custom code for NodeJs: Signing/Decoding with Base-64 PKCS-8 in Node.js

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

79399288

Date: 2025-01-30 09:01:44
Score: 3.5
Natty:
Report link

it's probably a Collision to other Apps , like MYSYS, if you have MYSYS installed on your system delete it and try again to install python packages.

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

79399277

Date: 2025-01-30 08:54:42
Score: 0.5
Natty:
Report link

If your project simply targets net8.0-windows, it may default to windows7.0 (the minimum supported version in .NET 8.0), causing the mismatch.

Modify MCSecure.csproj to add the full targetframework.

<TargetFramework>net8.0-windows10.1</TargetFramework>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jiachen Li-MSFT

79399273

Date: 2025-01-30 08:53:42
Score: 1
Natty:
Report link

Just try to wrap your TextFormField or TextField into ConstrainedBox with maxHeight constraints

ConstrainedBox(
    constraints: const BoxConstraints(
           maxHeight: 40),
    child: TextField(...)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Volodymyr Kuleba

79399266

Date: 2025-01-30 08:51:41
Score: 0.5
Natty:
Report link

For me not even restarting did the trick, so I had to delete the caches.

rm -rf ~/.gradle/caches/
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Mateo Guzmán

79399265

Date: 2025-01-30 08:50:41
Score: 0.5
Natty:
Report link

Putting the directory name in quotes worked for me

don't do this:

cd Ari Tech

do this:

cd "Ari Tech"
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: zhyako xalid

79399257

Date: 2025-01-30 08:46:40
Score: 2
Natty:
Report link

In my case, I am using firestore from GCP and changed the Json file for the service account to that of the default user of firestore and this error was resolved. The content of the error does not seem to be particularly relevant; it takes time in GCP as it often has nothing to do with the content of the error.

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

79399251

Date: 2025-01-30 08:43:39
Score: 1
Natty:
Report link

Try adding a stopPropagation:

onClick={(e) => {
    e.stopPropagation();
    handleClick();
}}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: DhruvK

79399248

Date: 2025-01-30 08:42:39
Score: 0.5
Natty:
Report link

I found the Solution with the Wasabi support and the fault is the newer AWSPowershell.NetCore --> Derzeit unterstützt der Wasabi Endpoint nur Version: AWSPowerShell.NetCore 4.1.736. Wasabi sucht derzeit auch nach einer Lösung für die Behebung.

Reasons:
  • Whitelisted phrase (-2): I found the Solution
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: insil

79399245

Date: 2025-01-30 08:41:39
Score: 2.5
Natty:
Report link

In android go to app -> main -> res -> values -> styles.xml and leave it like this:

Add this line

<item name="android:windowIsTranslucent">true</item>

Full Codeenter image description here

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

79399238

Date: 2025-01-30 08:39:38
Score: 1.5
Natty:
Report link

I want to share my silly mistake, just in case anyone stumbles.. I had a python app virtualenv in one folder, and I copied to a different folder and started making changes and executing code. But somehow venv was still picking up the files from old location.



Reasons:
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
Posted by: deathrace

79399236

Date: 2025-01-30 08:39:38
Score: 1.5
Natty:
Report link

You don't necessarily need to install the self hosted integration runtime application on the same server hosting your databases. It can be done on a different machine as long as that machine can connect to both your on-premise SQL server and the data factory service.

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

79399222

Date: 2025-01-30 08:34:37
Score: 1.5
Natty:
Report link
SELECT DISTINCT CITY 
 FROM STATION 
 WHERE CITY LIKE '%A' 
 OR CITY LIKE '%E' 
 OR CITY LIKE '%I' 
 OR CITY LIKE '%O' 
 OR CITY LIKE '%U'
ORDER BY CITY;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: premod suraweera

79399219

Date: 2025-01-30 08:32:37
Score: 3.5
Natty:
Report link

please add sikulix jar from https://launchpad.net/sikuli/sikulix/2.0.5/+download/sikulixide-2.0.5.jar into jmeter/lib folder, restart jmeter as admin.

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

79399215

Date: 2025-01-30 08:30:36
Score: 3
Natty:
Report link

You need to download Ollama from their official website first: https://ollama.com/

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

79399200

Date: 2025-01-30 08:16:32
Score: 8.5
Natty: 9.5
Report link

What if my ids are in the string format; eg."DE012945758_aer5gf" like this? Is there any solution for this type of ids or I must have integer ids to create edges between two nodes.

Note: As mentioned here I also could able to create the nodes with the 'false' argument to avoid the ids. but I must to have ids in my edges file??

Please let me know the possible solution, thank you:)

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (2.5): Please let me know
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): What if
  • Low reputation (1):
Posted by: Ashish

79399195

Date: 2025-01-30 08:14:32
Score: 1
Natty:
Report link

I guess OP has figured out a solution by now, considering this post is like 10 years old. But for anyone who bumps into this like me:

You need to setup an outbound rule I believe by the following steps:

  1. Open IIS Manager
  2. Select your Website
  3. Open URL Rewrite module
  4. Add a new outbound rule
  5. Select the necessary options, but most importantly, set the pattern to something like ^/(.*) which accepts any string after /
  6. Set the action type as Rewrite
  7. Set the Action Properties-> Value like https:///training/{R:1}

Apply and test. This should rewrite the responses with the /training to navigate your intended page.

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

79399191

Date: 2025-01-30 08:13:32
Score: 0.5
Natty:
Report link

What I did is managed fvm to my required flutter version. In my case, i require flutter version 3.0.1

then, run:

fvm flutter build ios --release --no-codesign --no-sound-null-safety

then from xcode, directy created archive for release testing, and downloaded in my device for testing.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What I
Posted by: Zeeshan Ayaz

79399190

Date: 2025-01-30 08:13:32
Score: 1
Natty:
Report link

In yet another case, I had to delete the database in RDS first and also replication server and endpoints in DMS. Only after that, i was able to delete the subnets and VPC as they kept on referring to Network Interfaces which were in use. Earlier, i wasn't able to detach or delete neither network interfaces nor internet gateway. They got delete on their own when I deleted the resources+subnets+VPC. Bottomline: Delete the actual resources which may be associated with VPC/subnets/network interfaces/internet gateway first. Otherwise even force delete command won't likely work.

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

79399185

Date: 2025-01-30 08:11:31
Score: 0.5
Natty:
Report link

This can also be done with recursive descent operator:

(..|strings) |= fromjson? //.

But it will also transform strings like "123" to numbers. To to preserve numeric strings use this one:

(..|strings|tonumber? //.|strings) |= fromjson? //.
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: JanB

79399181

Date: 2025-01-30 08:08:30
Score: 2.5
Natty:
Report link

In android go to app -> main -> res -> values -> styles.xml and leave it like this:

Add this line

**<item name="android:windowIsTranslucent">true</item>**

Full Code

<?xml version="1.0" encoding="utf-8"?>
@drawable/launch_background true ?android:colorBackground
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Mahabub Alam Shawon

79399180

Date: 2025-01-30 08:08:30
Score: 2
Natty:
Report link

By using Microsoft Visual Studio Community 2022 Version 17.12.4 I was able to find these dependencies by using search at the top of the solution explorer, but make sure you selected "Search within external items" by expanding the search dropdown options from the right side of the text search input, like it is shown in the screenshot.

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

79399162

Date: 2025-01-30 07:59:28
Score: 2
Natty:
Report link

This solved the problem for me.

Important additional information: Click the "input box" ("Search") to see the Filter "Extra" and activate it. Clicking on the activated "Apps"-Filter won't show it.

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

79399160

Date: 2025-01-30 07:58:28
Score: 1
Natty:
Report link

No, you did not echo the entire %1. As I can see, =Dq3V-KdKslU is stripped.

The issue is the character =. To avoid stripping, you can enter this argument in quotation marks:

> mp3.bat "https://www.youtube.com/watch?v=Dq3V-KdKslU"

Then the entire argument string will be passed. In your echo, you will see

Argument 1: https://www.youtube.com/watch?v=Dq3V-KdKslU

This value will be correctly passed to yt-dlp and elsewhere.

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sergey A Kryukov

79399149

Date: 2025-01-30 07:54:26
Score: 1.5
Natty:
Report link

I tried all options and nothing worked and then I installed Reqnroll extension for Visual Studio 2022 and disabled Specflow extension and it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Kahn

79399142

Date: 2025-01-30 07:51:26
Score: 0.5
Natty:
Report link

Intent scanIntent = new Intent(Scanner.ACTION_SEND_BARCODE); scanIntent.putExtra("End Char", ""); sendBroadcast(scanIntent); IntentFilter filter = new IntentFilter("com.android.server.scannerservice.broadcast"); registerReceiver(new ScanReceiver(this), filter, Context.RECEIVER_NOT_EXPORTED); but I dont know the exact keys that I should put in Intent for the Seuic device

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

79399135

Date: 2025-01-30 07:47:25
Score: 3
Natty:
Report link

Problem was solved by upgrading gradle to 8.12 and removing bypass from chromeoptions that was added some time ago due to problem with headless test running: chromeOptions.addArguments("--headless=old");

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

79399131

Date: 2025-01-30 07:44:24
Score: 1.5
Natty:
Report link

There is another way to sort the names of week days:

In the source table, add a new column by extracting the number of weekday from your date column. Then add another new column by extracting the name of the weekday from the same date column. Then sort the column with names by selecting the column and going the Modeling tab and selected column with day numbers from the Sort by Column.

The advice is originally taken from here: Order day names in a line chart in power Bi

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

79399115

Date: 2025-01-30 07:36:22
Score: 0.5
Natty:
Report link

The pywrapgraph is deprecated and has been removed from recent versions of OR-Tools.
Now to import the new modules you have to use

from ortools.graph.python import min_cost_flow
from ortools.graph.python import max_flow
from ortools.graph.python import linear_sum_assignment
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Lewis

79399097

Date: 2025-01-30 07:26:19
Score: 7 🚩
Natty: 5.5
Report link

Is there a way to make this execute faster?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is there a
  • Low reputation (1):
Posted by: Jon Langshaw

79399092

Date: 2025-01-30 07:24:19
Score: 1.5
Natty:
Report link

Okay so the above answer by @Luk En helps . I wanted to add that I was facing the same issue while trying to use the SFDX Git Delta plugin inside AWS Code Build , and Code Pipeline . I used the same fix , to CLONE FULL DEPTH in the source stage at both pipeline and build job level .

(P.S. The option at Build Job level is a bit difficult to find. Its there under Source > Additional Options > Depth . Set it to full!!)

It worked ! :)

Reasons:
  • Whitelisted phrase (-1): It worked
  • No code block (0.5):
  • User mentioned (1): @Luk
  • Low reputation (1):
Posted by: Parjanya Roy