[-] mulcahey@lemm.ee 8 points 1 week ago

Yeah WTF is this art, this is NOT the way to do it.

Like, even if you don't care about antisemitism and genocide...

The Nazis were not great about privacy

[-] mulcahey@lemm.ee 29 points 2 weeks ago

Fun fact about the original Sim City: the lead developer said that they wanted to model real cities in the game, but "we quickly realized there were way too many parking lots in the real world and that our game was going to be really boring if it was proportional in terms of parking lots."

Source

34

had a convo w a friend and he would say anything except the facts

28
oopsies rule (lemm.ee)
8
Macolm rules (lemm.ee)
[-] mulcahey@lemm.ee 12 points 1 month ago

But... Why? Why would they get different restrictions on the basis of operating system?

[-] mulcahey@lemm.ee 4 points 1 month ago

This is the way.

7
submitted 1 month ago* (last edited 1 month ago) by mulcahey@lemm.ee to c/nyc@lemmy.ml

There's a great newsletter called nonsense nyc that lists great, off beat events for the coming week.

But it's only available as a newsletter, which is kinda annoying. I'd love to have it as a Google Calendar.

I could manually take the events from nonsense and add each one to my calendar, but that's a chore. Does anyone know a good way to automate it?

4
submitted 2 months ago by mulcahey@lemm.ee to c/bravebrowser@lemmy.ml

I've just started using Brave on Linux (distro info at bottom) and I have a question about keyboard shortcuts & how the browser manages active windows, because it seems to be doing something different from my last browser.

I usually use Firefox, and I've set it up so that I can open a new tab with the Mail key on my keyboard. Pressing my Mail key executes this command, opening a new tab.

xdotool getactivewindow key ctrl+t

But now I've switched to Brave browser, and that command no longer works. When I've got Brave open and I press my Mail key, nothing happens.

I've tried alternate commands:

xdotool key ctrl+t

and

xdotool getwindowfocus key ctrl+t

but no result. Does anyone know how to fix? What is Brave doing with its browser tabs/windows?

Thank you!

  • Desktop: Linux Mint Xfce 4.18.1
  • Distro: Linux Mint 21.3 Virginia
  • Ubuntu 22.04
1
submitted 2 months ago by mulcahey@lemm.ee to c/fosi@lemmy.ml

My laptop is getting a little old, but I love it and I don't want to replace it. This means: Dongles.

You know what the worst part of dongle life is? Digging through my bag trying to find the little f*ckers. You know what would be easier? If I could just mount my dongles onto the lid of my laptop and then pull them off when I need them. Maybe some kind of a rubber mount, so it's firm enough to keep them in place, but flexible enough that I can remove the dongle when I need it. Crude mockup here.

If oriented correctly, the dongles won't protrude that much, so my laptop will still fit inside a sleeve/case/etc. I'm currently using a phone mount on the back of my laptop and it hasn't made anything worse in that way.

Can someone make this, please?

The dongles that I need to mount:

  • USB-A male to USB-C female
  • Mini DisplayPort male to HDMI female
[-] mulcahey@lemm.ee 5 points 2 months ago

Who's this guy Richard Medhurst?

[-] mulcahey@lemm.ee 15 points 2 months ago

This article is from 2014

[-] mulcahey@lemm.ee 9 points 2 months ago

*governor, not senator, but otherwise correct

[-] mulcahey@lemm.ee 5 points 3 months ago* (last edited 3 months ago)

Agreed. There's a slight relief here, though: I believe this is the Times Square shuttle train, which only runs back and forth over a few stations and never goes outside. So at least you're not on this train for long and never missing a view

[-] mulcahey@lemm.ee 61 points 3 months ago

Folks are asking "Why post this here?" I get the question but I think I also get the OP, as a New Yorker who was surprised to see this ad IRL.

Most of our subway ads are for VC-funded Internet darlings (think: mattresses-by-mail, kitschy underwear, online therapy) or for some aspiring blockbuster movie from an Internet giant.

Until I saw this ad, I had never in my life seen a subway ad for a company I actually used, let alone respected.

Seeing this ad in the wild broke my brain. I have advocated for online privacy for over a decade. I have spent so much energy pushing people to use Signal. But I had never before imagined that "online privacy" was a concept that could find an audience in mass marketing.

I don't know if Mullvad will take off. But I know that seeing these ads moved me. I felt like maybe, MAYBE, our movement is breaking through.

1
submitted 3 months ago* (last edited 3 months ago) by mulcahey@lemm.ee to c/firefoxcss@lemm.ee

For years, I've used a CSS trick to move my window controls (Minimize, Fullscreen, Close) from the Menu Bar into the lower toolbar, right beside my Overflow menu. (I'm on Windows 10, so these are the controls you see in the upper right window)

But suddenly, that doesn't work. My window controls are back up in the Menu Bar. That's unfortunate, because I usually hide my Menu Bar.

Can anyone review my code and tell me what needs to change? Thank you!

/* Move Window Control buttons to Nav Bar */

:root:is([tabsintitlebar], [sizemode="fullscreen"]) {
  --uc-window-control-width: 138px; /* Space reserved for window controls (Win10) */
  /* Extra space reserved on both sides of the nav-bar to be able to drag the window */
  --uc-window-drag-space-post: 30px; /* right side*/
}

:root:is([tabsintitlebar][sizemode="maximized"], [sizemode="fullscreen"]) {
  --uc-window-drag-space-pre: 0px; /* Remove pre space */
}

@media  (-moz-platform: windows-win7),
        (-moz-platform: windows-win8),
        (-moz-os-version: windows-win7),
        (-moz-os-version: windows-win8){
  :root:is([tabsintitlebar], [sizemode="fullscreen"]) {
    --uc-window-control-width: 105px;
  }
}

@media (-moz-gtk-csd-available) {
  :root:is([tabsintitlebar],[sizemode="fullscreen"]) {
    --uc-window-control-width: 84px;
  }
}

.titlebar-buttonbox, #window-controls{ color: var(--toolbar-color) }
:root[sizemode="fullscreen"] .titlebar-buttonbox-container{ display: none }
:root[sizemode="fullscreen"] #navigator-toolbox { position: relative; }

:root[sizemode="fullscreen"] #TabsToolbar > .titlebar-buttonbox-container:last-child,
:root[sizemode="fullscreen"] #window-controls{
  position: absolute;
  display: flex;
  top: 0;
  right:0;
  height: 40px;
}

:root[sizemode="fullscreen"] #TabsToolbar > .titlebar-buttonbox-container:last-child,
:root[uidensity="compact"][sizemode="fullscreen"] #window-controls{ height: 32px }

#nav-bar{
  border-inline: var(--uc-window-drag-space-pre,0px) solid var(--toolbar-bgcolor);
  border-inline-style: solid !important;
  border-right-width: calc(var(--uc-window-control-width,0px) + var(--uc-window-drag-space-post,0px));
}

:root[tabsintitlebar]{ --uc-toolbar-height: 40px; }
:root[tabsintitlebar][uidensity="compact"]{ --uc-toolbar-height: 32px }

#TabsToolbar{ visibility: collapse !important }

:root[sizemode="fullscreen"] #TabsToolbar > :is(#window-controls,.titlebar-buttonbox-container){
  visibility: visible !important;
  z-index: 2;
}

:root:not([inFullscreen]) #nav-bar{
  margin-top: calc(0px - var(--uc-toolbar-height,0px));
}

:root[tabsintitlebar] #toolbar-menubar[autohide="true"]{
  min-height: unset !important;
  height: var(--uc-toolbar-height,0px) !important;
  position: relative;
}

#toolbar-menubar[autohide="false"]{
  margin-bottom: var(--uc-toolbar-height,0px)
}

:root[tabsintitlebar] #toolbar-menubar[autohide="true"] #main-menubar{
  -moz-box-flex: 1;
  -moz-box-align: stretch;
  background-color: var(--toolbar-bgcolor,--toolbar-non-lwt-bgcolor);
  background-clip: padding-box;
  border-right: 30px solid transparent;
  border-image: linear-gradient(to left, transparent, var(--toolbar-bgcolor,--toolbar-non-lwt-bgcolor) 30px) 20 / 30px
}

#toolbar-menubar:not([inactive]){ z-index: 2 }
#toolbar-menubar[autohide="true"][inactive] > #menubar-items {
  opacity: 0;
  pointer-events: none;
  margin-left: var(--uc-window-drag-space-pre,0px)
}
[-] mulcahey@lemm.ee 3 points 3 months ago

One of the best things, if you can afford it: enroll in a class. Could be anything. Painting. Swimming. Dancing. Learning something new alongside other people really puts your mind in a different state

[-] mulcahey@lemm.ee 7 points 3 months ago

Hey, remember that time that reddit released a list of the most "reddit-addicted cities" and the #1 spot was a US Air Force base?

It's ok if you forgot, because reddit quickly took the post down.

https://www.reddit.com/r/Blackout2015/comments/4ylml3/reddit_has_removed_their_blog_post_identifying/

Anyway, tell me more about Russians!

[-] mulcahey@lemm.ee 28 points 3 months ago
10
submitted 3 months ago by mulcahey@lemm.ee to c/palestine@lemmygrad.ml

I'm looking for a newsletter that I can read every morning that gets me up to speed with the previous day's news re: Gaza & Palestine. (I'll still read Lemmy! Lemmy is great. But I find the newsletter format very useful in the morning.)

Does anything like this exist? What are your preferred newsletters covering the latest phase of the occupation and war?

Thank you

view more: next ›

mulcahey

joined 4 months ago