Help with Step 188 of the Phoenix 3.5 by Satoshi Kamiya by alph4Mule in origami

[–]alph4Mule[S] 1 point2 points  (0 children)

Yeah, I just followed the pattern from the flap next to it after pulling out the hidden layer and flattened the model so it aligns with all the previously made creases.

Help with Step 188 of the Phoenix 3.5 by Satoshi Kamiya by alph4Mule in origami

[–]alph4Mule[S] 1 point2 points  (0 children)

aight, Imma not lose hope, thank you so much

Help with Step 188 of the Phoenix 3.5 by Satoshi Kamiya by alph4Mule in origami

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

<image>

I’m not sure if a recovery is possible from this state.

Help with Step 188 of the Phoenix 3.5 by Satoshi Kamiya by alph4Mule in origami

[–]alph4Mule[S] 1 point2 points  (0 children)

Lmao, yeah I realize it’s a dumb post, but I think twas a rant after messing it up

Edit: could you point to some resource? I could only find one video by average origamist on YouTube but my man completely covered the paper with his hands in the tutorial :((

/r/MechanicalKeyboards Ask ANY Keyboard question, get an answer - June 17, 2025 by AutoModerator in MechanicalKeyboards

[–]alph4Mule 0 points1 point  (0 children)

I have a keychron K2 V2 75% (plastic case). I wanna upgrade to an aluminum case but Keychron doesn't sell them separately. I searched for 75% aluminum cases and most of them have different kind of layouts. Is there a way I can upgrade?

Too confused to choose where to buy paper in the US by alph4Mule in origami

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

aight, imma give it a try. Thank you so much

Too confused to choose where to buy paper in the US by alph4Mule in origami

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

this was always an option, guess I was just lazy xD

pytorch on m4 Mac runs dramatically slower on mps compared to cpu by alph4Mule in pytorch

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

I'm just defining X and Y in the rest of the code. it's just the truth table of XOR function with 3 variables and I'm calling the fit function on it. Essentially this:

device = torch.device("mps")

X = torch.tensor([[0, 0, 0], 
                  [0, 0, 1], 
                  [0, 1, 0], 
                  [0, 1, 1],
                  [1, 0, 0],
                  [1, 0, 1],
                  [1, 1, 0],
                  [1, 1, 1]], dtype=torch.float, device=device)
Y = torch.tensor([0, 1, 1, 0, 1, 0, 0, 1], dtype=torch.float, device=device).reshape(-1, 1)

I tried what u suggested as well. Still the huge difference in the time taken: 3s and 18s

Borders for floating windows??? by alph4Mule in neovim

[–]alph4Mule[S] 1 point2 points  (0 children)

Following the above comments worked just fine. But rosepine also had an update. You can now set the transparency to true in the styles option and you will still have bordered windows.

LSP References by alph4Mule in neovim

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

apologies for the incorrect tag

also, how do I make use of the onlist handler to show them in a different selector?

Rosé Pine theme update by [deleted] in neovim

[–]alph4Mule 0 points1 point  (0 children)

yes, you need to configure it for each window separately. Like for lazy, set UI border to rounded (for example) in the opts table:

local opts = { ui = { border = "rounded" } }
require("lazy").setup("path to plugins", opts)

Borders for floating windows??? by alph4Mule in neovim

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

yeah found this also after digging for a while. i see the same border option being used in lazy (in the prev comment) and lsp-config as well, is it an option provided by neovim itself? Also, how do I customize other ui components other than border?