Skip to content

Instantly share code, notes, and snippets.

View rjmurillo's full-sized avatar
💭
I may be slow to respond.

Richard Murillo rjmurillo

💭
I may be slow to respond.
View GitHub Profile
@rjmurillo
rjmurillo / BoxStarter.ps1
Last active June 30, 2016 19:32
First BoxStarter Script
# START http://boxstarter.org/package/url?
# Initial Windows Config
Update-ExecutionPolicy Unrestricted
Set-ExplorerOptions -showFileExtensions
Enable-RemoteDesktop
Disable-GameBarTips
# Windows Features and Extras
cinst sudo
@rjmurillo
rjmurillo / Expire.sh
Created March 26, 2016 01:53
LUA script to expire multiple keys in Redis by pattern
EVAL "for i, name in ipairs(redis.call('KEYS', 'user:*')) do redis.call('expire', name, 0); end" 0
@rjmurillo
rjmurillo / pack-man.ps1
Last active July 31, 2020 13:11
Useful Package Manager console commands
Get-Project –All | Add-BindingRedirect
# On large projects commands like `Update-Package -Reinstall` can take HOURS
# If the updates are broken up, then don't lock up the IDE and complete much faster (minutes vs hours)
# Reinstall all packages that match a specific targetFramework
# Useful when retargeting
gci -recurse packages.config | % { [xml]$XmlDocument = Get-Content -Path $_.FullName; $XmlDocument.packages.package | ? { $_.targetFramework -eq 'net462' } | select id | sort-object -unique | % { update-package -reinstall $_.id } }
# Reinstall all packages that have been marked with requireReinstallation

Fiduciary License Agreement 2.0

based on the

Individual Contributor Exclusive License Agreement

(including the Traditional Patent License OPTION)

Thank you for your interest in contributing to Richard Murillo's Effective C# Analyzers ("We" or "Us").

@rjmurillo
rjmurillo / setup-ai-agents-workstation.sh
Last active December 22, 2025 08:27
Setup script for ai-agents development workstation
#!/bin/bash
# Setup script for ai-agents development workstation
# Run with: bash ~/setup-ai-agents-workstation.sh
#
# This script installs all required tools for developing and maintaining
# https://github.com/rjmurillo/ai-agents including MCP server dependencies.
set -e
echo "=============================================="
@rjmurillo
rjmurillo / Windows-Hello-on-Ubuntu.md
Created December 22, 2025 02:35
Windows Hello on Ubuntu setup guide

Windows Hello-Style Authentication on Ubuntu 24.04

This guide sets up facial recognition (using IR camera) and fingerprint authentication on Ubuntu, similar to Windows Hello.

Prerequisites

  • Ubuntu 24.04 with GNOME
  • Windows Hello compatible IR camera
  • Fingerprint sensor (optional)