79078022

Date: 2024-10-11 11:34:04
Score: 2
Natty:
Report link

I would argue that you shouldn't try that at all. If you are going for FIPS 140 compliance then all production deployment must be compliant. This means you can't use third party library which is importing not certified version of Bouncy Castle. Whatever technical answers above are just invalid in the bigger picture.

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

79078015

Date: 2024-10-11 11:31:03
Score: 1.5
Natty:
Report link

I know this is an old post but I thought I'd respond.

You can integrate to (inbound) TWS using REST API's, the MDM has a built in REST Server which you can test using it's swagger UI on hostname:port/twsd (default port is 31116) to kick off job/jobstreams or just query information.

Integration from (outbound) TWS is done using the REST API job type. I assume Jemtkins has it's own RESTful service.

I'm sure you've sorted this already but wanted to answer anyway.

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

79078014

Date: 2024-10-11 11:31:03
Score: 1.5
Natty:
Report link

You can run @aws preferences in a slack channel to set your preferences for posting in this channel. This includes choosing between

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

79078013

Date: 2024-10-11 11:31:03
Score: 0.5
Natty:
Report link

Deciding which loop to use for which use-case is a important task. My general rule-of-thumb (and the one I got taught in school) is as follows

For-Loops: When you know in advance how many times you want to iterate.

While-Loops: When the number of iterations is not known in advance and depends on a condition being true. It checks the condition before each iteration.

Do-While-Loops: Similar to the while loop, but it guarantees that the loop body is executed at least once because the condition is checked after the loop's execution.

For your case since you have a defined and small range of numbers I would suggest the foor-loop I rarely ever use the do-while-loops but they do for sure have an advantage since you save at least one condition-check. the classic while loop i usually only use for user input to exit the cycle. (In Controllers as example i use a while(true) to simulate a repetetive task which needs Userconfirmation

Now that we have decided what loop to use lets take a glance on whats next:

  int num, evenSum = 0, evenCount = 0, oddProduct = 1;
float average;

those are variables I created. Just for clarification for the following code

for (int i = 0; i < 10; i++) {
    printf("Enter integer %d: ", i + 1);
    scanf("%d", &num);

    if (num % 2 == 0) { // Check if the number is even
        evenSum += num; // Add to sum of even numbers
        evenCount++; // Increment the count of even numbers
    } else { // The number is odd
        oddProduct *= num; // Multiply odd numbers
    }

What I did here is hopefully explained enough by my comments

Keep in mind I did calculate the even numbers. Why? To prepare for the following code

    // Calculate the average of even numbers
if (evenCount > 0) {
    average = (float)evenSum / evenCount;
    printf("Average of even numbers: %.2f\n", average);
} else {
    printf("No even numbers were entered.\n");
}

// Print the product of odd numbers
if (oddProduct != 1) {
    printf("Product of odd numbers: %d\n", oddProduct);
} else {
    printf("No odd numbers were entered.\n");
}

return 0;

What I did here is using the float variable declared earlier and make an simple average calculation.

This should do the trick and solve your task and also clear when to use which Loops

Reasons:
  • Blacklisted phrase (0.5): Why?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user27314112

79078009

Date: 2024-10-11 11:30:03
Score: 1.5
Natty:
Report link

managed it

param named controller causes issues

interferes with api naming convention, no issues for swagger though

changed to controllerId and all works

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

79078007

Date: 2024-10-11 11:30:03
Score: 0.5
Natty:
Report link

Collision detection is a fundamental aspect of game development, ensuring that objects within the game world interact in a realistic manner. It involves detecting when two or more objects occupy the same space or come into contact, allowing developers to trigger specific events such as damage, point scoring, or boundary limits. Various techniques, such as bounding boxes, raycasting, and pixel-perfect collision, are used depending on the game's complexity and performance requirements.

WorkLooper, a leading name in digital solutions, also excels in game development. By integrating robust collision detection systems into their game design process, WorkLooper ensures smooth and immersive gameplay. Their team focuses on precision and efficiency, utilizing advanced tools to handle complex collision scenarios while optimizing game performance. This attention to detail not only enhances the player's experience but also ensures that the game's mechanics function seamlessly, creating a well-rounded and engaging product.

Contact details

Phone no = +91 9891869911

Website = https://www.worklooper.com/

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

79078001

Date: 2024-10-11 11:28:02
Score: 3
Natty:
Report link

Log out the onCancelled(..) event handler. Maybe you get an error with any message

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

79077988

Date: 2024-10-11 11:23:01
Score: 2
Natty:
Report link

The problem simply is that I'm using the pop() method to get the last item of folder, inside my splitInColumns, so I get exactly half of the items, because the useEffect reruns every time I do this (I guess).

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

79077968

Date: 2024-10-11 11:17:59
Score: 0.5
Natty:
Report link
//You can try this :
const resultArr = array1.flatMap(x => array2
.filter(y=>y[0] === x[2])
.map(y => [...y,...x])
);
Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Aman Thakur

79077960

Date: 2024-10-11 11:15:59
Score: 1
Natty:
Report link

If I understood the question correctly, you are looking for, is to reduce redundant code, and Keep a method close to changes, yet open to extensions

There is a SOLID principle that is focused just around that, its called The Open Closed Principle (The "O" in SOLID) and it is a principle that helps us solving exactly these use-cases.

One way to solve it would be to use something like a dictionary, iterate through every DbContext in your instance and only add new contexts to that db, However it doesn't sound like the most elegant solution.

I'd recommend diving into OCP and checking out what solutions it offers, as this is more of a problematic design choice, which can be solved really, in many different ways.

I would highly recommend learning SOLID better if you are not familiar enough with it.

Good luck! :)

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

79077942

Date: 2024-10-11 11:12:57
Score: 7.5 🚩
Natty:
Report link

I have a similar problem. I tried to solve it, but I didn't have much success. I'm going to paste my code here to see if you can help me.

tempo_1 <- as.character(Sankey$Tempo_1)
Sankey$Tempo_1 <- factor(Sankey$Tempo_1, levels = tempo_1, labels = tempo_1)
tempo_2 <- as.character(Sankey$Tempo_2)
Sankey$Tempo_2 <- factor(Sankey$Tempo_2, levels = tempo_2, labels = tempo_2)

ggplot(Sankey, aes(axis1 = Tempo_1, axis2 = Tempo_2, y = Valor)) +
  geom_alluvium(aes(fill = Tempo_1)) +
  geom_stratum(aes(fill = NULL), color = NA) +
  geom_text(stat = "stratum", aes(label = after_stat(stratum))) +
  theme_minimal() +
  theme(panel.border = element_blank(), legend.position = "none")
  labs(title = "Important Cytokines in time")

The Graph

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I have a similar problem
  • RegEx Blacklisted phrase (3): you can help me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have a similar problem
  • Low reputation (1):
Posted by: Rômulo Galvani

79077935

Date: 2024-10-11 11:09:57
Score: 3.5
Natty:
Report link

For android studio on windows you can do as shown:

enter image description here

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

79077933

Date: 2024-10-11 11:09:57
Score: 1.5
Natty:
Report link

I believe you can try to add

body{overflow:hidden;}

at your style.css , depending on

a scrollbar is revealing.

that you said.

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

79077928

Date: 2024-10-11 11:07:56
Score: 0.5
Natty:
Report link

Step into the debugger:

$mail->SMTPDebug = 2; // Set to 2 to see detailed debugging output
$mail->Debugoutput = 'html'; // Change this to 'error_log' to send output to the server's error log

Hopefully the output gives further clarifications.

Another guess would be that your website has reached some monthly quota of google services.

Also check your server logs for any weird occurrences.

Enabling TLS encryption, like @life888888 pointed out, is something that depends on the implementation. If you insist on using SMTP, you have to enable TLS. This post goes into further details. Here is @life888888's advice. I repeat it here for better visibility:

$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS;

If nothing helps, contact the google support.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @life888888
  • User mentioned (0): @life888888's
  • Low reputation (0.5):
Posted by: schmark

79077922

Date: 2024-10-11 11:05:56
Score: 0.5
Natty:
Report link

Sorry not exactly an answer but maybe just use a second database only for testing? (DBNameDEV and DBNamePROD)

In c# you can use #if debug:... for loading different configurations depending if youre in debug or actually running the program. Maybe in python if debug:... would be the equivalent or something similar

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Innoriam

79077908

Date: 2024-10-11 11:02:55
Score: 1
Natty:
Report link

You can try using vibration pattern instead of single duration like

navigator.vibrate([500, 100, 500]); // Vibrate for 500ms, pause for 100ms, then vibrate for 500ms

If navigator.vibrate(0) doesn’t stop the vibration, you can try using navigator.vibrate([]) or navigator.vibrate([0]) as a workaround.

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

79077901

Date: 2024-10-11 10:58:55
Score: 2.5
Natty:
Report link

When it comes to programming, the difference between using a property and a function can be crucial for performance and usability. But in the world of transportation, it’s all about efficiency and ease of use—just like our services at American Town Car.

In programming, properties give you direct access to data, making things quick and straightforward. Similarly, when you choose our PDX Town Car Service, you're choosing immediate access to comfort, reliability, and luxury. It’s a seamless experience—no hassle, just like accessing a property in code.

On the other hand, functions involve some processing or calculation before they give you the result. In transportation, that might be like calling multiple services, checking availability, and waiting for quotes. With American Town Car, there’s no need for extra steps or complex processes. We offer instant online booking, direct communication, and a luxury experience right at your fingertips.

So, why go through the complexities when you can have the ease and efficiency of working directly with a trusted partner? Book your ride with American Town Car today for a property-like experience—smooth, reliable, and always there when you need it.

https://www.americantowncar.net/services/hourly-travel

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): When it
  • Low reputation (1):
Posted by: americantown car

79077889

Date: 2024-10-11 10:55:54
Score: 2
Natty:
Report link

Obfuscating the code stay a good option, you can take a look at : https://github.com/javascript-obfuscator/javascript-obfuscator

In the Electron world, it is possible to add a step during build that consist in doing obfuscation. Note that, it may increase the size of the final installer/executable.

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

79077885

Date: 2024-10-11 10:54:53
Score: 1
Natty:
Report link

You want to prevent Slicer 2 and Slicer 3 from filtering out options in Slicer 1. Instead, you want Slicer 1 to always display both "program" and "non-program" options. To do this:

Go to "Edit Interactions", click on any of your visuals (e.g., your slicers). You'll see an "Edit Interactions" option under the "Format" tab in the ribbon.

Select Slicer 2 and Slicer 3 one by one, and ensure that they do not cross-filter Slicer 1. You can do this by selecting the "None" interaction for Slicer 1 when editing slicer interactions. You can add further to it by making a flag type measure to indicate whether a value should be greyed out in slicer 1 and then add it as a conditional formatting for the slicer one. It will grey out the option which is not applicable or has been filtered out in a particular situation.

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

79077880

Date: 2024-10-11 10:52:53
Score: 2
Natty:
Report link

The main difference is:

Property: Represents a value or state. It is accessed like a variable (e.g., object.property). It is used to store data.

Function: Represents behavior or actions. It is invoked with parentheses (e.g., object.function()). It is used to perform operations or calculations.

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

79077879

Date: 2024-10-11 10:52:53
Score: 1
Natty:
Report link

You can also set this setting with the following command:

(set! *print-namespace-maps* false)

and it will be set at least for the duration of the REPL session.

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

79077870

Date: 2024-10-11 10:51:52
Score: 0.5
Natty:
Report link

Determining whether two elements are equal is fairly simple.

Two DataType-typed values are equal when they have a deep value correspondence (deep is needed for OCL Collection types - UML is vague on reified multiplicity values).

Two Class-typed values are equal when they are exactly the same object (have the same address in typical implementations).

Reasons:
  • No code block (0.5):
Posted by: Ed Willink

79077865

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

If the stroke-color is defined in "path" element inside "svg" element, then it can't be overriden.

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

79077863

Date: 2024-10-11 10:49:52
Score: 1
Natty:
Report link

I faced with the same error, but I had a different problem.

In my case, the issue was that while the MAAS Jammy cloud image was configured correctly, the package repository's source didn't have the corresponding Jammy packages. It might be helpful to check the logs in the

/var/log/maas

folder for any clues about what went wrong.

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

79077861

Date: 2024-10-11 10:48:52
Score: 0.5
Natty:
Report link

On windows machine, adding .bat worked for me.

String cmd = "allure.bat generate allure-results -o E:\project\target\reports\loginReport --clean"; Process process = Runtime.getRuntime().exec(cmd); process.waitFor()

Be sure to have specified the bin directory of allure in your PATH sys env variables (where the .bat file is located). You can locate it typing in cmd: "where allure.bat"

For me path was C:\Program Files\allure-2.30.0\bin

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

79077858

Date: 2024-10-11 10:47:51
Score: 5.5
Natty: 5.5
Report link

thank you for this informations, what is the principle of the cubic interpolation method used by RegularGridInterpolator? the cubic spline method defined by chunks, how are the chunks and polynomials chosen? Thanks

Asmae

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

79077857

Date: 2024-10-11 10:47:51
Score: 1
Natty:
Report link

The numbers you currently have in the config are really low. Yes - you should do the change you described. Looks like your processes each use about 35MB, so you have plenty of RAM left

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

79077849

Date: 2024-10-11 10:44:50
Score: 1
Natty:
Report link

I was having the same issue .. By changing the scope to whatever solutions are given here didn't help me.. The solution I found that worked for me was to replace the profile url ...

https://api.linkedin.com/v2/me

Replace the above profileURL With:

https://api.linkedin.com/v2/userinfo

You will be able to get the userdata from this. Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): help me
  • Whitelisted phrase (-1): worked for me
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: VISHWAJEET SINGH

79077847

Date: 2024-10-11 10:44:50
Score: 1
Natty:
Report link

i have a more or less similar use case, I have built a Custom jdbc kafka jar using prebuilt app, jdbc-source-kafka.

I was using as a jar and and metadata jar separately, whenever i am registering app with these two uri and metadata uri.

i can see the configurable properties whole creating a stream app in UI.

but, i have converted this jar's into docker form including metadata jar which has the meta-inf folder. that option of application of property no more visible. any idea on this.

how to provide meta data URI access to my docker image in SCDF

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

79077835

Date: 2024-10-11 10:40:49
Score: 2.5
Natty:
Report link

For this: https://stackoverflow.com/a/40475070/15197907

sf stands for "show free" and setting it to true means the event should be shown as a free event (ie. won't be classified as a busy event in your calendar)

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Chioma Audrey

79077819

Date: 2024-10-11 10:32:47
Score: 4
Natty: 4.5
Report link

I am having the same issue with Ubuntu 22.04 and and squid 19.2.0. I didn't have this issue in reef.

any hints? could it be related to the same? I don't have any Mongo entry, this command does nothing:

root@ceph03:/etc/ceph# grep -E '.*\s+\.*\s+.*' /sys/kernel/security/apparmor/profiles
root@ceph03:/etc/ceph# apparmor_parser -R /etc/apparmor.d/MongoDB_Compass
File /etc/apparmor.d/MongoDB_Compass not found, skipping...
root@ceph03:/etc/ceph# 

The following command does the same thing: "cephadm ceph-volume inventory"

However, if I execute cephadm shell and then inside of it I execute ceph-volume inventory I get a proper inventory. But Still I cannot add the OSD by any means. Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I am having the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Luis Alfonso Rodrguez Aragons

79077816

Date: 2024-10-11 10:32:47
Score: 1
Natty:
Report link

I would suggest to move all of your functionalities to a shortcode in your functions.php and then add the shortcode to your wp-bakery page of your desire with eg. [hello_world_shortcode]

Essentialy you need to place [hello_world_shortcode] into a text block in a row in wp-bakery to view your content.

And in your functions.php

function hello_world_shortcode() {
   echo "Hello World!"
}
add_shortcode('hello_world_shortcode', 'hello_world_shortcode');

You can copy the name of your function at both of add_shortcodes parameters , and with that naming you can call them in your wp-bakery enviroment.

I think its easier to do it like this and let the wp-bakery handle the columns etc, you can alter the columns on your own anyway.

Hope my answer helped. Cheers

Reasons:
  • Blacklisted phrase (1): Cheers
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: cstudio

79077813

Date: 2024-10-11 10:31:47
Score: 0.5
Natty:
Report link

Based on your output, it seems the conversion functions are working as intended. The timestamp 1728597600000 corresponds to October 10th, 2024, in UTC. When converted to the Europe/Berlin time zone, it correctly becomes October 11th, 2024, due to the time difference.

You can check below mentioned point :

Daylight Saving Time:

Ensure that your logic accounts for daylight saving time, which seems correct given your output. Berlin is UTC+2 during daylight saving time.

DatePicker Initialization:

Verify that the DatePicker correctly interprets the initial timestamp. The timestamp should correspond to the local start of the day (midnight) on October 11th.

Conversion and Display:

Ensure that the conversion from timestamp to LocalDate and back to timestamp doesn’t introduce any off-by-one errors. Your current functions appear correct, but double-check that DatePicker uses the correct initialSelectedDateMillis.

Check DatePicker Logic:

Review the CustomDatePickerDialog implementation to ensure it initializes and updates correctly. Make sure it correctly interprets the timestamp in the local time zone.

println("Initial LocalDate: ${selectedDate.value}") // Should print 2024-10-11 println("Initial Timestamp: ${initialTimestamp}") // Should be 1728597600000 println("Selected Timestamp: ${datePickerState.selectedDateMillis}") // Check this value println("Converted LocalDate: ${convertTimestampToLocalDate(datePickerState.selectedDateMillis!!)}") // Should print 2024-10-11

Also ensure that selectedDateMillis is not null before using it in convertTimestampToLocalDate.

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

79077808

Date: 2024-10-11 10:30:46
Score: 3
Natty:
Report link

Thanks Sil, very usefull !

Can you give us more detail to how you find the number to put on the children() please ? And where to find the local browser you talk about ?

I would like to do the same for the bottom table to enter the information on this part : Screenshot of : Imputation menu

end also for the texts : Screenshot of : Text menu

When I record my script I have these :

session.findById("wnd[0]/usr/subSUB0:SAPLMEGUI:0019/subSUB3:SAPLMEVIEWS:1100/subSUB2:SAPLMEVIEWS:1200/subSUB1:SAPLMEGUI:1301/subSUB2:SAPLMEGUI:3303/tabsREQ_ITEM_DETAIL/tabpTABREQDT6/ssubTABSTRIPCONTROL1SUB:SAPLMEVIEWS:1101/subSUB2:SAPLMEACCTVI:0100/subSUB1:SAPLMEACCTVI:1100/ctxtMEACCT1100-SAKTO").Text = "test"
    session.findById("wnd[0]/usr/subSUB0:SAPLMEGUI:0019/subSUB3:SAPLMEVIEWS:1100/subSUB2:SAPLMEVIEWS:1200/subSUB1:SAPLMEGUI:1301/subSUB2:SAPLMEGUI:3303/tabsREQ_ITEM_DETAIL/tabpTABREQDT6/ssubTABSTRIPCONTROL1SUB:SAPLMEVIEWS:1101/subSUB2:SAPLMEACCTVI:0100/subSUB1:SAPLMEACCTVI:1100/subKONTBLOCK:SAPLKACB:1101/ctxtCOBL-KOSTL").Text = "test"
    session.findById("wnd[0]/usr/subSUB0:SAPLMEGUI:0019/subSUB3:SAPLMEVIEWS:1100/subSUB2:SAPLMEVIEWS:1200/subSUB1:SAPLMEGUI:1301/subSUB2:SAPLMEGUI:3303/tabsREQ_ITEM_DETAIL/tabpTABREQDT6/ssubTABSTRIPCONTROL1SUB:SAPLMEVIEWS:1101/subSUB2:SAPLMEACCTVI:0100/subSUB1:SAPLMEACCTVI:1100/txtMEACCT1100-ABLAD").Text = "test"
    session.findById("wnd[0]/usr/subSUB0:SAPLMEGUI:0019/subSUB3:SAPLMEVIEWS:1100/subSUB2:SAPLMEVIEWS:1200/subSUB1:SAPLMEGUI:1301/subSUB2:SAPLMEGUI:3303/tabsREQ_ITEM_DETAIL/tabpTABREQDT6/ssubTABSTRIPCONTROL1SUB:SAPLMEVIEWS:1101/subSUB2:SAPLMEACCTVI:0100/subSUB1:SAPLMEACCTVI:1100/txtMEACCT1100-WEMPF").Text = "test"

It works on my computer but not for my team.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Can you give us
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Alexis DOMELAND

79077802

Date: 2024-10-11 10:28:46
Score: 1.5
Natty:
Report link

I accept @sirtao's answer.

Meanwhile I was working on .Net in powershell to do this properly

$aoo = New-Object System.Collections.Hashtable[] $idRange.Count
foreach ($i in $idRange) {
    $i = $aoo.IndexOf($uid)
    $aoo[$i] = New-Object System.Collections.Hashtable
}

this way I can add/set/update properties like this for case in my question

foreach ($id in $idRange) {
    $i = $idRange.IndexOf($id)
    $aoo[$i]['id'] = $id
}

or add/set/update just one parameter (for what I need)

$aoo[2]['x'] = 7
Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @sirtao's
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: mitjajez

79077777

Date: 2024-10-11 10:20:44
Score: 2.5
Natty:
Report link

Probably you have a file in your build directory which was created by previous docker container runs (through mounted volumes). Erase those files before rebuilding the image.

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

79077766

Date: 2024-10-11 10:15:43
Score: 2.5
Natty:
Report link

To remove a point in a chart.js graph just set its value to NULL. I just discovered this by trial and error, I could not find this very basic info by Googling.

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

79077760

Date: 2024-10-11 10:13:42
Score: 9.5 🚩
Natty:
Report link

can you share your code please?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you share your code
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can you share you
  • Low reputation (1):
Posted by: kabir

79077756

Date: 2024-10-11 10:11:41
Score: 1
Natty:
Report link

You can also write with this workaround using isNULL(...) function:

SELECT e.equip_id, m.freq FROM equip e
INNER JOIN maint_equip me ON isNULL(me.mfg_id,-1) = isNULL(e.mfg_id,-1) and ...
INNER JOIN maint m ON m.maint_id = me.main_id;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tony Macrez

79077755

Date: 2024-10-11 10:11:41
Score: 2
Natty:
Report link

It's common to see higher latency on the first gRPC call in Java. This is often due to the initial connection handshake and channel setup between the client and server. Having said that I would suggest before making the actual gRPC calls, you can "warm up" the JVM by making a few dummy calls or running some initialization code. This can trigger JIT compilation and reduce latency on the first real call.

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

79077740

Date: 2024-10-11 10:08:40
Score: 10
Natty: 8
Report link

Can someone help me with this problem enter image description here

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (3): Can someone help me
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Starts with a question (0.5): Can someone help me with this
  • Low reputation (1):
Posted by: Zaldy Rafanan

79077738

Date: 2024-10-11 10:07:39
Score: 2
Natty:
Report link

When having two context calls in the same async method : Like Hamid Nasirloo already answered, many times it can be as simple as a forgotten await keyword before the call to the context. I my case I had in one async method two calls to the context, one with an await statement and the other call without. Because the first await call, the compiler doesn't complain about a forgotten await keyword and therefore it can be easily overseen.

Reasons:
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Christian Vos

79077725

Date: 2024-10-11 10:04:38
Score: 2
Natty:
Report link

You can use Trading Router to connect Tradingview signals to MT4

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

79077713

Date: 2024-10-11 10:01:37
Score: 1
Natty:
Report link

if you're using Python, you can try multiprocessing.Pool to send concurrent requests to your Ollama, but don't forget to set the environment variables related to the concurrency config of your Ollama service in advance(OLLAMA_NUM_PARALLEL,OLLAMA_MAX_QUEUE).

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

79077710

Date: 2024-10-11 10:00:37
Score: 5
Natty:
Report link

If anyone having the same issue, just wait. Sometimes, It actually takes a long time for the demo project to be removed from your cloud console after you exit the demo from firebase.

In my case it took almost more than 24 hours.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Neer

79077701

Date: 2024-10-11 09:58:36
Score: 3.5
Natty:
Report link

Use the "overflow-y: scroll;" for .inner-right and .inner-left

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

79077700

Date: 2024-10-11 09:57:36
Score: 8
Natty: 7.5
Report link

that's the problem I'm wrestling with now - finding out which my website's pages users saw before returning to my website another day. Could you please explain a bit more as to how you set up your report (report type, dimensions, metrics, segment)? Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2.5): Could you please explain
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: VBer

79077687

Date: 2024-10-11 09:52:34
Score: 0.5
Natty:
Report link

An OMR-based software for .NET applications allows developers to integrate Optical Mark Recognition functionality directly into .NET frameworks. Such software helps read, process, and analyze OMR sheets (like exams, surveys, and feedback forms) within custom applications built using the .NET platform.

Key features of OMR-based software for .NET include:

Integration with .NET Framework: Easily embed OMR reading and data processing into existing .NET applications. Customizable OMR Templates: Supports designing and scanning custom OMR sheets within the application. High Accuracy: Provides precise recognition of marked bubbles, checkboxes, or other forms of response, ensuring reliable data collection. Support for Various Marking Schemes: Handles multiple types of markings (bubbles, ticks, etc.) and formats. Automated Reporting: Generates reports and outputs data in formats like Excel, CSV, or PDF for further analysis. Yomark or similar OMR tools could offer integration capabilities through APIs or SDKs compatible with .NET, allowing seamless automation of OMR tasks within your own software.

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

79077685

Date: 2024-10-11 09:52:34
Score: 2
Natty:
Report link

MustVerifyEmail is indeed an interface. However, there is a trait with the same name, here is the link to the interface and here is the trait, Laravel cannot change the behavior of the language, the class still has to implement the required methods which in this case can be solved just by using the trait.

Reasons:
  • Blacklisted phrase (1): here is the link
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Mohammad si abbou

79077684

Date: 2024-10-11 09:52:34
Score: 0.5
Natty:
Report link

I think your best solution (especially if you need to do this more often) is to make use of metadata injection based on infrastructure files of the database. For example load a list of tables and fields per table in pentaho, and feed this in a metadata injection process where you have a table read and write function. In between, (or even in the read SQL) you can push a encryption step which encrypts the data if the field is present in a certain list (or even better store the list in a database).

This way you just have to write the metadata injection once, and fill the "to be scrambled" list once. and then you can run the process on the whole database at once, and asa often as you want.

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

79077672

Date: 2024-10-11 09:48:34
Score: 3
Natty:
Report link

Is there any way to instruct the model binder to recreate the Currency object when a different option item is selected on the client?

You can add hidden fields in the form to pass the properties of Currency like:

        <select id="currencySelect" class="form-select" asp-for="MyModel.Currency" onchange="updateCurrencyFields()">
            @foreach (var currency in Model.AllCurrencies)
            {
                if (currency.Code == Model.MyModel.Currency.Code)
                {
                    <option value="??????" data-numericcode="@currency.NumericCode"
                            data-code="@currency.Code" data-name="@currency.Name" selected="">
                        @currency.Name
                    </option>
                }
                else
                {
                    <option value="??????" data-numericcode="@currency.NumericCode"
                            data-code="@currency.Code" data-name="@currency.Name">
                        @currency.Name
                    </option>
                }
            }
        </select>
        <input type="hidden" asp-for="MyModel.Currency.NumericCode" id="NumericCode" />
        <input type="hidden" asp-for="MyModel.Currency.Code" id="Code"/>
        <input type="hidden" asp-for="MyModel.Currency.Name" id="Name"/>
    </div>
    <button type="submit">Submit</button>
</form>

<script>
    function updateCurrencyFields() {
        var select = document.getElementById("currencySelect");

        var numericcode = select.options[select.selectedIndex].getAttribute("data-numericcode");
        var code = select.options[select.selectedIndex].getAttribute("data-code");
        var name = select.options[select.selectedIndex].getAttribute("data-name");

        document.getElementById("NumericCode").value = numericcode;
        document.getElementById("Code").value = code;
        document.getElementById("Name").value = name;
    }
</script>

And code in the MyCurrencyPageModel like:

public class MyCurrencyPageModel : PageModel
{
    private readonly ApplicationDbContext _context;
    public MyCurrencyPageModel(ApplicationDbContext context)
    {
        _context = context;
    }

    [BindProperty]
    public MyModel MyModel { get; set; }

    public IEnumerable<Currency> AllCurrencies { get; set; }

    public void OnGet()
    {
        AllCurrencies = _context.Currencies.ToList();
        MyModel = new MyModel(Guid.NewGuid(), "Example Program", "Description", AllCurrencies.First());
    }

    public IActionResult OnPost()
    {
        if (!ModelState.IsValid)
        {
            return Page();
        }

        MyModel.Id = Guid.NewGuid(); 

        var item = _context.Currencies.Where(v=>v.Code ==MyModel.Currency.Code).FirstOrDefault();
        MyModel.Currency = item;

        _context.MyModels.Add(MyModel);
        _context.SaveChanges();

        return RedirectToPage("Index");
    }
}

With the test result:

Img1

Img2

Img3

Reasons:
  • Blacklisted phrase (1): ???
  • Blacklisted phrase (1): Is there any
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (0.5):
Posted by: Yumiao Kong

79077663

Date: 2024-10-11 09:46:33
Score: 2.5
Natty:
Report link

i see that you are using a template , you can ask directly the developers of the template in a Q&A / Forum or directly message them about your problem , i refrain from giving you any straight answer to the problem because most templates aren't friendly to alterations in their functionality.

Hope my answer helped. Cheers

Reasons:
  • Blacklisted phrase (1): Cheers
  • No code block (0.5):
  • Low reputation (1):
Posted by: cstudio

79077656

Date: 2024-10-11 09:45:33
Score: 1
Natty:
Report link

After a test, with parameter --ignore-formatted, the script bin/kafka-storage.sh format new directories and keep the existing data.

bin/kafka-storage.sh format -t $KAFKA_CLUSTER_ID -c config/kraft/server.properties --ignore-formatted

All parameters can be found in the StorageTool source code

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

79077648

Date: 2024-10-11 09:43:32
Score: 3
Natty:
Report link

Answer proivided by Hubert and PieroP is correct. I just disabled firewall and BAM! Everything works fine ;) No need to reinstall system etc.

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

79077647

Date: 2024-10-11 09:43:32
Score: 3.5
Natty:
Report link

Hy guys is this works for the unsupported url session in the iOS 18

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

79077642

Date: 2024-10-11 09:41:32
Score: 2.5
Natty:
Report link

I would suggest you to start with MDN Django tutorial. This tutorial gives you a good idea of Django framework. It covers everything, right from Django installation to app deployment. And in each topic it gives reference to the official Django documentation and tutorial. After completing this tutorial, you will have a sample app deployed to a production server.

Note: My Django journey began with MDN Django tutorial

Reasons:
  • Blacklisted phrase (1): This tutorial
  • Blacklisted phrase (1): this tutorial
  • No code block (0.5):
Posted by: ABN

79077638

Date: 2024-10-11 09:40:32
Score: 1
Natty:
Report link

I realise this is an old question but just in case this helps someone else.

When Getting the OAuth access tokens you need to:

Set grant_type to client_credentials. Set scope to the URL-encoded space-separated list of the scopes needed for the interfaces you call with the access token.

So in your example set scope to "https%3A%2F%2Fapi.ebay.com%2Foauth%2Fapi_scope%2Fbuy.marketing"

Then use the returned OAuth code with your query

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

79077633

Date: 2024-10-11 09:39:31
Score: 0.5
Natty:
Report link

I failed with it several times, especially when added custom field (+ include it in read_only list) in inline. Simple fix:

class FooInline(admin.StackedInline):
    fields = ("id",)
    exclude = ("id",)

Suppose, there is some issue in Django inline code itself.

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

79077632

Date: 2024-10-11 09:39:31
Score: 2.5
Natty:
Report link

It works for me. I just put this code in a script for my theme. My theme is used for the entire site. https://liferay.dev/blogs/-/blogs/custom-liferay-session-on-expiration

Reasons:
  • Whitelisted phrase (-1): works for me
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vladimir Mansurov

79077625

Date: 2024-10-11 09:37:31
Score: 1
Natty:
Report link

I found the answer elsewhere and finally solved it by adding a new Maven repository.

Original address: JCenter deprecation; impact on Gradle and Android

New Maven:

maven { url = uri("https://maven.scijava.org/content/repositories/public/") }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Monster_y

79077618

Date: 2024-10-11 09:36:30
Score: 6 🚩
Natty: 4.5
Report link

are you resolve it? I got same error

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve it?
  • Low length (2):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 島村抱月

79077610

Date: 2024-10-11 09:32:29
Score: 1
Natty:
Report link

Whenever a client application establishes a new connection to Snowflake, the user is prompted for authentication. If the client application establishes a connection multiple times, this can result in multiple prompts for authentication.

The account administrator can enable connection caching to minimize the number of times a user is prompted for authentication. When connection caching is enabled, the client application stores a connection token for use in subsequent connections.

To enable connection caching:

Set the account-level parameter ALLOW_ID_TOKEN to true:

alter account set allow_id_token = true;

For more information refer- https://docs.snowflake.com/en/user-guide/admin-security-fed-auth-use#using-connection-caching-to-minimize-the-number-of-prompts-for-authentication-optional

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

79077609

Date: 2024-10-11 09:32:29
Score: 1.5
Natty:
Report link

Maybe your dependence have an issues. So please remove your node_modules folder, and run this code to install dependence again:

npm i --legacy-peer-deps
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: nguyenlehai

79077607

Date: 2024-10-11 09:32:29
Score: 1
Natty:
Report link

I use this to remove development config in a release build:

  <!-- Exclude appsettings.Development.json in release build -->
  <ItemGroup Condition="'$(Configuration)' == 'Release'">
    <Content Remove="appsettings.Development.json"></Content>
  </ItemGroup>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Leo Lloyd Andrade

79077600

Date: 2024-10-11 09:29:28
Score: 4
Natty:
Report link

I filled a bug to Apple Support and now this issue is fixed. The individual keys section is now visible in your profile section.

enter image description here

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

79077597

Date: 2024-10-11 09:28:27
Score: 1
Natty:
Report link

This gets the version without -SNAPSHOT and saves it in the variable versionFromPom:

steps:
  - bash: echo "##vso[task.setvariable variable=versionFromPom]$(cat ./pom.xml | grep -m 1 "<version>" | grep -Po '<version>\K\d{1,}\.\d{1,}\.\d{1,}')" 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Trilorian

79077596

Date: 2024-10-11 09:27:27
Score: 2.5
Natty:
Report link

Here is the solid js solution for multiple modals: https://fancyapps.com/fancybox/

May be it will give you some clue how to build your own modals on webpage. Make sure that you saw the "Showcase" first

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

79077592

Date: 2024-10-11 09:27:27
Score: 0.5
Natty:
Report link

This is my code : private async void ceck_connection() {
try
{ isconnected = false; btndownload.Source = "downloadr"; string ipp="";

    if (Application.Current.Properties.ContainsKey("ip"))
    {
    string[] st = Application.Current.Properties["ip"].ToString().Split(new char[] { 'ò' });
    ipp = st[0];
    
    }
              
    FbConnectionStringBuilder cs = new FbConnectionStringBuilder();
    cs.UserID = "SYSDBA";
    cs.Password = "xxxxxxxx";
    cs.Database = ipp + @":C:\FirebirdSQL\Photo.FDB";
    cs.Charset = "UTF8";
    cs.Pooling = false;
    cs.Dialect = 3;
    cs.PacketSize= 32767;
    cs.ServerType = FbServerType.Default;
    FbConnection conn = new FbConnection(cs.ToString());         
    await  conn.OpenAsync();
    await conn.CloseAsync();       

    isconnected = true;
    btndownload.Source = "downloadw";
  
}
catch (Exception ex)
{
    isconnected = false;
    btndownload.Source = "downloadr";
    await DisplayAlert("", ex.Message, "Conjtinua");
}

}

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: L.Andrea

79077585

Date: 2024-10-11 09:25:26
Score: 2
Natty:
Report link

import React from 'react'; import ReactPDF from '@react-pdf/react-pdf';

ReactPDF.render(, ${__dirname}/example.pdf);

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

79077584

Date: 2024-10-11 09:25:26
Score: 1.5
Natty:
Report link

I resolved the issue by adding my server's IP address to the allowed IPs for my Google API key. However, it only started working 24 hours after making the change.

Reasons:
  • Whitelisted phrase (-2): I resolved
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shehbaz Khanani

79077583

Date: 2024-10-11 09:25:26
Score: 1.5
Natty:
Report link

Solution Overview

I found a solution to the problem:

This approach allows both types of applications to authenticate and interact with the API in a secure and efficient manner.

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

79077580

Date: 2024-10-11 09:24:25
Score: 11 🚩
Natty:
Report link

Having the same issue! Did you get anywhere with this?

Reasons:
  • RegEx Blacklisted phrase (3): Did you get
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Having the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: NateBI

79077578

Date: 2024-10-11 09:23:25
Score: 2
Natty:
Report link

Azure CSPs are third-party resellers that offer customized billing, local support, and additional services like training. Microsoft Support provides direct technical assistance, extensive resources, and SLAs for Azure services. Choose CSP for tailored solutions and personal support, or Microsoft for official resources and direct help.

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

79077574

Date: 2024-10-11 09:22:25
Score: 2.5
Natty:
Report link

Here is a clip from: Description of limitations of custom functions in Excel

Details Image]1

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

79077563

Date: 2024-10-11 09:19:24
Score: 3
Natty:
Report link

The in-place upgrade can be done with the google-beta provider currently.

Check the comment here: https://github.com/hashicorp/terraform-provider-google/issues/10331#issuecomment-1781694243

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

79077561

Date: 2024-10-11 09:18:24
Score: 1.5
Natty:
Report link

Just mounting the .ssh folder as explained by @Botje works, the only consideration is that the current user in the container should have the same UID:GID as the owner of the .ssh folder.

My container was running a root user, and my uid/gid was 1000, so I could not use the ssh keys. To solve this, I have created a user in the image with the same uid/gid as mine.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Botje
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: adiego73

79077548

Date: 2024-10-11 09:13:23
Score: 1
Natty:
Report link

Issue with the “timestamp” key value You need to update the "timestamp" key each time you send a push notification.

You can find the current timestamp value from https://currentmillis.com/.

For testing purposes, you can send a push notification directly using Apple’s push service. No need to set up or server setup.

You can access it via https://apnspush.com/, which provides sample push payloads for various push types.

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

79077542

Date: 2024-10-11 09:11:22
Score: 1
Natty:
Report link

If you want to set up a Magento website switcher effortlessly, look no further than the Multisite Selector Magento Extension—your ultimate solution for seamless website navigation! This powerful extension provides a customizable dropdown that allows customers to switch between websites effortlessly, ensuring a smooth shopping experience.

With the Multisite Selector, you’ll benefit from:
Custom URLs & Flag Icons: Easily add your website’s unique URLs and flag icons for a visually appealing switcher.
Effortless Navigation: Customers can quickly navigate between websites using a user-friendly dropdown in the header.
Tailored Configurations: Add as many websites as needed while keeping the frontend clean; show only the websites you want.
Dynamic Branding: Change site logos whenever you wish, keeping your branding fresh and relevant.

Streamline your store management and enhance customer experience with the Multisite Selector Magento Extension! Visit VT Netzwelt's website today to learn more!

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

79077538

Date: 2024-10-11 09:10:22
Score: 2
Natty:
Report link

i set my locatin server to US in pshiphone and work it

and you can use another applications like

403 dns changer https://403.online

oblivion VPN https://github.com/bepass-org/oblivion-desktop

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aliasghar Gh

79077521

Date: 2024-10-11 09:04:20
Score: 2
Natty:
Report link

I found that even after restoring defaults "PEP 8 coding style violations" were set to "No highlighting". Setting them to "Warning" (or any other visible highlighting) fixed the problem for me.

Editor>Inspections and then search for "PEP 8", and set the severity to "Warning".

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

79077520

Date: 2024-10-11 09:04:20
Score: 1.5
Natty:
Report link

you can override the compositionLocal, and set the focus state with an alpha 0f

LocalRippleConfiguration provides RippleConfiguration(
     rippleAlpha = RippleDefaults.RippleAlpha
)

https://medium.com/@Syex/disabling-the-focus-indicator-on-iconbuttons-or-any-other-composable-that-uses-a-ripple-indicator-39751e8ab19e

enter image description here

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

79077518

Date: 2024-10-11 09:04:19
Score: 6 🚩
Natty: 4.5
Report link

Quickpill is an online pharmacy store. click on this link for more information

Reasons:
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Team Adwordsify

79077508

Date: 2024-10-11 09:01:18
Score: 2
Natty:
Report link

This happended to me after I created a new app, and then rolled everything back, but I forgot to delete the directories in the filesystem. After deleting the dirs everything worked again.

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

79077507

Date: 2024-10-11 09:01:18
Score: 3.5
Natty:
Report link

I had this issue with Visual Studio 2022 and Crystal Reports 13 SP36. After a repair of the runtime the problems where gone.

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

79077505

Date: 2024-10-11 09:01:18
Score: 3.5
Natty:
Report link

How does Storage Explorer copy files so quickly and is there a way to make my Python script copy blobs faster?

Have you checked your network connection during the copy operation? If I'm not mistaken, azcopy copies directly without passing the executing computer, whereas the Python SDK always downloads the blob locally and the uploads it again.

Reasons:
  • Blacklisted phrase (1): is there a way
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How do
  • Low reputation (0.5):
Posted by: Danferno

79077501

Date: 2024-10-11 08:59:18
Score: 1
Natty:
Report link

It's not clear what you mean by

In the class hierarchy below, how to define type constraint for T (where T : class, new())?

while you could simply add where T : class, new() but if you having trouble with figuring out where to put where T : class, new() it should be something like this:

abstract class AbstractComponent<T> : Parent, IComponentType, IRelationship
where T : class, new() {}
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: محمد نظرخانی

79077494

Date: 2024-10-11 08:58:17
Score: 8.5 🚩
Natty: 5.5
Report link

Ole Bjørn Setnes: Did you find a solution ?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Brian Christensen

79077486

Date: 2024-10-11 08:55:16
Score: 1
Natty:
Report link

Suggestion for troubleshoot:

  1. Remove the --net=host to see if the container able to run
  2. Check if any IPv4 address assigned to the docker server as you're using the host
  3. Map to another port to see if the container able to run -p 3005:3000
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: C.Andrew

79077474

Date: 2024-10-11 08:52:16
Score: 2
Natty:
Report link

Did it like this. Now everything works. Basically, just added @ symbol. Would like to know what happened though.

{
  "compilerOptions": {
    "module": "CommonJS",
    "target": "ES6",
    "baseUrl": "src",
    "paths": {
      "@*": ["src/*"]
    }
  },
  "include": ["src"],
  "exclude": ["node_modules"]
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): Did it
  • Low reputation (1):
Posted by: Александр Прошанов

79077456

Date: 2024-10-11 08:49:15
Score: 1
Natty:
Report link

Using @RuthC's comment as a starting point:

import matplotlib.patches as mpatches
import matplotlib.pyplot as plt
from matplotlib.path import Path as mpPath

fig, ax = plt.subplots(1, 1)

fig.set_size_inches(10, 8)

ax.set_xlim(-1, 6)
ax.set_ylim(-1, 2)
ax.grid()

width = ax.get_xlim()[1] - ax.get_xlim()[0]
height = ax.get_ylim()[1] - ax.get_ylim()[0]

ax_ins = ax.inset_axes([0, 1, 1, 0.8])

path_data = [
    (mpPath.MOVETO, (0, 0)),
    (mpPath.CURVE4, (0, 1)),
    (mpPath.CURVE4, (1, 1)),
    (mpPath.CURVE4, (1, 1)),
    (mpPath.LINETO, (4, 1)),
    (mpPath.CURVE4, (4, 1)),
    (mpPath.CURVE4, (5, 1)),
    (mpPath.CURVE4, (5, 0)),
    (mpPath.CLOSEPOLY, (0, 0)),
]

codes, verts = zip(*path_data)
verts = [(v[0] / 5, v[1] / 4) for v in verts]

path = mpPath(verts, codes)
patch = mpatches.PathPatch(path, facecolor="r", alpha=0.5)

bbox = patch.get_extents()

ax_ins.add_patch(patch)
ax_ins.set_anchor("S")
ax_ins.axis("off")

ax_ins.text(
    x=bbox.x0 + bbox.width / 2,
    y=bbox.y0 + bbox.height / 2,
    horizontalalignment="center",
    verticalalignment="center",
    s="Text",
    fontsize=24,
)

ax_ins.text(x=0.5, y=0.45, s="Title", fontsize=24, horizontalalignment="center")

fig.tight_layout(rect=[0, 0, 1, 1.3])
fig.savefig("plot.png")

enter image description here

Note: The layout gets a little funky with this approach. This is why the title is being added manually rather than using ax.title().

Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @RuthC's
  • Low reputation (0.5):
Posted by: Alex Duchnowski

79077453

Date: 2024-10-11 08:49:14
Score: 7 🚩
Natty: 5.5
Report link

Have you been able to successfully sign the XML document?

Reasons:
  • Blacklisted phrase (1.5): Have you been able to
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mathias Manz

79077450

Date: 2024-10-11 08:48:14
Score: 2
Natty:
Report link

MD5 is probably the best choice if you intend to do a fast check on whether a file was transferred free of errors or accidental modification.

Otherwise, as stated in all previous answers, use SHA-2.

Is calculating an MD5 hash less CPU intensive than SHA family functions?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Jose Manuel Gomez Alvarez

79077439

Date: 2024-10-11 08:47:14
Score: 0.5
Natty:
Report link

For me this works fine:

{
  "isBackground": true,
  "type": "shell",
  "label": "terminal",
  "command": "/bin/zsh",
  "args": ["-l"],
  "problemMatcher": [],
  "presentation": {
    "echo": false,
    "focus": true,
    "panel": "dedicated"
  },
  "runOptions": {
    "runOn": "folderOpen"
  }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alexei

79077371

Date: 2024-10-11 08:35:10
Score: 2
Natty:
Report link

In Java 21, there is a new feature:

Thread.sleep(millis, nanos)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: D.Szabi

79077361

Date: 2024-10-11 08:34:10
Score: 1
Natty:
Report link

As @Gaël J suggested, the more appropriate option is to use 'matchCurrentVersion'.

renovate.json:

{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "extends": [
    "config:recommended"
  ],
  "packageRules": [
    {
      "matchPackageNames": ["chalk"],
      "matchCurrentVersion": "/java$/"
      "enabled": false
    }
  ]
}

This now disables the check and subsequently disables the generation of the PR:

"deps": [
  {
    "depType": "devDependencies",
    "depName": "chalk",
    "currentValue": "2.5.2-java",
    "datasource": "npm",
    "prettyDepType": "devDependency",
    "updates": [],
    "packageName": "chalk",
    "skipReason": "disabled"
  }
],
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Gaël
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Marsstar

79077359

Date: 2024-10-11 08:33:10
Score: 0.5
Natty:
Report link

Found it after some digging. Apparently shift has removed the queue.php config where we had our queue connection configured because laravel adds a default one. That default uses a .env var to override it, so we had to set REDIS_QUEUE_CONNECTION=queue because in our database.php we had

        'queue' => [
            'host' => env('QUEUE_REDIS_HOST', '127.0.0.1'),
            'password' => env('QUEUE_REDIS_PASSWORD', null),
            'port' => env('QUEUE_REDIS_PORT', 6379),
            'database' => 0,
            'scheme' => env('QUEUE_REDIS_SCHEME', 'tcp'),
        ],

and in horizon.php

    'use' => 'queue',

It still remains unknown why jobs scheduled by laravel 11 were scheduled in the correct redis server and ran properly...

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

79077356

Date: 2024-10-11 08:31:09
Score: 1.5
Natty:
Report link

You are receiving a cyclic error.

In Xcode go to your main target (in my case Runner) and then select the 'Build Phases' tab.

Move the 'Embedded Foundation extensions' option above the 'Thin Binary' option.

Should look something like this:

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

79077349

Date: 2024-10-11 08:30:09
Score: 6 🚩
Natty:
Report link

Could this option be what you are looking for?

enter image description here

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

79077333

Date: 2024-10-11 08:26:08
Score: 2
Natty:
Report link

This may not answer your question and apologies if I miss the plot completely here but using tidyverse functions should be preferable due to parsimony. Note how I also separate the functions onto their own lines that eases error tracking if needed.

Code:

library(tidyverse)

data %>% 
  mutate(pre_resp = 
           1 - sum(
             across(3:16)), 
         post_resp = 
           1 - sum(
             across(17:30)), 
         .by = participant) %>% 
  select(participant, pre_resp, post_resp)

Result

# A tibble: 6 × 3
  participant pre_resp post_resp
        <int>    <dbl>     <dbl>
1       39496    -3.33    -0.333
2       40008    -2.33     1.33 
3       39550     1       -1.67 
4       39530    -7.67     0.667
5       39956    -2.33     2    
6       39941     1.67     1.33 

Since you did ask for any advice, I hope you will take something from the above.

PS remember to up- or downvote any answers or comments.

Reasons:
  • RegEx Blacklisted phrase (2): downvote
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rion Lerm

79077321

Date: 2024-10-11 08:21:06
Score: 4.5
Natty:
Report link

Just go to View->Apparance and select Show Main Menu in Separate Toolbar

enter image description here

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