Jump to content

panterapolnocy

Resident
  • Posts

    538
  • Joined

  • Last visited

Posts posted by panterapolnocy

  1. @BrookeRangeras Ansariel said:

    On 7/22/2022 at 11:00 PM, Ansariel Hiller said:

    And also make sure the viewer is using the nvidia GPU (usually assigning a high performance mode for that application).

    Check this, in Settings: https://pureinfotech.com/set-default-gpu-apps-windows-11/ (System -> Display -> Graphics -> select/browse for Firestorm/SLV/your-viewer-of-choice executable -> Options button -> select correct GPU).

    On 7/22/2022 at 11:44 PM, BrookeRanger said:

    Like I said before, I followed the instructions on that video and put Firestorm on the video card's choices. But the settings used do not work with my card. I was wondering if these have been updated.

    You must select the assigned GPU In Windows itself nowadays, as the NVIDIA Control Panel doesn't do this anymore - make sure that NVIDIA card of yours is listed as the "high performance" option. Video you watched is outdated.

     

  2. Password change page itself does state that limit. "New password" and "confirm new password" fields are clamped to 16 characters as well via maxlength attribute.

    ps.jpg

  3. Animation itself must be looped in the example below.

    string gAnimationName = "wiggle_whiskers_curiously_loop";
    
    default
    {
    
        state_entry()
        {
            list anims = llGetObjectAnimationNames();
            integer len = llGetListLength(anims);
            integer i;
            while (i < len)
            {
                llStopObjectAnimation(llList2String(anims, i));
                ++i;
            }
            llStartObjectAnimation(gAnimationName);
        }
    
        on_rez(integer sp)
        {
            llResetScript();
        }
    
    }

     

    • Thanks 1
  4. On 7/1/2022 at 12:20 PM, Quistess Alpha said:

    I tried that (briefly) but then pressing enter didn't cause the form to submit at all (probably needed to add an extra button)

    You can try to add an invisible submit button that looks like this, anywhere in the form, and it should work:

    <input type="submit" hidden />

    About this:

    Quote

    and if it did, wouldn't that send all of the empty inputs in the query string as well?

    You can try to exclude empty inputs in JavaScript with 'disabled' attribute before the form is sent with, for example, onsubmit="return yourFunctionThatWillReturnTrueOrFalse()" which would do the validation and processing. Take a peek here:

    https://stackoverflow.com/questions/59829278/how-to-disable-a-button-if-one-of-the-inputs-is-empty-pure-javascript
    https://stackoverflow.com/questions/2417928/delete-empty-values-from-forms-params-before-submitting-it
    https://stackoverflow.com/questions/63858583/listen-for-blank-inputs-and-add-a-disabled-attribute-to-a-button-until-an-inpu

    • Thanks 1
  5. I have no negative or positive feelings towards this flag/symbol itself (I'm not an US citizen as well), but I must say, through the pure observation and newly gained knowledge, that I find the history on that topic quite interesting:

    https://www.nationalgeographic.com/history/article/how-confederate-battle-flag-became-symbol-racism
    https://en.wikipedia.org/wiki/Modern_display_of_the_Confederate_battle_flag#Public_opinion_(2011–2021)

    It does remind me a bit of the history of the swastika symbol, where the original meaning was rather positive and later on the general reception turned into something rather negative.

    • Like 4
    • Thanks 2
  6. If it's not your computer nor the router, as you rebooted both, and not a singular account issue - so bogus group tag preventing login can be excluded - then I suggest you to check your firewall/AV (whitelist the viewers) even if so far everything was behaving nicely. You may also want to try with DNS changed to 1.1.1.1 or 8.8.8.8. Last resort: clear the settings in the viewer(s), as they could get corrupted. And If that won't help - do you use Kaspersky password manager by any chance? There is a known issue with that one and the only way to make that working is to reset login info in the mentioned program. You may also try to re-type login/password in the viewer manually instead of using the "remember me" option.

    • Confused 1
×
×
  • Create New...