RandomUser

joined 1 year ago
[–] RandomUser 3 points 6 days ago

It's like everything, practice slowly, get good form wired in, then when you write fast for exams your writing will be worse than normal, but still legible.

[–] RandomUser 4 points 6 days ago (2 children)

Practice writing slowly and with good form. Write regularly, give yourself practice pieces. At uni you will be writing FAST, so it'll get worse if you don't keep disciplined.

Alternatively, learn to touch type, and type any work you need to hand in. - if your handwriting is so bad, you may want to make your notes legible to yourself for revision.

[–] RandomUser 1 points 3 weeks ago

Brilliant, many thanks. With all the old phones in my cupboards I'd hoped this was the answer, but it's good to get a second opinion.

 

I want to store a battery powered device long term (decades) as a reference article, it will never be switched on or charged again. The problem is that it contains a small LiPo battery that will be very hard to remove.

Is there likely to be any significant risk I need to worry about? Once depleted will the battery be relatively inert?

[–] RandomUser 1 points 1 month ago (1 children)

This is very interesting. Have you considered studying social engineering? - I've found SE techniques quite understandable to help form a process to deal with people in a 'useful' way. Many years ago I was sent on a positive influencing course via work and discovered that most NTs can be quite easily manipulated with a few simple tricks. In the end I stopped using them as it felt unfair.

[–] RandomUser 2 points 2 months ago

I have a similar one, probably a bit older though. I got it from an auction and had to clean it up a bit and replace the bellows leather. As clocks go it has no redeeming features at all, it's a bit broken, the time is hard to read, it needs winding every day and has an ear splitting Cuckoo even though I also have four other chiming clocks nearby. Having said all that, it's an integral part of the household and we love it.

It's funny even though these are not 'good clocks' by any means they do a great job, especially if they bring back memories and connect us to the past.

[–] RandomUser 2 points 2 months ago

Butt your enclosure right up against the lock body, then you reduce shearing forces trying to pull it off the door. Extend the pull bar through your enclosure so you still have a manual override.

[–] RandomUser 1 points 2 months ago

While I'm not adverse to home automation, is this something you need in your life, or just want? I like my perimeter security too be simple and tight, extra complications make the security audit much harder.

Will your insurance stand up to home made remote control unlocking?

To answer your question, place the servo in a suitably large enclosure and practically any adhesive should work, e.g. 3mM command strips or even velcro or double sided sticky. When confident that this is what you want, use a screw.

[–] RandomUser 4 points 2 months ago (2 children)

Aconitum napellus?

[–] RandomUser 13 points 2 months ago (1 children)

I've avoided the conversation entirely. Ever since the pandemic I've done my own hair with clippers. Made a good enough job of it, even if I've sometimes needed to do a small adjustment the next day.

For a simple style it's not that difficult if you take your time.

[–] RandomUser 3 points 3 months ago

It's a long time since I had one that age but we clearly noticed when the kids had an upgrade and behaviour changed. I'd put it down to him enjoying his new capabilities and being to excited to sleep. Don't think it's a problem, just roll with it, it's not as if it's a toy you can take away!

Have fun, it doesn't get much easier, but it does get different.

[–] RandomUser 3 points 3 months ago

Thought I did so well on my phone. It kept auto correcting code to coffee. Maybe it was telling me something.

Yes, plan for it!

[–] RandomUser 5 points 3 months ago (2 children)

All the other comments are great advice. As an ex chemist who does quite a bit of code I'll add:

Do you want code that works, or code that works?! It's reasonably easy to knock out ugly code that only works once, and that can be just what you need. It takes a little more effort however to make it robust. Think about how it can fail and trap the failures. If you're sharing code with others, this is even more important a people do 'interesting' things.

There's a lot of temporary code that's had a very long life in production, this has technical debt... Is it documented? Is it stable? Is it secure? Ideally it should be

Code examples on the first page of Google tend to work ok, but are not generally secure, e.g doing SQL queries instead of using prepared statements. Doesn't take much extra effort to do it properly and gives you peace of mind. We create sboms for our code now so we can easily check if a component has gained a vulnerability. Doesn't mean our code is good, but it helps. You don't really want to be the person who's code helped let an attacker in.

Any code you write, especially stuff you share will give you a support and maintenance task long term. Pirate for it!

Code sometimes just stops working. - at least I'm my experience. Sacrifice something to the gods and all will be fine.

Finally, you probably know more than you think. You've plenty of experience. Most of the time I can do what I need without e.g. classes, but sometimes I'll intentionally use a technique in a project just to learn it. I can't learn stuff if I don't have a use for it.

I'm still learning, so if I've got any part of the above wrong, please help me out.

18
New Build (lemmy.world)
submitted 11 months ago* (last edited 11 months ago) by RandomUser to c/[email protected]
 

Do self build watches get the love in here?

This is my second build, I wanted a more relaxed every day watch with good readability as my eyesight is starting to go. I also fancied a bronze case and will let the patina form naturally. Any scratches, marks or dings will, I think, add character.

Inside is a Seiko nh36 to give me some options later if decide I need day/date.

Thought I'd made a mistake with the white hands but now really like them. It's nothing special or expensive but it meets my needs perfectly.

5
European Oak advice (self.woodworking)
submitted 11 months ago by RandomUser to c/woodworking
 

Apologies if this is the wrong community.

I have a house renovation project ongoing. Before winter I fitted European oak internal windowsills which over winter have badly warped (cupped and bowed). I'll have to replace them so would be grateful of any advice as to how to stop new ones doing the same.

We were told that the wood was dried, and it was sanded and given several coats of Danish oil prior to fitting. I think they were glued in place with PU adhesive, but I didn't do that but so am not sure.

The winter was relatively hard with dramatic changes of humidity and temperature in the unheated house, if that would have an effect. One window sill was not fitted but was left in the house all the time. It's still in perfect condition. The sills are approximately 20mm thick and 200mm deep. The warping is in the order of 5-10mm.

Any advice as to what went wrong or how to prevent it happening again would be much appreciated as it's heartbreaking seeing that much oak being spoilt.

 

Project was to display tide information (time and height) on an LED panel. Fingers crossed the image loads!

OK, it's not an Arduino as such, it's an ESP32, but I programmed it on the arduino IDE. I get the time from an NTP time server and tide data from an API. A bit of messing around with daylight savings times and I display the next four tides on the Hub75 LED matrix. Date and clock is shown on the other side. Every 24 hours I pull new data down and sync the clock.

The good: It works as planned.

The bad: API keys and wifi creds are all hard coded so will need a firmware update if either change. Don't think I have sufficient pins left to allow me to read from an SD card.

The ugly: The wiring behind it is not beautiful. The code could do with a review and tidy. - Maybe even a bit of error handling wouldn't go amiss. Red and Blue are a bit jarring so close together and the blue is a bit swamped , especially when the brightness is turned down.

I may make an enclosure to keep it all together and keep the dust off and add a pir sensor to turn the display off when there's no movement. Or I may get bored and dismantle it!

3
submitted 1 year ago by RandomUser to c/clocks
 

I bought a slate clock as a restoration project but didn't spot at the time that it had been painted black.

Any advice on how to remove the paint without causing damage? Will commercial paint stepper do the job?

 

While not quite Arduino, I have an ESP32 (Arduino IDE) project to pull tide data via API and show it on a HUB75 led matrix. I've got most of the parts working separately but not quite got them all together yet. What is everyone else doing?

view more: next ›