Any plans to allow delayed updates similar to what npm has made?
I would love to have an option to only install updates thst are x days old etc.
Thank you very much for all your hard work and dedication 🙏
Task of the day: You need to recursively find all JSON files, extract the 'user.email' field from each, and export to CSV.
Bash: find . -name "*.json" -exec jq ... | awk ... | while read... (proceeds to summon ancient demons)
PowerShell:
Get-ChildItem -Recurse -Filter *.json | Get-Content | ConvertFrom-Json | Select user.email | Export-Csv emails.csv
Same task.
One feels like dark magic.
The other feels like cheating.
PowerShell just hits different 😏
#PowerShell#Bash#Linux#DevLife"
Task: Filter a 50,000-row CSV, keep only rows where Status = 'Active' and Amount > 1000, then export to new file.
Bash: awk -F, '$4=="Active" && $7>1000' | cut -d, -f1,2,7 > out.csv
(and huge.csv pray the commas in fields don't murder you)
PowerShell: $data = Import-Csv huge.csv
Where-Object { $_.Status -eq 'Active' and [double]$_.Amount -gt 1000 }; $data Export-Csv out.csv
PowerShell treats data like data. Bash treats everything like a hostage negotiation with text.
#PowerShell#Bash#DataHell"
PowerShell on Linux & macOS is seriously underrated.
Same language. Same scripts. Runs everywhere.
Installed via brew/apt in seconds and suddenly your automation works on Windows, Linux, and Mac without rewriting everything in bash.
Who’s using `pwsh` outside of Windows? What’s your best cross-platform trick?
#PowerShell
I wish @microsoft and the @powershell team would get their act together and make #PowerShell 7 the default on windows.
So it can finally be the same version on all platforms.
Lets get this post as many likes and retweets as possible to finally make it a reality 💪
Devolutions Psign now has a cross-platform #PowerShell module for all your code signing needs!
Install-Module -Name Devolutions.Psign
Get-Command -Module Devolutions.Psign
Enjoy! powershellgallery.com/packag…
Introducing psign: portable code signing. every file format, every signing method, every platform 👇
No more "let's run this on Windows because of signtool.exe". Say yes to code signing from Linux! 🚀
github.com/Devolutions/psign
Released #Pode.Web v1.0.0-preview3! 🎉 Added support for nested groups 🐦 Events can now trigger JavaScript ⚡ new Datalist element 🆕 and a lot more - including some additional breaking changes. Full notes: github.com/Badgerati/Pode.We…#PowerShell#Web#Server 🚀
Terminal.Gui v2.0 has been RELEASED.
Terminal.Gui enables building sophisticated console applications with modern UIs.
gui-cs.github.io/Terminal.Gu…
Thank you to all the contributors and users for all the hard work that goes into making this.
And thank you to @migueldeicaza for the inspiration and letting me carry on what you started!
@dotnet@csharp@terminaltrove
📢Introducing GitHub Quick Review (ghqr)
A free, open-source CLI that scans your GitHub orgs & repos against best practices.
One command. Full posture report. 📊
👉 github.com/microsoft/ghqr
Released #Pode v2.13.0! 🎉 Improved handling for SSE/WebSockets connections 🧹, Manual WebSockets connection setup support 🔗, Initial support for MCP Tools and JSON Schema 🤖, plus other bug fixes and refactors! Full notes: github.com/Badgerati/Pode/re…#PowerShell#Web#Server 🚀
Two days ago, the new LTS version of PowerShell, 7.6, was released. In this short blog post, I will highlight its key features and improvements.
#PowerShell#LTSpowershellisfun.com/2026/03/…
I created a #PowerShell module for MacOS
powershellgallery.com/packag…
It has some functions I use everyday on my mac.
If you have ideas on what to add to the module let me know.
PRs and Issues are welcome 🙏