this post was submitted on 06 Aug 2024
18 points (100.0% liked)

Casual Conversation

2255 readers
389 users here now

Share a story, ask a question, or start a conversation about (almost) anything you desire. Maybe you'll make some friends in the process.


RULES (updated 01/22/25)

  1. Be respectful: no harassment, hate speech, bigotry, and/or trolling. To be concise, disrespect is defined by escalation.
  2. Encourage conversation in your OP. This means including heavily implicative subject matter when you can and also engaging in your thread when possible. You won't be punished for trying.
  3. Avoid controversial topics (politics or societal debates come to mind, though we are not saying not to talk about anything that resembles these). There's a guide in the protocol book offered as a mod model that can be used for that; it's vague until you realize it was made for things like the rule in question. At least four purple answers must apply to a "controversial" message for it to be allowed.
  4. Keep it clean and SFW: No illegal content or anything gross and inappropriate. A rule of thumb is if a recording of a conversation put on another platform would get someone a COPPA violation response, that exact exchange should be avoided when possible.
  5. No solicitation such as ads, promotional content, spam, surveys etc. The chart redirected to above applies to spam material as well, which is one of the reasons its wording is vague, as it applies to a few things. Again, a "spammy" message must be applicable to four purple answers before it's allowed.
  6. Respect privacy as well as truth: Don’t ask for or share any personal information or slander anyone. A rule of thumb is if something is enough info to go by that it "would be a copyright violation if the info was art" as another group put it, or that it alone can be used to narrow someone down to 150 physical humans (Dunbar's Number) or less, it's considered an excess breach of privacy. Slander is defined by intentional utilitarian misguidance at the expense (positive or negative) of a sentient entity. This often links back to or mixes with rule one, which implies, for example, that even something that is true can still amount to what slander is trying to achieve, and that will be looked down upon.

Casual conversation communities:

Related discussion-focused communities

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] shalafi 5 points 6 months ago* (last edited 6 months ago) (1 children)

My PC is our entertainment system. Got sick of all the clicking to arrange the TVs, taskbar, etc. Whipped up a PowerShell script that does it all!

Got out my old .22 rifle and did it up right. First gun I ever bought and over the years I did all sorts of ridiculous work on it, made it "tacticool". Also, let it rust a bit and generally abused it. Dawned on me that it was really a diamond in the rough, crazy reliable and fun. Took it apart, oiled and removed rust, put my nice pellet gun scope on it, all that. Can't wait to try it at camp tomorrow!

Code:

Do {
    CLS
    $Mode = Read-Host "`r`n(W)ork, (P)lay, (M)ovie?"
    } until ( 'w', 'p', 'm' -contains $Mode) 

if ($Mode -eq "w"){
# Work Mode
displayswitch.exe /extend
# Display taskbar and restart Explorer
$p='HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3';$v=(Get-ItemProperty -Path $p).Settings;$v[8]=2;&Set-ItemProperty -Path $p -Name Settings -Value $v;&Stop-Process -f -ProcessName explorer
    }

if ($Mode -eq "p"){
# Play Mode
displayswitch.exe /external
# Display taskbar and restart Explorer
$p='HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3';$v=(Get-ItemProperty -Path $p).Settings;$v[8]=2;&Set-ItemProperty -Path $p -Name Settings -Value $v;&Stop-Process -f -ProcessName explorer
    }

if ($Mode -eq "m"){
# Movie Mode
displayswitch.exe /internal
#Hide taskbar and restart Explorer
$p='HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3';$v=(Get-ItemProperty -Path $p).Settings;$v[8]=3;&Set-ItemProperty -Path $p -Name Settings -Value $v;&Stop-Process -f -ProcessName explorer
    }

[–] [email protected] 6 points 6 months ago

Your comment confused me and I thought you somehow kitbashed your gun into a TV remote