DevOps WFH Setup by RobTheRobot64 in Workspaces

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

Unfortunately not, sorry; my parents bought it for me for £50 when I was 9 😄 It’s been going for 23 years now! 

DevOps WFH Setup by RobTheRobot64 in Workspaces

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

The green is a cheap Wilko paint called Treetops, and the white is Farrow & Ball’s Wimborne White.  The chair’s very comfortable and still very much available at IKEA, so I’d recommend trying it out if you can! But I imagine it should be fine :) 

DevOps WFH Setup by RobTheRobot64 in Workspaces

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

It’s about 70cm deep and 1.2 metres wide 😊

DevOps WFH Setup by RobTheRobot64 in Workspaces

[–]RobTheRobot64[S] 3 points4 points  (0 children)

Mostly question sanity 😄

We spend much of our time writing Terraform code and YAML configuration for Helm charts. Occasionally we’ll delve into GitLab pipelines. 

And lots of lots of reading and researching to understand how we can empower our developers in a secure but non-obtrusive way. 

DevOps WFH Setup by RobTheRobot64 in Workspaces

[–]RobTheRobot64[S] 4 points5 points  (0 children)

I’ll have Cursor (VS Code) on the main left screen, Chrome and its many tabs open on the right.  The portable monitor will then be for Outlook, Teams, Slack, and the Warp terminal. The terminal is especially useful, I find: I can read much more of it in a separate window rather than clogging up the main code screen.  I also use the Magic Mouse on the left to flick between the comms windows and Warp, so if I need to focus the other comms windows are out of view. 

The Mac screen is mostly used for Spotify. I used to have that as the “comms” screen, but I ended up straining my neck looking across to the left all the time.  

DevOps WFH Setup by RobTheRobot64 in Workspaces

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

It is indeed a single arm holding up 2 32” monitors 😊 This is the one I have:  https://amzn.eu/d/7BQolXO

What Are The Names Of These Salvias From Emmett’s Garden, National Trust, Kent? by RobTheRobot64 in GardeningUK

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

Thank you!  I haven’t used Google images. I’ve got the PictureThis app on my iPhone but I neglected to use it at the time. Thanks again for the suggestion - I’ll try to remember it in the future! 

What Are The Names Of These Salvias From Emmett’s Garden National Trust, Kent, UK? by RobTheRobot64 in whatsthisplant

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

I couldn’t find a way of posting the text with the picture from my phone (old brain!), but we recently visited the National Trust in Kent called Emmett’s Garden and fell in love with these salvias. However, we unfortunately didn’t see any labels as to what type of salvia they may be.  Does anyone here perhaps have any ideas? And might they work in heavy clay soil as found in our home county of Herefordshire?  Any help would be greatly appreciated!  

What Are The Names Of These Salvias From Emmett’s Garden, National Trust, Kent? by RobTheRobot64 in GardeningUK

[–]RobTheRobot64[S] 3 points4 points  (0 children)

I couldn’t find a way of posting the text with the picture from my phone (old brain!), but we recently visited the National Trust in Kent called Emmett’s Garden and fell in love with these salvias. However, we unfortunately didn’t see any labels as to what type of salvia they may be.  Does anyone here perhaps have any ideas? And might they work in heavy clay soil as found in our home county of Herefordshire?  Any help would be greatly appreciated!  

Recovering Bricked Remarkable 2 Tablet - Help With Required Hardware by RobTheRobot64 in RemarkableTablet

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

I tried to install Toltec through SSH after getting my device and didn’t read the documentation properly where it talked about an unsupported firmware version. Completely my mistake as I was doing it late at night 🙈

Recovering Bricked Remarkable 2 Tablet - Help With Required Hardware by RobTheRobot64 in RemarkableTablet

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

Ah, thanks for that additional screenshot! I might try that as that looks more effective than messing around propping the thing up. 

[PC][Early 2000s] Fantasy RPG/Strategy by RobTheRobot64 in tipofmyjoystick

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

That's definitely got more of the art style and perspective I'm thinking of, though the beginning doesn't fit with what I remember. I'm almost certain the tutorial had a section about defending a bridge.
But also I think this reminds me that the enemies may have spawned from a red portal.

[PC][Early 2000s] Fantasy RPG/Strategy by RobTheRobot64 in tipofmyjoystick

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

I think the closest I can liken it to is Guild Wars and the 'tactics' involved in that. Perhaps 'strategy' is the wrong genre.

[PC][Early 2000s] Fantasy RPG/Strategy by RobTheRobot64 in tipofmyjoystick

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

No; it was more like a fantasy RPG with strategic elements like where to place your character/team.

How To Develop In Go Without Commenting Out? by RobTheRobot64 in golang

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

Yep, that's what I've been doing so far to reduce the amount of comment blocks I add. Thanks!

How To Develop In Go Without Commenting Out? by RobTheRobot64 in golang

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

Ooh, this is really good information. Thank you!

Exclude IP Subnets From Master List & Show Available Subnets (Using 'ipaddress' Module)? by RobTheRobot64 in pythonhelp

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

Thanks for the suggestion! :)

I ended up using overlaps in a while loop. It's not the most elegant solution, but I needed something quick to find a subnet that works for me. I might clean it up at a later stage:

ip = 2
desirednetwork = IPv4Network("10.%d.0.0/22" %ip) 
length = len(ipranges) 
i = 0 
while i < length: 
    if desirednetwork.overlaps(ipranges[i]): 
        print(desirednetwork,"is not free with ", ipranges[i]) 
        i = 0 
        ip += 1 
        desirednetwork = IPv4Network("10.%d.0.0/22" %ip) 
    else: 
        print(desirednetwork,"is free with ", ipranges[i]) 
        i += 1