pegkerr: (All was well)
pegkerr ([personal profile] pegkerr) wrote2026-03-20 04:44 pm

2026 52 Card Project: Week 11: Hurkle Durkling

There is an archaic Scottish term that I have become rather fond of as of late: "hurkle durkling," which refers to the practice of lingering in bed, long past the hour that one should be getting up and busy with daily affairs.

This past weekend, the Twin Cities experienced a snowstorm. I ran errands and went to the grocery store (what a madhouse) on Saturday.

On Sunday, everything was cancelled. The newspaper was cancelled. Church was cancelled. All the stores were closed. The day involved some serious lounging about. I did eventually get out and shovel the front and back walk. I had a kind neighbor who took his snowblower to my driveway and the sidewalk in front of the house, however, so I managed to avoid the worst of the chore.

The snow wasn't as deep as some of the weather predictions had speculated it might be, but it was enough to grind the city to a halt. And it turned out that I didn't mind. A quiet descended over everything: call it winter's last hurrah.

Yes, indeed: I found that I really didn't mind a bit.

Image description: background: a city street where the road and all the parked cars are covered with snow. Lower third: rumpled bed covers with a tray holding a teapot and cookies resting on top. A woman's feet in red and white striped socks are stretched out beside the tray.

Hurkle Durkling

11 Hurkle Durkling

Click on the links to see the 2026, 2025, 2024, 2023, 2022 and 2021 52 Card Project galleries.
summersgate: (Default)
summersgate ([personal profile] summersgate) wrote2026-03-20 04:14 pm

friday later

DSC_0843.jpg
Art a day today: Two Blue Chairs. Dave's garden shed in the background.

We didn't end up going to the basement. Dave wanted to go to an auction so I was spared another day of having to deal with that stuff.
summersgate: (Default)
summersgate ([personal profile] summersgate) wrote2026-03-20 09:26 am

friday

DSC_0841.jpg
This is a picture of the entity that I took this morning through the window screen (you can see the screen if you look for it). Thinking I'll make one of those overpainted photo artworks with it tomorrow. When I print the pictures off I need to wait a day for the ink to dry before I can cover them with clear acrylic, otherwise the photo ink lifts and moves. I probably don't have to do the clear acrylic cover - the image would be crisper without it but I want the final surface to look homogenous.

Dave has a pile of sycamore wood stacked in the basement and over the years it has become covered with many things that are mine. Or things that we don't use that belonged to my parent's house and I can't seem to get rid of them. There are also about 6 lifesize cardboard halloween figures that Chloe made for an art show down in Pittsburgh right after she got out of college. And other big works of art that she made. Can't throw that away. We must find a better way to store them. Anyway, today I told Dave I'd help him move stuff around down there, and maybe I'll find some things to let go of too. Dave wants to open up the stack of wood so he can find a few pieces that he can use to make slats for that bench that used to sit beside the creek. I haven't nagged about getting it done at all but the broken bench is sitting right outside the back door so he sees it a lot. It'll be nice to have a bench beside the creek again. I used to sit on it every time I went down there. Just take a moment to rest and watch the water flow by.
ethicsiscool: (Default)
ethicsiscool ([personal profile] ethicsiscool) wrote2026-03-19 10:02 pm

My Answers for HWproj4

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Source+Sans+3:wght@300;400;600&display=swap');
 
:root {
--bg-primary: #09090f;
--bg-secondary: #111119;
--bg-card: #16161f;
--text-primary: #e8e8ec;
--text-secondary: #9898a6;
--accent: #00c2ff;
--accent-dim: rgba(0, 194, 255, 0.15);
--accent-glow: rgba(0, 194, 255, 0.4);
--warning: #ff4f4f;
--font-heading: 'Syne', sans-serif;
--font-body: 'Source Sans 3', sans-serif;
}
 
body {
background-color: var(--bg-primary);
color: var(--text-primary);
font-family: var(--font-body);
line-height: 1.7;
font-size: 17px;
}
 
nav {
position: fixed;
top: 0;
width: 100%;
background-color: rgba(9, 9, 15, 0.85);
backdrop-filter: blur(10px);
z-index: 100;
padding: 1rem 2rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
 
nav ul {
display: flex;
justify-content: center;
gap: 2.5rem;
list-style: none;
}
 
nav a {
color: var(--text-secondary);
text-decoration: none;
font-family: var(--font-heading);
font-size: 0.85rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
transition: color 0.3s ease;
}
 
nav a:hover {
color: var(--accent);
}
 
section {
padding: 5rem 2rem;
max-width: 960px;
margin: 0 auto;
}
 
section h2 {
font-family: var(--font-heading);
font-size: 2rem;
font-weight: 800;
margin-bottom: 1.5rem;
color: var(--text-primary);
}
 
#home {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding-top: 6rem;
}
 
#home h1 {
font-family: var(--font-heading);
font-size: 4.5rem;
font-weight: 800;
letter-spacing: -0.02em;
margin-bottom: 1rem;
background: linear-gradient(135deg, var(--accent), #a78bfa);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
 
#home p {
max-width: 580px;
font-size: 1.1rem;
color: var(--text-secondary);
line-height: 1.8;
margin-bottom: 2rem;
}
 
#home a {
display: inline-block;
padding: 0.75rem 2rem;
background-color: var(--accent);
color: var(--bg-primary);
font-family: var(--font-heading);
font-weight: 700;
text-decoration: none;
border-radius: 4px;
font-size: 0.9rem;
letter-spacing: 0.05em;
transition: box-shadow 0.3s ease, transform 0.2s ease;
}
 
#home a:hover {
box-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-dim);
transform: translateY(-2px);
}
 
#overview {
border-left: 3px solid var(--accent);
padding-left: 2rem;
margin-left: auto;
margin-right: auto;
}
 
#overview p {
color: var(--text-secondary);
margin-bottom: 1rem;
}
 
#stats {
text-align: center;
}
 
#stats ul {
list-style: none;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1.5rem;
margin-top: 2rem;
}
 
#stats li {
background-color: var(--bg-card);
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 8px;
padding: 2rem 1.5rem;
flex: 1 1 260px;
max-width: 300px;
font-size: 1rem;
color: var(--text-secondary);
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
transition: border-color 0.3s ease;
}
 
#stats li:hover {
border-color: var(--accent-dim);
}
 
#site-sections {
text-align: center;
}
 
#site-sections article {
background-color: var(--bg-card);
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 8px;
padding: 2rem;
margin-bottom: 1.5rem;
text-align: left;
transition: transform 0.2s ease, box-shadow 0.3s ease;
}
 
#site-sections article:hover {
transform: translateY(-3px);
box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}
 
#site-sections h3 {
font-family: var(--font-heading);
font-size: 1.25rem;
font-weight: 700;
color: var(--accent);
margin-bottom: 0.5rem;
}
 
#site-sections p {
color: var(--text-secondary);
margin-bottom: 1rem;
}
 
#site-sections a {
color: var(--accent);
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
letter-spacing: 0.04em;
}
 
#site-sections a:hover {
text-decoration: underline;
}
 
footer {
text-align: center;
padding: 2rem;
color: var(--text-secondary);
font-size: 0.85rem;
border-top: 1px solid rgba(255, 255, 255, 0.06);
}
 
@media (max-width: 700px) {
nav ul {
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
}
 
#home h1 {
font-size: 2.8rem;
}
 
#stats ul {
flex-direction: column;
align-items: center;
}
 
section {
padding: 3rem 1.25rem;
}
}
 
Explanation: This is my CSS file that covers the full homepage styling. I choose a dark theme with a cyan accent and used CSS variables throughout in case I decide on swapping colors around later. I established a fixed navbar that stays visible as the user scrolls through the website. The stats section uses the flex-wrap property so the cards stack on smaller screens. Other touches I included were gradient and glowing effects on text and buttons. Media queries were also included for smaller screens. I used AI to refine the CSS I wrote out. It gave me suggested design choices for things like colors and text sizes and also helped me debug some styling issues that came up (say, things like overflow issues). In my next project, I plan on including a link to the website so the HTML and linked CSS become visible. I also plan on working out the other site pages. 
summersgate: (Default)
summersgate ([personal profile] summersgate) wrote2026-03-19 06:32 pm

thursday

2026-3-19Old-elms.jpg
I got so many compliments on that overpainted photo I did the other day of the entity that I thought I'd try that technique again. I took this pic yesterday morning of a row of old elm trees that lines the edge of the property. The pet cemetery is on the hill right behind the trees. If it would be possible I'd like to be "green burial" buried here too. It's on Jules' land though. So far he doesn't like the idea that much. Maybe he''ll come around someday.

We had women's group today. All 5 of us, which is always great. The group has gone through many names and lost some members over the years. We were trying to remember all the names that we used to call the group. First I think it was called writers group, then sister circle, art group and now women's group. It could be called the lunch club now I suppose. Going out to lunch has become a regular feature. Though I think next week I'm going to bring my big box of words and maybe we can talk or write about thoughts that come up from the words - go back in spirit to the old writer's group.
allezhop: (harmony)
allezhop ([personal profile] allezhop) wrote2026-03-19 04:36 pm
Entry tags:

My home spa in progress

started putting together my vibroacoustic bed - a setup where you listen to relaxing music /binaural beats and feel the frequency vibrate through the bed for relaxation purposes - build last night, and it went pretty well. I got farther than I expected. I was just planning to get everything out of the boxes and make sure I had the parts. Before I knew it, I was connecting the bass shaker to the amp, and the amp to the laptop. Then I cut up just enough of my futon fabric to expose wood to mount the bass shaker. (This wasn't perfect, but it works great.)

Then I hit a wall, trying to figure out how to get the amp to pick up from the USB-C, and my headphones to also play the music. I tried a work around using Sound Mixer, but that didn't work, either. So I got as far as downloading Soundmeeter, but my brain was feeling frazzled by that point; and I had already made way more progress with it than I had planned.

When I got home from work today, it took less than 2 minutes to get everything running the way that I wanted it to ! Definitely pays off to wait till I'm less frazzled. (Give that brain a break from head injury recovery, I guess.) And then I had 15 minutes of deep relaxation, because it really felt so good. ( I would have done more, but I have CPR training tonight. So tomorrow will be in a whole hour.)

I'm really pleased with how it worked out... and that I can do this whenever I want at home, instead of driving 20 minutes to the place and only getting to do it once a month for free. 
 
summersgate: (Default)
summersgate ([personal profile] summersgate) wrote2026-03-18 07:04 pm
Entry tags:

wednesday later

2026-3-18Love.jpg
Love. Black scratch art paper.
summersgate: (Default)
summersgate ([personal profile] summersgate) wrote2026-03-18 09:19 am
Entry tags:

wednesday

DSC_0837.jpg
She found and accepted it pretty quickly and now it's her favorite spot.

Today is Meals on Wheels day when I help Candy navigate to her clients' houses.

Roswell has a flat tire and Dave went into town to help with it.

Cold. Only 10F this morning. But the roads are clear so that's good.
summersgate: (Default)
summersgate ([personal profile] summersgate) wrote2026-03-17 08:48 pm

tuesday later

DSC_0820.jpg
Fresh White. A picture that I took through the window this morning of The Entity, then I printed it, drew black lines and painted white ink over it.

IMG_20260317_182635493.jpg
Andy, and a new bed I crocheted for Skye using super bulky yarn. After I took this pic I put it in a spot that Skye likes by the wall under the table. Now to see how long it'll take before she uses it.

IMG_20260317_185916329.jpg
On our afternoon walk down back Dave took a picture of me with Grandmother Sycamore.

IMG_20260317_190906193_HDR.jpg
After coming back I took this pic of our's and Andy's tracks in the fresh snow heading to the creek.  
summersgate: (Default)
summersgate ([personal profile] summersgate) wrote2026-03-17 08:39 am

tuesday

DSC_0817.jpg
I finished this little set of toys in the front that I want to give to Kathy's great-grandson Zaden when I get to Florida next month. Zaden will be around 15 months old then and I'm imagining that he'll like throwing a ball. They are lightweight so they can't hurt anything. Yesterday I got a book of patterns for making finger puppets. That's the next thing I want to tackle. I'm thinking that doing crochet patterns is good for my brain. Not exactly easy for me. So many abbreviations in this new book. And they aren't in american crochet terms so there is transposing needing to be done in my brain. Maybe it'll help hold off the senility.

It's in the low 20s this morning and we have about 2 inches of snow on the ground. My plan for the day: write in my paper journal, art-a-day and then crochet. I've been watching Monk. I watched the whole series a couple years ago but I'm watching it again. Laughter is good.
summersgate: (Default)
summersgate ([personal profile] summersgate) wrote2026-03-16 08:25 pm

monday later

This afternoon it turned cold and started to snow. I wimped out on taking a walk down back with Dave and Andy. I knew Rainy didn't want to go either. I convinced Dave to take his phone and get pictures of the snow for me. He said, what would I take pictures of? Just wait till you see something you like and take a picture of it - that's what I do. I'll post them and make you famous on LJ.

Pictures of things that Dave liked the look of:

IMG_20260316_182518128_HDR.jpg
Looking up towards the house. His garden on the left. Those are some fruit trees he planted during our recent warm spell in the foreground.

IMG_20260316_182715605_HDR.jpg
Grandmother Sycamore in the very center. A view of the old cottage lawn. That dead tree on the ground fell down yesterday in the high wind.

IMG_20260316_183208660_HDR.jpg
Andy at the lake. I like how he's collecting snow on his back.

I'm watching the movie Roofman. I'm about 3/4 of the way through it. I just don't see how it can turn out well for him but I'm still hoping. 
summersgate: (Default)
summersgate ([personal profile] summersgate) wrote2026-03-16 12:35 pm
Entry tags:

monday

DSC_0814.jpg
Face (again). The way my book is laid out today I have a piece of blue glassine paper that needed art put on it. It just happened to be over that face I drew on the black page the day before yesterday.

We dropped off our taxes this morning in Titusville with our tax lady. We've known Kathy for 30+ years. It's kind of interesting to see someone in one year increments, over and over as the years go by. See the small changes as we age. I can imagine that she sees the same in us. People always talk of seeing big changes in the little ones as they grow up but as we get older, past middle age at some point the changes start to come fast again. Not that Kathy doesn't look good - she looks great for her age. It's just me noticing.

A windy day today. You can hear the sky moaning. Not a good day to be in the woods with the danger of limbs falling.
ethicsiscool: (Default)
ethicsiscool ([personal profile] ethicsiscool) wrote2026-03-16 12:32 am

My Answers to HWcase4, Q1

Answer:

The source of my case is: https://www.eccouncil.org/code-of-ethics/

Eight facts about this case are:
  1. The EC-Council (International Council of E-Commerce Consultants) is a globally recognized cybersecurity certification body founded in 2001. The organization's stated mission is "building a culture of security" across the cybersecurity industry. 
  2. EC-Council requires all certified members to agree to and uphold its code of ethics as a condition of certification. These guidelines cover a wide range of professional conduct, and a violation of them can cost a member their certification. 
  3. The code strictly governs how members handle private client information. Members are prohibited from collecting, selling, or transferring client's personal data to any third party without the client's consent. 
  4. Members are required to only work within their proven areas of expertise and be upfront about their limitations. In other words, a certified professional cannot take on a project they are unqualified for in the pursuit of something like business gains. Honesty about one's education and experience is necessary.  
  5. Members are prohibited from engaging (or even associating) with black hat hacking activities. (Black hat hacking refers to malicious hacking done for personal gain or causing harm, the opposite of this is white hat hacking, also called ethical hacking). Penetration testing (trying to break and get into a system) must be done within approved limits in a non-harmful manner. 
  6. Members are barred from joining underground hacking communities that promote malicious activity. Sometimes, there is a fine line between cybersecurity research communities and shady hacking groups. Any community associated with black hat hacking is to be avoided. 
  7. In regards to financial integrity, members are expected to avoid bribery, double billing, and other dishonest financial practices. Members must also disclose any conflicts of interests (where personal interests may interfere with professional duties) to all parties involved. 
  8. Members are required to actively contribute to the growth of cybersecurity and e-commerce profession. This includes following practices like continuous self-studying, sharing knowledge with other members, and promoting public awareness of safe cybersecurity practices. 

Four questions to ask about this case are: 

  1. The code requires members to be honest about their skill limits. Do you think most professionals actually follow this, and who should be responsible for checking that someone is truly qualified before being assigned a task or hired? 
  2. Members are not allowed to associate with malicious hackers. Is it realistic to expect ethical hackers to completely separate themselves from these communities? Consider that they often need to understand how malicious hackers think in order to do their job well. 
  3. If a professional uses a pirated/grey-market software (this is not uncommon in the tech industry) to discover a serious vulnerability, does the good outcome justify how the tool was obtained? There are two relevant ethical appeals to consider here. 
  4. The code states that members should not be convicted of any crimes. Some famous figures in cybersecurity have criminal records but have built successful, legitimate careers. Does a past conviction automatically disqualify someone from being a certified ethical hacker? 

Three additional standard questions: 

  • What does virtue ethics say about this case?
  • What does utilitarianism say about this case?
  • What does deontology say about this case?

summersgate: (Default)
summersgate ([personal profile] summersgate) wrote2026-03-15 10:15 pm
Entry tags:

sunday later

IMG_20260315_164956377_HDR.jpg
Chloe painting on her picture at the Pickers and Painters.

IMG_20260315_165026126.jpg

DSC_0813.jpg
My picture: Spring Energy. I loved listening to the live music while I lost myself in doodle painting. 
summersgate: (Default)
summersgate ([personal profile] summersgate) wrote2026-03-15 11:03 am

sunday

Some of the places to sit down back:

IMG_20260314_170239854_HDR.jpg
Yesterday, first I put the chairs beside the creek and sat there a while.

IMG_20260314_170726404_HDR.jpg
But I thought it wouldn't be a good idea to leave them beside the creek in case it got windy. They might blow into the water and get washed away so I moved them up here to beside the cottage foundation and sat for a while enjoying that view.

IMG_20260314_170929560_HDR.jpg
Another place to sit in the woods on the walk back to the house. I can't wait till summer gets here and we can enjoy these spots even more. Summer is my season.

This afternoon we are going to Brookville for Pickers and Painters. Should be interesting. Chloe and her boyfriend Jimmy are a part of the people putting it on. They hand out canvases for you to paint on while you listen to live music. I think I will take my everything book and use it instead of getting a canvas.
summersgate: (Default)
summersgate ([personal profile] summersgate) wrote2026-03-14 04:18 pm

saturday

DSC_0812.jpg
Face. If no other ideas come to mind for what to draw, then sketch a face.

It's a cold day - upper 30s, but there's some sun at least.

I seem to be functioning at a slower rate than before the norovirus. It's now Life BN (Before Noro) and Life AN (After Noro). I have low expectations and that's okay.

I've started to shop more often at our nearby Family Dollar store. It's about 4 miles from home and that's pretty good. It's like a mini walmart with EVERYthing. It even has lawn furniture. I bought 2 plastic lawn chairs when I was in there this morning. I already had a bunch of the same kind of chairs that I bought years ago and they're not bad. You can't have enough places to sit when you are down back I say. I've been missing having a chair right beside the creek. We had a bench there last year but it was old and one of the seat slats broke. Dave will fix it one of these days but I don't want to nag so I'm just going to put the two chairs that I got at Family Dollar today in that spot by the creek. I think I will carry them down now...
mark: A photo of Mark kneeling on top of the Taal Volcano in the Philippines. It was a long hike. (Default)
Mark Smith ([staff profile] mark) wrote in [site community profile] dw_maintenance2026-03-14 01:04 pm

Performing some traffic maintenance today

Happy Saturday!

I'm going to be doing a little maintenance today. It will likely cause a tiny interruption of service (specifically for www.dreamwidth.org) on the order of 2-3 minutes while some settings propagate. If you're on a journal page, that should still work throughout!

If it doesn't work, the rollback plan is pretty quick, I'm just toggling a setting on how traffic gets to the site. I'll update this post if something goes wrong, but don't anticipate any interruption to be longer than 10 minutes even in a rollback situation.

summersgate: (Default)
summersgate ([personal profile] summersgate) wrote2026-03-13 06:42 pm

friday later

DSC_0810.jpg
I love rainbows. I got it done and hung this afternoon. I think I'll keep it for myself, I like it so much just as it is.

DSC_0811.jpg

It's been a dark and windy, rainy day outside today.
pegkerr: (All we have to decide is what to do with)
pegkerr ([personal profile] pegkerr) wrote2026-03-13 01:18 pm

2026 52 Card Project: Week 10: Manager

As I have referred to obliquely before, I am Doing Something with regard to the events in Minneapolis/St. Paul.

Signal


I was pulled in as a volunteer, oh, perhaps a month and a half ago. I was asked to set up the project, and despite my genuine nervousness at the responsibility I was handed, I did. I analyzed what needed to get done, wrote documentation to describe the process, and handled it alone for three days. Then more volunteers were added, and I was asked to train them. Then the team was doubled again, and I had to train them, too, and incorporate them into the team. Then I had to set up a couple of subteams, hold standup meetings, and start thinking about process, team building, donor relations, technological security, resource sharing, and budget.

Rather to my astonishment, now that I have retired, I have become for the first time in my career, no kidding, an actual manager, overseeing a team of ten people.

Over the last week, things have ratcheted up, and the phrase "It's like herding cats" has definitely floated across my mind.

I've been told I'm rather good at it. But it's a bit daunting. I'm definitely spending more hours at it than I spent at my job at the Synod.

Wow. I'm an actual manager. Who knew?

Image description: Lower third: a double monitor showing a world map, and a hand holding a phone, also showing a map. Center: a hand holds a marker writing the words "Project Planning" in red letters. Just below stands a row of cats, lurching forward in an uneven line. Upper right: a partial view of a woman with the word "Manager" superimposed over her. Upper left: Signal icon.

Manager

10 Manager

Click on the links to see the 2026, 2025, 2024, 2023, 2022 and 2021 52 Card Project galleries.
summersgate: (Default)
summersgate ([personal profile] summersgate) wrote2026-03-13 12:07 pm

friday

DSC_0798a.jpg
We had a dusting of snow this morning. The daffodils won't be giving up, I'm pretty sure about that.

DSC_0801.jpg
Going Over the Rainbow. This started out innocently enough as a little story picture which I thought would go with the rainbow, sun and cloud that I'm crocheting as a mobile for Rowan. (I do love rainbows). A girl wants to visit the rainbow. And I thought I was done with it, but the middle part was bare and needed something. Then it suddenly turned into a story of the aftermath of war. I know that there is war and awful fighting SOMEwhere on earth ALL the time. It's a fact of life for humans to be fighting and killing each other, I guess. It's what humans do. But I am having a hard time resting easy in this country which is such a big part of the latest killing. As a species we should be done with this by now wouldn't you think? That man got elected on the promise of no more wars. Then he almost immediately changes the name of the Defense Department to the Department of War and starts to throw his weight around to start fights. He has lied to everyone from the beginning. But they still want to believe in him. It's all so outrageously stupid and evil.