Joined August 2019
65 Photos and videos
Pinned Tweet
Finally got around to create a Discord Server and bridge it to @matrixdotorg You can join you #PowerShellOnLinux community via any of the links below they are connected 😎 Matrix matrix.to/#/#PowerShellOnLin… Telegram t.me/PowerShellOnLinux Discord discord.gg/DeWEKY9XBP

2
2
4
PowerShellOnLinux and MacOS retweeted
Are you ready for a world of “ish” instead of certainty in #IT? At #PSConfEU, @jsnover explains how #AI is changing: ✅ Software & decisions ✅ #Automation approaches ✅ How we handle uncertainty Adapt fast — or fall behind. 👉 youtu.be/_GWo9drWx5s?si=PC6A… #PowerShell #DevOps
2
5
248
This would be a great feature for Linux and MacOS 👇
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 🙏
2
77
PowerShellOnLinux and MacOS retweeted
'Slides' and demos from my #PSConfEU session 'Forgotten Gems of PowerShell' are up on GitHub: github.com/bielawb/powershel…
1
3
97
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"

3
6
1,131
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"
9
593
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
8
4
53
4,782
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 💪
1
6
44
3,363
PowerShellOnLinux and MacOS retweeted
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
1
5
22
3,095
PowerShellOnLinux and MacOS retweeted
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 🚀
1
2
8
131
PowerShellOnLinux and MacOS retweeted
Apr 29
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
6
53
242
13,538
PowerShellOnLinux and MacOS retweeted
📢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
5
86
592
73,501
PowerShellOnLinux and MacOS retweeted
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 🚀
3
7
145
PowerShellOnLinux and MacOS retweeted
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 #LTS powershellisfun.com/2026/03/…
2
14
649
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 🙏
3
104
Hi @awakecoding do you mind enabling arm64 builds of powershell universal? Thanks in advance 🙏
2
2
389
Also if it's not too much to ask an alpine base would also be amazing 🙏
1
55