Jump to content
Akinix

Perpetual Newbie

User
  • Content Count

    32
  • Joined

  • Last visited

    Never
  • Days Won

    1

Perpetual Newbie last won the day on May 8 2019

Perpetual Newbie had the most liked content!

Community Reputation

1 Neutral
  1. I keep getting an error in Laravel every time I try to make an HTTP request, even when using Guzzle. How can I fix this issue? Thank you! cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://example.com
  2. Thank you! It's working flawlessly, and I really appreciate your help! In the below code, I have added the Tailwind CSS classes to make it look more beautiful. <label for="range-input" class="text-lg font-medium text-gray-700">Select a value:</label> <div class="flex items-center mt-2"> <input type="range" id="range-input" name="range-input" min="0" max="100" value="50" class="flex-1 h-2 rounded-lg appearance-none bg-indigo-100 slider-thumb"> <input type="number" id="number-input" name="number-input" min="0" max="100" value="50" class="w-20 ml-2 py-1 text-center rounded-md bg-indigo-100 text-indigo-800"> </div> <script> const rangeInput = document.getElementById("range-input"); const numberInput = document.getElementById("number-input"); rangeInput.addEventListener("input", () => { numberInput.value = rangeInput.value; }); numberInput.addEventListener("input", () => { rangeInput.value = numberInput.value; }); </script>
  3. I want to create an HTML input range that allows the user to enter a value by typing it in, in addition to using the slider control. I have read the documentation on MDN, but it seems that I can only create separate inputs for the range and the number. How can I combine the two inputs so that their values are in sync? Ensuring that they stay in sync when the user interacts with either input.
  4. After upgrading to PHP 8, when I run "php artisan serve" I get the error "Failed to listen on 127.0.0.1:8000 (reason: ?)".
  5. Why on the site https://dvprogram.state.gov when checking my Green Card application I get the error "The requested URL was rejected. Please consult with your administrator." and how to fix it?
  6. Why am I getting the error "Your connection is not private" (NET :: ERR_CERT_COMMON_NAME_INVALID) on the site https://dvlottery.state.gov and how can I fix it?
  7. I spent some time finding this solution, so I decided to share it with you. There is no sleep() or delay() functions in JS but you can easily implement it on your own using promises in combo with setTimeout(): function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); } Usage: await sleep(2000); // Sleep for 2 seconds or sleep(2000).then(() => { // Sleep for 2 seconds and then run the code from this block });
  8. WordPress, Invision Community etc. All of them are distributed in zip archives. Why? As far as I know, the 7z format in the 7zip archiver is much better than zip.
  9. Thank you! Indeed! I'm really tried to connect to MySQL version higher than 8.0.4 and my mysql-connector-java in DBeaver was outdated. I installed a new version of mysql-connector-java and it worked! Many thanks for your help! πŸ™πŸ™πŸ™
  10. I found what there is two types of drivers by Nvidia is available for my video processor: Game Ready Driver (GRD) and Studio Driver (SD). But what's the difference between the two drivers? Will the Studio Driver driver provide any noticeable performance boost in Adobe Premiere Pro comparing to Game Ready Driver driver?
  11. I'm getting ERR_CONNECTION_RESET on form submission on dvprogram.state.gov Anyone else experienced this problem? How do I fix it?
  12. I need to disable registration in my laravel app, because i want to have only one user. How can i do that?
×
×
  • Create New...