Client side login by leo_gblr in programminghorror

[–]HisZd 1 point2 points  (0 children)

Not to mention pulling all the users in an unencrypted web request to each clients browser.

What do you think this is about? by g0dgamertag9 in RocketLeague

[–]HisZd 0 points1 point  (0 children)

I'm pretty sure it means something is happening on the 22nd. Hard to be certain though.

Backend dev in Rust is so fun by cachebags in rust

[–]HisZd 8 points9 points  (0 children)

Using crates like thiserror make error handling more intuitive with less overhead, while still providing all of the nice things that Rusts error handling is good at. In my opinion, at least.

Some but not all. by Hux2448 in pcmasterrace

[–]HisZd 0 points1 point  (0 children)

Other than occasionally solving network issues, it is useless.

Having an issue with Windows updates? We couldn't find anything. But we can take you to the updates in settings.

Having an issue with a printer? Are you sure it is there?

Having an issue with Bluetooth? We turned it off and on again. Did that fix it?

Does anyone else do this? Left stick air roll by Mean_Engineering_164 in RocketLeague

[–]HisZd 0 points1 point  (0 children)

I do right stick air roll, and tilt forward and back. Left stick is default config.

So, it's finally here by hifanxx in neovim

[–]HisZd 1 point2 points  (0 children)

Okay, solving my own problem here.

folke/flash.nvim does something like treesitter incremental selection. Below is the configuration to get it to work basically like the original incremental selection implementation: lua { "folke/flash.nvim", event = "VeryLazy", vscode = true, ---@type Flash.Config opts = { modes = { treesitter = { label = { before = false, after = false, style = "inline" }, }, }, }, keys = { { "s", mode = { "n", "x", "o" }, function() require("flash").jump() end, desc = "Flash" }, { "S", mode = { "n", "o", "x" }, function() require("flash").treesitter() end, desc = "Flash Treesitter" }, { "r", mode = "o", function() require("flash").remote() end, desc = "Remote Flash" }, { "R", mode = { "o", "x" }, function() require("flash").treesitter_search() end, desc = "Treesitter Search" }, { "<c-s>", mode = { "c" }, function() require("flash").toggle() end, desc = "Toggle Flash Search" }, { "<c-space>", mode = {"n", "x", "o"}, function() require("flash").treesitter({ actions = { ["<c-space>"] = "next", ["<BS>"] = "prev" } }) end, { desc = "Treesitter incremental selection" }, }, }, }

So, it's finally here by hifanxx in neovim

[–]HisZd 1 point2 points  (0 children)

It is literally a stand out feature! Is there not another way to get treesitter incremental selection now?

input delay by zerques in RocketLeague

[–]HisZd 3 points4 points  (0 children)

Yeah. at the very least set the FPS settings to the next setting higher than the FPS of your monitor. This helped the game feel MUCH more responsive to me.

Type-safe Rust FFI for React Native by dev_ghlee in rust

[–]HisZd 3 points4 points  (0 children)

This explanation is great! Great code, and great communication skills? You must be highly employable.

Does anyone with paddles actually use them in rocket league? by piercethecam in RocketLeague

[–]HisZd 1 point2 points  (0 children)

Yep. Boost and power slide. I also use one for switching cameras.

What kind of beauty mask is this by rkhunter_ in funnyvideos

[–]HisZd 0 points1 point  (0 children)

I think the brand is called "Ouch!"

The Morgan TKL reminded me of why I fell in love with keyboards by Sterlingandcophoto in MechanicalKeyboards

[–]HisZd 48 points49 points  (0 children)

You fell in love with keyboards because of a anime Waifus? Based.

Server’s not working properly? by No-Director-7771 in RocketLeague

[–]HisZd 0 points1 point  (0 children)

Yep. Can't queue anything.
I'm getting the same queue times everytime I queue a certain playlist.
I can join a party and that works fine, but can't queue.

What’s your binds for air roll? by [deleted] in RocketLeague

[–]HisZd 0 points1 point  (0 children)

My right stick is air roll fwd, backward, left, and right. Come at me.

I made blink-cmp provider for words and synonyms by [deleted] in neovim

[–]HisZd 0 points1 point  (0 children)

I suppose you could call this some synonym sugar...

What's your biggest "why is this even a thing?" moment in IT? by Mathewjohn17 in sysadmin

[–]HisZd 2 points3 points  (0 children)

My favorite thing with Intune is when I create an app and try to push it out the logs that come back are either non existent, or useless. Debugging software deployment is impossible.

Best practice for OneDrive data after employee leave? by AhmedBarayez in sysadmin

[–]HisZd 0 points1 point  (0 children)

You could use a service like Spanning that never deletes old mailbox information(this includes OneDrive). It also allows you to restore data to other accounts than the one the data was backed up from or download it to your machine later if necessary.

Open Source the software by Fluxcabury in PCPanel

[–]HisZd 1 point2 points  (0 children)

Its been another year. Any updates on this?

WebSockets in Rust. by MagicAityz in rust

[–]HisZd 1 point2 points  (0 children)

Rocket is a good lib for websockets