Writing as an Art and a Job
Steve thinks communication is a core sill for technology people, especially in the age of AI.
2026-03-06
60 reads
Steve thinks communication is a core sill for technology people, especially in the age of AI.
2026-03-06
60 reads
This week I had the opportunity to join many of the U.S.-based Redgaters in Austin to talk about 2024 plans, hear from the product teams, and have some much-needed fellowship. One thing was particularly clear as I listened to various leaders and product managers – the customer drives everything we do. And I have to […]
2024-01-20
49 reads
Communication can be challenging when we don't work closely with others. Steve draws a comparison with a popular children's show in the US.
2023-08-14
133 reads
Steve notes that sometimes we message too often, but that's a human problem, not a tool issue.
2023-06-02
147 reads
The use of messaging dominates communication for Steve. Can you say the same thing?
2022-09-23
83 reads
2020-05-18
134 reads
Steve notes we all need to learn to communicate and share information better, especially while we are remote.
2020-05-14
112 reads
After installing Microsoft Teams, Steve has a bit of communication overload.
2019-05-13
202 reads
2016-05-02
88 reads
By HeyMo0sh
As someone who works in DevOps, I’m always focused on creating systems that are...
By Brian Kelley
I am guilty as charged. The quote was in reference to how people argue...
By Steve Jones
Learn how to tie a bowline knot. Practice in the dark. With one hand....
Comments posted to this topic are about the item Restoring On Top II
Comments posted to this topic are about the item SQL Art 2: St Patrick’s...
Comments posted to this topic are about the item Breaking Down Your Work
I have a database, DNRTest, that has a number of tables and other objects in it. The other day, I was trying to mock up a test and ran this code on the same server:
-- run yesterday CREATE DATABASE DNRTest2 GO USE DNRTest2 GO CREATE TABLE NewTable (id INT) GOToday, I realize that I need a copy of DNRTest for another mockup, and I run this:
-- run today USE Master BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO RESTORE DATABASE DNRTest2 FROM DISK = 'dnrtest.bak' WITH REPLACEWhat happens? See possible answers