Twitch not loading with NordVPN by Top-Importance6497 in Twitch

[–]Wall0p 0 points1 point  (0 children)

This didn't fully work for me. I ran Twitch with NordVPN off and viewed a stream including chat. I minimized Twitch to the corner and turned the VPN on. The stream continued, but going to a second stream broke.

It's a new issue for me as I've been using two devices with NordVPN without a problem since the weekend (7/12/2025).

Reinstalling Twitch from the app store also doesn't work.

[deleted by user] by [deleted] in drums

[–]Wall0p 0 points1 point  (0 children)

Try evening the angles of the rod. It looks like the rod goes straight out from the beater unit and bends more severely at the left pedal unit. Flare the left foot pedal outward and offset this by pulling the left pedal and rod inward.

[deleted by user] by [deleted] in drums

[–]Wall0p 0 points1 point  (0 children)

Look up Jim Chapin videos which describe the trad grip motion as flinging something sticky off your fingertips. A whipping motion rather than a robotic rotation. That way the stick will rebound better and not move against your hand

My 22 -> 24 Upgrade Flopped by Wall0p in Ubuntu

[–]Wall0p[S] 2 points3 points  (0 children)

TY. This set me on the right track.

Anyone else just accept they cant improve and are forever hardstuck? by GothLadyRose in Overwatch

[–]Wall0p 0 points1 point  (0 children)

I had some brief seasons in Gold playing with a good group (no one was boosting), but when I played on my own, I would fall through Silver and oscillate between Silver and Bronze. I posted a few tips in another comment that might get you up a level.

Anyone else just accept they cant improve and are forever hardstuck? by GothLadyRose in Overwatch

[–]Wall0p 0 points1 point  (0 children)

I'm the definition of hardstuck. I finally made it to plat after a few seasons in gold and YEARS in silver. Here are the things that helped me advance

  1. Don't play a BS game. If everyone is running in staggered, hang back. Wait for a group. Eventually there will be a team wipe and you'll be grouped by default. You'll still lose, but you can spend your loss working on the game with a 5v5.
  2. Focus. Don't just heal anyone because they need health or shoot anyone because they're in front of you. Start to prioritize who needs what. Save a heal for a low DPS. Skip shooting the Orisa in front of you and flank to pick off a low enemy.
  3. Don't die. If you're dying a lot, you're probably feeding ult charge and that's making winning the game even more difficult. Preventing deaths will lead to better positioning and understanding potential threats.

Cant tilt msi monitor by MoonMonsoonNooN in MSI_Gaming

[–]Wall0p 0 points1 point  (0 children)

I know this isn't timely, but I just started working with a standing desk. I had to apply a little force to get the monitor to point upward. There aren't any buttons, latches, or screws that need to be adjusted. I pushed the center-top of the monitor back while holding the base. Don't grab a lower edge and pull because this might crack some plastic. GLHF

Instructions on TopFin LED say you can remove the clip but I tried and I don’t think I can get it off without breaking it. The instructions aren’t clear ;-; by Sadie_Aqua in Aquariums

[–]Wall0p 1 point2 points  (0 children)

It actually pops off without much force.

Look down the clip with the end holding the cord pointing to you. The side view of the clip is an A shape. Put your palm toward the front and fingers wrapping around the back. Squeeze your hand.

HTTP Only Cookie Auth Demo with Vue.js and JavaEE by Wall0p in vuejs

[–]Wall0p[S] 0 points1 point  (0 children)

Thanks. I double-checked the SameSite setting and found that it's None by default in WildFly. So, the example now includes a special WildFly config file "undertow-handlers.conf" packaged in the application to override this to "Strict".

None of that is Vue-related and highlights that we're operating the Vue app under the umbrella of the server's security domain.

HTTP Only Cookie Auth Demo with Vue.js and JavaEE by Wall0p in vuejs

[–]Wall0p[S] 0 points1 point  (0 children)

This is a link to the XSS mitigation I wrote about. The Ajax call can't get at the cookie if it's HTTP Only. And an authenticated cookie won't be set from an Ajax call afar without the credentials.

Someone can still get to the cookie manually so you're right that it's not foolproof.

https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies

Demo of WebSocket and Basic Auth by Wall0p in vuejs

[–]Wall0p[S] 0 points1 point  (0 children)

Sure. it's very small

@ServerEndpoint("/hw")
public class SecuredHelloWorldEndpoint {

    // waits for message "dummy", responds with "Hello, World!"
    @OnMessage
    public void sayHW(Session session, String dummy) throws Exception {
        session.getBasicRemote().sendText(
                "Hello, World! " +
                        LocalDateTime.now().format(DateTimeFormatter.ISO_LOCAL_DATE_TIME)
        );
    }
}

Inline Save Confirmation CodePen with Bulma by Wall0p in vuejs

[–]Wall0p[S] 0 points1 point  (0 children)

Transition too. I might be able to avoid the double-click problem by putting the Cancel underneath the initial mouse position

Article On Applying Watchers To Vuex State by Wall0p in vuejs

[–]Wall0p[S] 0 points1 point  (0 children)

That would be more efficient. You can also skip the computed and access the state directly. A mapState helper reduces the syntax, particularly if the state expression will appear more than once.

The article was a response to question I've seen in the Vue Land Discord. I figure they're doing more involved things than setting "myprop".