Skip to main content

48 in. Rectangular Black 1 Drawer Standing Desk with Adjustable Height Feature

https://www.homedepot.com/p/Motion-Wise-48-in-Rectangular-Black-1-Drawer-Standing-Desk-with-Adjustable-Height-Feature-SDG48B/308437751
 
This is the stand desk I bought for home office. Those were so expensive at the beginning of covid. now the price seemed dropped some. I bought the black color during a promotion for about 260 or something.
 
So far I'm very satisfied. at least much much better than non-stand desk. I locked it due to my daughter play with it, but otherwise you should be able to adjust height easily like morning, afternoon, with and w/o shoes etc. It can record 4 positions.
 
It's easy to install, took me about half an hour. Only thing is the drawer, one screw was broken. I don't know if it's during shipping or when I install it. I don't bother replacing it, so I just fixed it using another screw I found at home. Not as beautiful as original, but nobody notices it since it's hiding under the desk. There is cheaper version w/o the drawer, if you don't need it. it's something that i see not durable.
 
It's pretty heavy (which I hope means good quality), so you may want others to help carry it or when flipping it over after installation. It's my first stand desk, so I don't have comparision with those 700-800 ones. So far meets my need. Hope it helps for my back and neck pain.
 
It has one USB charging port which is very handy. I installed a 4-port usb hub myself, so I can charge 4 devices at the same time. though usually just my iphone.
 
For the size, i myself would go with 48 in., but ymmv. My room is not that big. it's good enough for me. doesn't take up too much space in the room. it fits my 32 in. monitor and 15 in. laptop perfect.

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...