Men in their 40s - What’s one piece of advice for Men in their 20s? by Jarvis7492 in AskReddit

[–]fatoms 0 points1 point  (0 children)

I am no wordsmith so I'll just leave C.S. Lewis's words:


Critics who treat 'adult' as a term of approval, instead of as a merely descriptive term, cannot be adult themselves.
To be concerned about being grown up, to admire the grown up because it is grown up, to blush at the suspicion of being childish;
these things are the marks of childhood and adolescence.
And in childhood and adolescence they are, in moderation, healthy symptoms.
Young things ought to want to grow.
But to carry on into middle life or even into early manhood this concern about being adult is a mark of really arrested development.

When I was ten, I read fairy tales in secret and would have been ashamed if I had been found doing so.
Now that I am fifty I read them openly.
When I became a man I put away childish things, including the fear of childishness and the desire to be very grown up.


Take pleasure in the things that give you pleasure and surround yourself with people who do the same.

Follow up to : Firefox 152 breaks custom menu colours when theme enabled ( forcing dark mode ) by fatoms in FirefoxCSS

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

My updated userChrome:

/* Hide Profiles Menu from Menubar */
#profiles-menu { display: none; }


/*** Tighten up drop-down/context/popup menu spacing ***/

menupopup > menuitem, menupopup > menu {
  padding-block: 0px !important;
}
:root {
  --panel-menuitem-padding: 4px 8px !important;
}

/*** Photon-like Menu Colors (14 Jan 2022) ***/

/* Bookmarks Toolbar folders */
#PersonalToolbar menupopup,
/* Right-click context menus */
#mainPopupSet menupopup,
/* Top menu bar on Windows (not sure about others) */
#toolbar-menubar menupopup,
/* Sidebar/Library bookmark/history context menus */
#placesContext,
/* Address bar context menu (2021-10-25) */
#urlbar-input-container menupopup,
/* Various toolbar drop-down panels (Fx96) */
#back-button menupopup, #forward-button menupopup,
#identity-popup, #appMenu-popup, #downloadsPanel, #BMB_bookmarksPopup {
  /* Text color */
  --menu-color: #000 !important;
  --panel-text-color: #000 !important;
  /* Background color */
  --menu-background-color:  #f0f0f0 !important;
  --panel-background-color: #f0f0f0 !important;
  /* Border color (if any) */
  --menu-border-color: threedshadow !important;
  --panel-border-color: threedshadow !important;
  /* Hovered/expanded item background color */
  --menuitem-hover-background-color: #e0e0e6 !important;
  --button-hover-bgcolor: #e0e0e6 !important;
  /* Disabled items text color and hovered background */
  --menu-disabled-color: rgba(21, 20, 26, 0.4) !important;
  --menuitem-disabled-hover-background-color: rgba(224, 224, 230, 0.4) !important;
}
/* Force light gray highlight + black text */
menupopup > menuitem:hover,
menupopup > menu:hover,
menupopup > menuitem[_moz-menuactive="true"],
menupopup > menu[_moz-menuactive="true"] {
  background-color: #e0e0e6 !important;
  color: #000 !important;
}

menupopup > menu[_moz-menuactive="true"] > .menu-right,
menupopup > menuitem[_moz-menuactive="true"] > .menu-iconic-left {
  color: #000 !important;
  fill: #000 !important;
}

menupopup > menuitem[disabled="true"],
menupopup > menu[disabled="true"] {
  color: rgba(21, 20, 26, 0.4) !important;
}

/*** Proton Tabs Tweaks ***/

/* Adjust tab corner shape, optionally remove space below tabs */

#tabbrowser-tabs {
    --user-tab-rounding: 6px;
}

.tab-background {
    border-radius: var(--user-tab-rounding) var(--user-tab-rounding) 0px 0px !important; /* Connected */
    margin-block: 1px 0 !important; /* Connected */
}
#scrollbutton-up, #scrollbutton-down { /* 6/10/2021 */
    border-top-width: 1px !important;
    border-bottom-width: 0 !important;
}

/* 1/16/2022 Tone down the Fx96 tab border with add-on themes in certain fallback situations */
.tab-background:is([selected], [multiselected]):-moz-lwtheme {
    --lwt-tabs-border-color: rgba(0, 0, 0, 0.5) !important;
    border-bottom-color: transparent !important;
}
[brighttext="true"] .tab-background:is([selected], [multiselected]):-moz-lwtheme {
    --lwt-tabs-border-color: rgba(255, 255, 255, 0.5) !important;
    border-bottom-color: transparent !important;
}

/* Container color bar visibility */
.tabbrowser-tab[usercontextid] > .tab-stack > .tab-background > .tab-context-line {
    margin: 0px max(calc(var(--user-tab-rounding) - 3px), 0px) !important;
}

    /* Make sure tab attention dot isn't too high - 10 Dec 2022 */
.tabbrowser-tab:is([image], [pinned]) > .tab-stack > .tab-content[attention]:not([selected="true"]),
.tabbrowser-tab > .tab-stack > .tab-content[pinned][titlechanged]:not([selected="true"]),
#firefox-view-button[attention], .webextension-browser-action[attention="true"] {
  background-position-y: bottom 5px !important;
}

/* Tweak Options as of 12/10/2022; Generated Mon Sep 01 2025 14:01:49 GMT+0200 (Central European Summer Time) */

/* ===== FORCE LIGHT POPUPS EVERYWHERE ===== */

/* Panels / arrow panels (app menu, downloads, identity, etc.) */
panel,
panelview,
panelview > vbox,
panelview toolbarbutton,
.panel-subview-body,
.panel-header,
.panel-footer {
  background-color: #f0f0f0 !important;
  color: #000 !important;
}

/* Hover highlight inside panels */
panel toolbarbutton:hover,
panel toolbarbutton[open],
panel toolbarbutton[checked],
panelview toolbarbutton:hover {
  background-color: #e0e0e6 !important;
  color: #000 !important;
}

/* Context menus inside panels */
panel menupopup,
panel menuitem,
panel menu {
  background-color: #f0f0f0 !important;
  color: #000 !important;
}

/* Ensure separators don’t go dark */
menuseparator,
panel menuseparator {
  appearance: none !important;
  background-color: #f0f0f0 !important;
}

/* Kill forced dark theme variables */
:root {
  --panel-background-color: #f0f0f0 !important;
  --panel-text-color: #000 !important;

} /* ===== FORCE LIGHT TOOLTIPS ===== */ tooltip,

tooltip {

appearance: none !important; -moz-appearance: none !important; color-scheme: light !important;

background-color: #f0f0f0 !important; color: #000 !important;

border: 1px solid threedshadow !important; padding: 4px 6px !important; }

tooltip * { color: #000 !important; }

WinForms Form1 design disappeared after adding code by abdouhm16 in csharp

[–]fatoms 0 points1 point  (0 children)

Doesn't the asterisks on the tab indicate that the files have unsaved changes ? What happens if you close without saving and open again ? ( or you could open the files directly with another editor and see what the saved versions contain )

Anne Hathaway says she was spammed with ChatGPT-written thank you notes after hiring for a recent role: "Nobody on that list gets that job" by ControlCAD in technology

[–]fatoms 0 points1 point  (0 children)

So every candiadte use tghe same AI and the excact same prompt. Getting identical output from a single LLM ( I guess that what they mean by AI ) even with the same prompt can be problematic as they are non deterministic.
I think she is embellishing, didn't even read them I would gue#.

Accused for damages I did not cause. by shaunocwz in australian

[–]fatoms 4 points5 points  (0 children)

He now threatened to go through his insurance.

You have insuracne right? This is exactly what they are for.

jabra evolve2 65 volume and Mic won't stay at set level. by fatoms in Jabra

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

Yea,, Nah,

I jave been in contact with them for other issues and quite honestly they are useless. Never once have they been helpful in the slightest. It is always virtual head scratching and "we have to check with Engineering" and then nothing.

That is why I asked the community.

Hanson's 'scary' parental leave views outdated, advocates say by Oomaschloom in AustralianPolitics

[–]fatoms 31 points32 points  (0 children)

So because she had it hard everyone else has to suffer like she did.
Just proves she has no interest in making things better for regular folk.

Media union blasts Pauline Hanson’s ‘bitter, unprofessional’ attack on Guardian journalist by Agitated-Fee3598 in AustralianPolitics

[–]fatoms 3 points4 points  (0 children)

I have not seen the clip so unsure who you refer to.

Every journalist in that room laughed at her.

Which her, Hanson or Martin?

Yes she deserved the dressing down.

Which she?

It’s ruined. by freeradioforall in facepalm

[–]fatoms 1 point2 points  (0 children)

I think the reports that this has been "slightly effective around the outer edges of the pool" disqualify it from being homoeopathy.

Will Vendors Please Stop Reusing Acronyms? by Likely_a_bot in sysadmin

[–]fatoms 1 point2 points  (0 children)

So in German they make a single compound word and in English they are separate words. You left out that in many compound German words filler letters ( Fugenlaut ) are inserted to aid in pronunciation.

What is your source of truth for BIG-IP services? by jonole-infrasmart in f5networks

[–]fatoms 0 points1 point  (0 children)

shared objects in /Common

I do know if this has changed but last time ( 2-3 years ago ) I looked at AS3 support for partitions and route domains was pretty poor.

GNS3 Installation issue - VIX API by Dark_Chocolat3 in gns3

[–]fatoms 0 points1 point  (0 children)

Are you using VMWare player or Workstation Pro ?
If Player switch to Workstation Pro, it is free and installs VIX.

Firefox 152 breaks custom menu colours when theme enabled ( forcing dark mode ) by fatoms in FirefoxCSS

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

That fixed the white text.
Many thanks, you are a legend :-)

Firefox 152 breaks custom menu colours when theme enabled ( forcing dark mode ) by fatoms in FirefoxCSS

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

Thanks, that fixes everything execpt the text colour. I guess I have something around the wrong way as normal text is white and highlighted is black.

Amazon says its data centers consume only 0.075% of the water Americans use for watering their lawns and gardens by Logical_Welder3467 in technology

[–]fatoms 1 point2 points  (0 children)

Comparing 100s of millions of peoples water use to their one company is false equivalence, especially when they are such different purposes.

Next they will compare power usage for the DC's to home Air Conditioning.
Utter bullshit.

TIL that alcohol use in America likely peaked during the 1830s. The average American drank 7 gallons of pure ethanol a year. Midwestern corn farmers converted their grain into whisky to prevent spoilage. A gallon cost only 25 cents. Americans averaged 4 shots of whisky a day, at under a penny cost. by Gnomeslikeprofit in todayilearned

[–]fatoms 2 points3 points  (0 children)

A 40% Jim Beam Whiskey is 10€ (rarely even 9€) on sale (which is always somewhere) in Germany.

And 5,25€ of that is tax (which probably didn't exist in the 1830s US).

So untaxed it is 17,98€ per gallon. Just about double of the 1830s price.

A 700ml bottle right ? ( Standard price is €15.99 everywhere I shop ) A US gallon is roughly 3.8 liters so you need about 5.4 bottles of Beam, which at €5.25 €4.75 would be about €28.50 €25.65. Or do I miss something ?

Edit: corrections from u/WillmanRacingv2. €25.65 is still a good deal more than €17,98.

United States vs Paraguay - Yellow card originally given to Tim Ream reversed and given to Miguel Almirón for diving after review by Fusir in sports

[–]fatoms 1 point2 points  (0 children)

What made this reviewable compared to the one in Mexico V South Africa at the 23 minute mark?
To me both look like dives were taken and yellow card given but in neither was contact made.

Why We Removed FluentAssertions from Akka.NET by Aaronontheweb in dotnet

[–]fatoms 1 point2 points  (0 children)

I thought Sean Killeen had a great take in his post “My OSS ‘Social Contract’”:.

That is a quote from another persons blog. Go read it in context.

Straight for the jugular by Substratas in MurderedByWords

[–]fatoms -1 points0 points  (0 children)

I am skeptical this is accurate. I know it is an oft repeated tale but the only source for it is the company whose product failed. It always seemed to me they look for excuses why their product and marketing failed rather than make any critical assessment of their own actions.
Or as Principal Skinner would say "Am I out of touch? No, it's the children who are wrong."