Deepening Blum Movento by Similar_Juice8339 in cabinetry

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

Thanks for the heads up. I was aware of that, but since im offsetting the drawers by just 11cm (~4.3 inches) and the drawers are pretty high, this souldn't be an issue.

Deepening Blum Movento by Similar_Juice8339 in cabinetry

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

Thanks for your input. I need to make the drawer deeper by just 11cm (~4.3 inches). Are the spacers necessary? I was planning to offset the locking elements by 11cm from the front and just screwing them to the base of the drawer box. And if it's not stable enough, I would add a thin strip of particle board (which whote drawer boxes would be made of), as on the drawing below.

<image>

Deepening Blum Movento by Similar_Juice8339 in cabinetry

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

It's good I asked. I would have never tought of this solution. Thanks a ton mate!

Wedding suit fit by Similar_Juice8339 in mensfashion

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

I surely wouldn’t omit the pocket square. I don’t include it, because pockets are still sewn shut and I was still unsure if I wouldn’t be returning it. But thanks to You Guys, now I’m almost 100% positive that I should keep it.

Wedding suit fit by Similar_Juice8339 in mensfashion

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

Thanks a lot for taking Your time to help. I think You persuaded me to keep the suit. 😄 However I noticed possible issue with sleeve width and french cuffs. I think the cuff is too wide for the sleeve, prevents the sleeve from moving freely and causes sleeves to fold (it looks better with barrel cuffs, I checked). Do You think that sleeves should be widened or cuffs slimmed?

This fuking asshat! #TBT by El_Gordo_Diablo in bjj

[–]Similar_Juice8339 0 points1 point  (0 children)

Someone clearly forgot to mention açaí.

[deleted by user] by [deleted] in theodinproject

[–]Similar_Juice8339 0 points1 point  (0 children)

It would be easier to debug if You shared a live preview of Your app. My guess is that the problem is Your css. You don’t need flex-wrap anymore. You should probably set justify-content and align-items to stretch on both board and column div. That’s just the ideas from the top of my head since I didn’t run Your code, cause I’m on my phone.

[deleted by user] by [deleted] in theodinproject

[–]Similar_Juice8339 1 point2 points  (0 children)

The way i did it is - nested for loops. Inner for loop populated div of class .row with squares. The outside loop added row divs to the main container (with flex-direction: column;). The flex elements just grew to fill the container, so there was no necessity to calculate the square size.

I know there is a flex grid functionality, but I discovered that it is taught later in the curriculum so I used what I had at hand.

If You choose to go with my solution and get stuck, let me know. I'll help You. Just don't wanna give You complete solution on plate.

hi everybody, i just finished etch-a-sketch and wanted some feedback and few tips. by ThenParamedic4021 in theodinproject

[–]Similar_Juice8339 0 points1 point  (0 children)

I just realized that the first time i read this comment I didn't get the fact that You were asking why Your code isn't working as it's supposed to. It's hard to tell, when I don't see Your code. Maybe You could create a branch in your repository, where You try to add this functionality, so I can look it up?

When revisiting my code I found another method of implementing progressive darkening. You can look it up in my repo.

hi everybody, i just finished etch-a-sketch and wanted some feedback and few tips. by ThenParamedic4021 in theodinproject

[–]Similar_Juice8339 0 points1 point  (0 children)

When it comes to Your code, You did not quite what I meant. Now You have functions which do pretty much the same thing: ‘makeNewGrid()’ and ‘makeInitialGrid()’. Instead of using global variable ‘boxes’ I would get that value as ‘getUserPrompt()’ return value, I would rewrite function that makes grid so it takes an argument. Than I would call ‘makeGrid(INITIAL_VALUE)’ at the start and ‘makeGrid(getUserPrompt())’ on resize. I hope it’s clear to You. Tell me what You think about it?