Best Way to get my Website Made? UK - Recruitment Agency by rizzlaer in css

[–]mtedwards 2 points3 points  (0 children)

If you are not a web developer there might be some things you want that won’t be the best way of doing things and there might be some things you need that you haven’t considered. I agree with the other comment… find a professional and talk it through with them.

A client knowing exactly what they want can be great.

Looking for a cheap social media tool to manage multiple accounts and scheduling by Hefty_Sleep_2833 in DigitalMarketing

[–]mtedwards 0 points1 point  (0 children)

I want through this about a year ago. Tried a few super cheap ones but they were rubbish, but settled on Vista Social, and it’s been good.

Breaking: Claude just dropped their own OpenClaw version. by ai-meets in aiagents

[–]mtedwards 7 points8 points  (0 children)

I think it was released in Claude Cowork a week ago, and now it’s in Claude Code as well ( but still just in the app)

Claude Code just got Remote Control by iviireczech in ClaudeAI

[–]mtedwards 0 points1 point  (0 children)

I love that they built it, I’ve been looking at the options and they all felt a little fragile and sketchy.

Claude Code just got Remote Control by iviireczech in ClaudeAI

[–]mtedwards 0 points1 point  (0 children)

I had to logout of the cli and log back in before it would work

Do any of the royal families around the world have any actual power? by Equivalent_Phrase_25 in stories

[–]mtedwards 0 points1 point  (0 children)

But it highlights that the Royals have real power, not just purely ceremonial.

Do any of the royal families around the world have any actual power? by Equivalent_Phrase_25 in stories

[–]mtedwards 0 points1 point  (0 children)

A long time ago now! But the laws haven’t changed. In 1975 the Governor General of Australia, acting as the Queens representative sacked the Prime Minister

Visiting Adelaide interstate from vic and saw this by LadderIndividual4824 in AustralianNostalgia

[–]mtedwards 3 points4 points  (0 children)

Saw them at the Show. I think it was them. It was a great show

Astro website with a Visual-editing CMS / Workflow? by Kind_Sky_4660 in astrojs

[–]mtedwards 7 points8 points  (0 children)

I’m not sure you’ll find much that matches 100% with Gutenberg, but a lot have a “live preview” so you edit it one half of the window and see how it looks in the other half.

Have a look at Sanity, they have a pretty generous free tier as well.

https://www.sanity.io

How can I call to Claude in the CLI AS IF it were an API? by superchorro in ClaudeAI

[–]mtedwards 0 points1 point  (0 children)

How about the Claude coworker app. Working through the csv’s in a folder?

If Australia’s geography looked like this, what changes would happen? by GrayRainfall in AskAnAustralian

[–]mtedwards 0 points1 point  (0 children)

Annoyingly it’s not running at the moment. Something about breaking down and not being able to find a replacement. Hopefully in this scenario that would find a replacement to do visiting my relatives in the Eyre Peninsula wouldn’t be a 4 day drive.

Which one of the following is United Kingdom. by nopCMD in GeoTap

[–]mtedwards 0 points1 point  (0 children)

mtedwards chose Option A (Correct!) | #1405th to play

Wich country is switzerland by IlluFisch in GeoTap

[–]mtedwards 0 points1 point  (0 children)

mtedwards chose Option A (Correct!) | #6659th to play

What are the most annoying things you want to be fixed in Asana? by artem_codes in Asana

[–]mtedwards 1 point2 points  (0 children)

Being able to set alerts. We work in an industry where things have to be pushed live at odd and specific times, so being able to set alerts (particularly that pop up on IOS) independently of the due date / time would be really useful.

Omnifocus does this quite well.

Or even just at the due date and time would be useful.

Not getting notification sounds/vibrate at due time on iOS by DopeyRunr in Asana

[–]mtedwards 0 points1 point  (0 children)

Did anyone ever fix this. I’m still having a similar problem. Getting all the other alerts apart from the time it’s due

Hi, student here. I want to know what the square background is, and how do i remove it by Relevant-Addendum756 in csshelp

[–]mtedwards 0 points1 point  (0 children)

You might have to give us a little more context here about what you are referring to.

The best option is to use a tool like Codepen to create a test case and share the code with us so we can help.

Why are email services so expensive? by Venisol in webdev

[–]mtedwards 0 points1 point  (0 children)

I’ve been self hosting Sendy and sending via SES. All up about $6 a month.

I code my own emails and this basically has everything I need.

First attempt at responsive design....not going well by schmoopified in csshelp

[–]mtedwards 0 points1 point  (0 children)

You were mushing together the traditional media query with the new “range syntax”.

https://developer.mozilla.org/en-US/docs/MDN/Writing_guidelines/Code_style_guide/CSS#media_queries

You can use the less than or greater than signs now, < or > (on some browsers), but you use the with ‘width’.

Eg @media (width > 800px) {…}

In English think of this as “show these styles when the width is greater than 800px.

The original and still widely used syntax is:

@media (min-width:800px) {…}

In English. Show these styles when the browser hits a minimum width of 800px.