Something went wrong!
Something went wrong!
Something went wrong!
Something went wrong!
Something went wrong!
Something went wrong!
Something went wrong!
Something went wrong!
Something went wrong!
Something went wrong!
Something went wrong!
Something went wrong!
Something went wrong!
Something went wrong!
Something went wrong!
Something went wrong!
Something went wrong!
Something went wrong!
Something went wrong!
Something went wrong!

All Forum

Nunc ex Cras ullamcorper Morbi vitae adipiscing non ipsum vitae Quisque placerat.

Switching to an electric car should feel like a win: not just for the planet, but for your wallet too. That’s why we’ve introduced Dynamic Deposits, a way to save more on your lease by tailoring how you pay, on your terms. This new feature is about making EV leasing work for everyone. Whether you’re looking to keep your monthly payments manageable or maximise your overall savings, Dynamic Deposits gives you the flexibility to create a schedule that suits you.

Created by: john

Last updated: 8 months ago

2

Test Description from mobile view

Created by: Tony

Last updated: 10 months ago

1

What are the top ten electric vehicles in the World?

Created by: Nishant Tyagi

Last updated: 11 months ago

10

I am automating the checkout process on a NopCommerce site using PayPal Advanced as the payment method. Most of the time, the automation works, but sometimes it fails to complete the payment. When the payment works, the PayPal form looks like this: Successful paypal payment form When it fails, the form looks like this: Failed paypal payment form The main difference is how the card number is shown, with spaces between every four digits when it works. At first, I used the sendKeys method in my selenium code: WebDriverWait wait = new WebDriverWait(driver, Duration.ofSeconds(60)); wait.until(ExpectedConditions.frameToBeAvailableAndSwitchToIt(By.xpath("//iframe[@title='paypal_card_number_field']"))); WebElement cardNumberInput = wait.until(ExpectedConditions.elementToBeClickable(By.name("number"))); cardNumberInput.click(); cardNumberInput.clear(); cardNumberInput.sendKeys(cardNumber); driver.switchTo().defaultContent();

Created by: smith12311

Last updated: 11 months ago

10

run: | ssh -o StrictHostKeyChecking=no -i ~/.ssh/deploy_key xxx " \ SPRING_DATASOURCE_URL='${{ secrets.SPRING_DATASOURCE_URL }}' \ SPRING_DATASOURCE_USERNAME='${{ secrets.SPRING_DATASOURCE_USERNAME }}' \ SPRING_DATASOURCE_PASSWORD='${{ secrets.SPRING_DATASOURCE_PASSWORD }}' \ SERVER_ADDRESS=${{ secrets.SERVER_ADDRESS }} \ SERVER_PORT=${{ secrets.SERVER_PORT }} \ nohup java -jar xxx.jar > app.log 2>&1 & sleep 20 && pgrep -f xxx.jar && echo 'JAR started successfully' || exit 1"` When trying to deploy to my production server my github actions workflow does not register the environmental variables correctly. I can manually deploy on my server but through the workflow it seems like the environment variables does not get loaded correctly by the jar file. I don't have ".env" setup for the java project I use environmental variables setup through intellij. It worked fine before setting up environmental variables. I have tried setting the env values globally, I have tried to set them locally without explicitly setting them in the script to the server but none of the options works. I either get that SERVER_PORT is not found or jdbc error. The values in the secrets are correct. But they are not in "value" in the secret which I expect is fine?

Created by: smith12311

Last updated: 11 months ago

0

I don't understand why my website is like this, the header and footer can still be displayed, but nothing appears in the body website. what is the solution? please check the link https://atriadimensi.com/ . All body website is not displayed I hope there is a solution This website

Created by: smith12311

Last updated: 11 months ago

0

i am test this from user side ........

Created by: udittyagi455

Last updated: 11 months ago

0

This is only testing content .......

Created by: admin234

Last updated: 11 months ago

0

I am trying to force the a pattern to be followed, forcing the first letter of a word capital and the rest lowercase but when I type a special character it turns the following character uppercase and I want it to force lowercase letters after all characters except the first letter of each word. To me, it looks like it should work. It looks properly programmed to split at the space, not a special character. document.addEventListener("DOMContentLoaded", function() { const displaynameInput = document.getElementById('display_name'); function sanitizeDisplayNameInput() { let value = displaynameInput.value; const minLength = 2; // Minimum length for display name const maxLength = 50; // Maximum length for display name if (!/^[a-zA-Z]/.test(value)) { value = value.replace(/^[^a-zA-Z]+/, ''); // Remove all non-alphabet characters at the start } if (value.replace(/\s/g, '').length > maxLength) { value = value.substring(0, value.length - 1); displaynameInput.value = value; return; } value = value.replace(/^\s+/g, ''); // Remove leading spaces only value = value.replace(/\s{2,}/g, ' '); // Replace multiple spaces with a single space // Ensure the value is between min and max length if (value.replace(/\s/g, '').length < minLength || value.replace(/\s/g, '').length > maxLength) { document.getElementById("display_name-check-btn").style.display = "none"; } else { document.getElementById("display_name-check-btn").style.display = "block"; } // Remove any words with non-English characters value = value.replace(/[^\x00-\x7F]/g, ''); // Split the value into words let parts = value.split(' '); // Process each part value = parts .map((word, index) => { if (word.length === 0) return ''; // Skip empty words // Convert the whole word to lowercase and then capitalize the first letter return word.charAt(0).toUpperCase() + word.slice(1).toLowerCase(); // Allow any other characters or numbers at the start of words return word; }) .join(' '); // Rejoin the parts into a single string // Update the display name input with the sanitized value displaynameInput.value = value; } // Add event listeners displaynameInput.addEventListener('input', sanitizeDisplayNameInput); displaynameInput.addEventListener('blur', function() { sanitizeDisplayNameInput(); // Remove trailing spaces when the user leaves the field displaynameInput.value = displaynameInput.value.trimEnd(); }); }); .login form input[type="password"], .login form input[type="text"], .login form input[type="email"], .register form input[type="password"], .register form input[type="text"], .register form input[type="email"] { width: 80%; height: 50px; border: 1px solid #dee0e4; border-left: 0; margin-bottom: 20px; padding: 0 15px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; outline: 0; <input type="text" name="display_name" placeholder="Display Name" id="display_name" required minlength="2" maxlength="50" tabindex="3" oninvalid="alert('Please enter a valid display name!');" pattern="^[A-Z][a-z0-9\W_]*( (?! )([A-Z]|[0-9\W_])[a-z0-9\W_]*)*$"> <button class="availability" id="display_name-check-btn" type="button" onclick="checkDuplicate('display_name', document.getElementById('display_name').value)">Check Availability</button> <input type="submit" value="Register" tabindex="6" id="submit" name="submit" style="margin-top:10px; width:400px;">

Created by: admin234

Last updated: 11 months ago

0

I am displaying data from another application so when the new data added to that app i want my application get that data and update the UI with the latest data. I am using webhook to get the newly added data and then storing that on my application DB. But can't show the updated data until reload.

Created by: admin234

Last updated: 11 months ago

0