I've been struggling for *days* to learn the syntax of some code at work to fix a massive problem involving 9 million address records, and shot in the dark I was like there's gotta be a PowerShell developer in the Chicago Competitive MTG discord server. And sure enough I got a bite and my whole week has been saved by a Lemur named Daryl
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
✓ Live Streaming✓ Interactive Chat✓ Private Shows✓ HD Quality
Anya is LIVE right now
FREE
Free to watch • No registration required • HD streaming
im starting to develop a bad relationship with command prompt shit. so often i will see that something requires commands and I'll think I'm going exactly as im told and im somehow not and ill just keep getting that fucking "unknown command" shit back to me and i know it's my fault, that the instructions have some reasonable assumption they're executing but I dont know what it is and its getting to the point where i just, start crying. it makes me feel so stupid, like im stupid for trying, that a dumb schizo like me should know better than to get into complicated tech things because my brain is already too broken to be a functioning person and understand reality, why would this be any different? im not going to blow up you stuff with a whole pity party, but its just so annoying! i can manage so many other complicated things but something about the ideology or common assumptions of tech people just isn't compatible with how i think, with how i connect dots, with how i relate subjects to eachother.
i dont even know what question i could be asking here cause i dont even know what piece of logic im apparently missing. anything more than system health commands and I fuck it up.
if this feels like, intrusive amount of feelings from a stranger, you dont have to post it or anything. im just going off of how you've mentioned having your own frustrations so its totally possible that i miss the mark here.
Hey don’t beat urself up too bad. I know the feeling, but also, how many people in the world know something to at least this level? You’re still further than most and clearly care more than many.
I hate Windows cli. PowerShell can suck my ass and I’m not fond of Command Prompt either. Some tips are below, but honestly I would personally use a Linux VM, a Raspberry Pi, or an old Mac to get a UNIX terminal before I repurposed a guide to be primarily Windows cli. It can be done, but I am not joking when I say a brand new Linux distro install usually works easier (including time for new install). It really is a whole different world for this. Windows uses backslash \ instead of forward-slash / like Unix. So when trying to repurpose commands you need to swap all the "/" for "\" (like I just did on this post after remembering)
PowerShell (blue) is advanced and can do a lot. But it’s not interchangeable so I don’t care for it. You can call CMD commands from within PowerShell, it’s not the same as just typing them in Command Prompt for each thing you try.
Command Prompt (black) is kind of what has been dragged along from the DOS days. If you have a program you need to run from within a folder, you gotta specify the “.exe” at the end or just paste in the whole path to the program “C:\Users\pichu\Downloads\virus.exe” and then type out the command you want that program to process.
“C:\Users\pichu\Downloads\virus.exe” -xbj run --dont-wake-daddy
The one that trips me up the most is Android Debug Bridge (adb). It happens so often I feel like it’s a personal meme of mine or some shit
>adb devices
adb : The term 'adb' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
>cmd.exe
>adb devices
'adb' is not recognized as an internal or external command, operable program or batch file.
>"C:\adb.exe" devices
List of Devices Below:
If the program doesn’t exist in System32, I think(?) you need to specify the extension every time. If the application doesn’t exist in the current folder you’re browsing (the path it lists before >_ ) then you need to specify the global path (recommended; “C:/folder/folder/app.exe”) or use relative folders (not recommended; “../../folder/app.exe”).
If you DO want to learn more about Windows PowerShell, and scripting (.cmd, .ps1), I am not the one to help. Sorry. Install WSL to maybe use an Ubuntu Bash shell or something, but that also has a bunch of drawbacks for a lot of things :/ Also if you use Windows 11 try the 'Terminal' app from MS on the Windows Store, it's better.
Tl;dr: try running a Linux or Mac terminal if Windows CLI isn’t ideal for that setup
I just decided to try my hand at coding last week and today I just finished homegrowing an ethical text-to-speech voice model from scratch and I finally got an output that sounds somewhat decent.
Now I'm making my own audiobooks because it helps with my audio processing and I can consume more literature :>
Yayy, another patch 🫠 If your Mods folder is as ridiculously huge as mine, patch day = a hellscape of broken mods and Last Exception spam. I thought I might share something that makes patch days slightly more bearable for me. It's a script I wrote to make Windows scan the script mods (TS4SCRIPT files) in my Mods folder and generate a report that looks a bit like this:
(I cropped the tables in this image of my report, because I have a lot of script mods 😅)
The report doesn't tell you what script mods are actually broken, but it does give you a good idea of what script mods you probably want to check/update first when there's a patch, where they're located, and what date you installed/updated them. It also gives you other info, like what script mods you might have accidentally placed too deep inside your Mods folder to work. You don't need to download anything for this - it's just a script I wrote to make Windows generate the report for you as an HTML file.
Under the cut: How to make Windows spit out info about your script mods to save you time on patch days 🪄 ⤵
So to make Windows generate this report, I run a script in PowerShell. No, wait, don't leave! I promise this is super easy to do! 😅 PowerShell is just Windows’ built-in command box, where you can type or paste little scripts to make your computer do useful tasks (like making it a bit less painful to hunt down broken mods).
Super simple step-by-step guide:
❌ Step 1. Close The Sims 4 (important!).
📂 Step 2. Open your Mods folder:
Documents > Electronic Arts > The Sims 4 > Mods
🖱️ Step 3. Hold Shift + Right-Click in an empty spot in the folder → click "Open PowerShell window here" (or “Open in Terminal”). You don't need to open it as admin, if that option appears.
📜 Step 4. I've saved my script in a Notepad (.txt) file that you can view or download from my Google Drive via the link at the bottom of this post. Highlight/Select All the entire script, copy it (right-click & "Copy" or Ctrl+C), and paste it into PowerShell (right-click & "Paste", or Ctrl+V). Paste it after the blinking cursor (PowerShell won't let you paste it anywhere else anyway :P)
🤔 Note: When you paste the script into PowerShell/Terminal, this window will probably pop up:
This is just PowerShell’s way of saying “Hey, this is more than one line — are you sure you meant to paste a whole block?” Click "Paste anyway" to make PowerShell stop trying to be the script police.
🔍 Step 5. Hit Enter and wait a few seconds for the script to run. You'll see PowerShell doing some fast scrolling as it scans your Mods folder for script mods.
🖥️ Step 6. Check your Desktop → you’ll see:
S4_AllScriptMods_DATE.csv
S4_Suspects_DATE.csv
S4_ModReport_DATE.html
📄 Step 7. Those CSV files contain the raw data that PowerShell generated when it scanned your Mods folder. The HTML file is that same data, just organised into a nice table layout that's easier to read. If you open the CSV files, they'll open in Excel/Sheets if you prefer to read the data that way. To view the cleanly formatted version, double-click the .html file to view the summary in your browser.
💫 Step 8. Behold! You've now made Windows generate a report containing organised tables of:
All subfolders inside your Mods folder that contain script mods, organised by the number of script mods inside them: "Top folders by script count";
All the scripts you might have in your Mods folder/subfolders that are older than 2025: "Scripts older than 2025 (check these first)";
A list of all your installed script mods that are more likely to break when Sims 4 has a patch update: "Patch sensitive frameworks detected";
A bonus list of any script mods you might have placed more than one folder deep by accident (meaning they won't work): "Script mods nested deeper than one folder (move these up)"
✨SCRIPT TO PASTE INTO POWERSHELL: Google Drive Link ✨
This link opens my .txt file in Google Drive’s viewer — you don’t need to download anything if you don't want to, you can just copy-paste the script right from the page, into your own .txt or other document file. Or you can download the file itself if you prefer 😊
I hope this report generator script is helpful! It's not something that will actually identify which of your script mods have borked on patch day - but it's saved me a ton of time hunting down the most bork-prone ones 😆
SEO Poisoning Campaign Abuses AI Tool Branding to Deliver Memory-Resident Infostealer
A targeted SEO poisoning operation is impersonating popular AI development tools like Gemini CLI and Claude Code, tricking users into downloading a Windows infostealer that executes PowerShell payloads in memory to steal credentials, OAuth tokens, and CI/CD secrets.
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
✓ Live Streaming✓ Interactive Chat✓ Private Shows✓ HD Quality
Anya is LIVE right now
FREE
Free to watch • No registration required • HD streaming
I spent so long today trying to figure out why .gitignore wasn’t working.
I spent *hours* going through so many StackOverflow questions and reddit posts where brand new developers are trying to use a .gitignore for the first time and getting the syntax wrong or putting it in the wrong directory or naming the file wrong or they already tracked the files. All common mistakes I made when I was new to this, but not what was wrong for me.
I’m suddenly reminded what it was like back then everytime I had a problem googling every little issue and thinking some obscure issue was happening or there was a bug in git or something, and then I’d find the small error I’d made. But now I understand it so well I’m stumped what could be wrong.
Flashback to when I was trying to decide which OS to use when writing it and decided it was simple enough that Windows would be fine. Plus I want this to be cross platform and so it’ll be good to be forced to deal with Windows compatibility up front.
Then finally I found the issue: I created the .gitignore from Powershell and it defaults the encoding to UTF-16LE??? Why would they do that? Just to prank people trying to create files to be used literally anywhere???