Main Page
From Cramsession
✍️ Verified Author: MediaWiki default • Click to view professional profile & credentials
Latest Verified Guides
- 17:08, 31 August 2026 Computer Notes/GIT/Git Cheat Sheet (hist | edit) [2,623 bytes] Mflavell (talk | contribs) (Created page with "== Starting a Project == {| class="wikitable" |- ! Command !! Action |- | <code>git init</code> || Initialize a new local Git repository |- | <code>git clone <url></code> || Download a repository from a remote server |} == Staging & Committing == {| class="wikitable" |- ! Command !! Action |- | <code>git status</code> || Show modified, untracked, and staged files |- | <code>git add <file></code> || Stage a specific file |- | <code>git add .</code> || Stage a...")
- 01:41, 18 August 2026 Computer Notes/Python/Python Interview Cheat Sheet (hist | edit) [5,906 bytes] Mflavell (talk | contribs) (Created page with " = High-Yield Python Patterns for Technical Interviews = == 1. Array (List) Iteration == Forget standard while loops or range(len(arr)) unless you specifically only need the index. Python has built-in ways to make this much cleaner and less prone to off-by-one errors. === The Enumerate Pattern (Crucial) === Whenever you need both the index and the value, always use enumerate. It shows operational maturity. nums = [10, 20, 30] for i, num in enumerate(nums): print(f"Ind...")
- 18:37, 27 June 2026 Computer Notes/PI VPN (hist | edit) [2,450 bytes] Mflavell (talk | contribs) (Created page with "== PiVPN on Ubuntu (VMware Setup) == This guide covers the installation of PiVPN on an Ubuntu Server VM running within VMware. This setup uses WireGuard for high-performance, secure tunneling without the complexity of a full firewall appliance. === 1. VM Prerequisites (VMware) === Before starting the installation, ensure the virtual machine is configured for network accessibility: * '''Network Adapter:''' Set to '''Bridged''' mode. This allows the VM to receive its own...")
- 18:21, 27 June 2026 Creating Computer Notes/VMware Workstation/Kill a Zombie VM (hist | edit) [117 bytes] Mflavell (talk | contribs) (Created page with " Kill a zombie VM on linux 1) Find the PID: ps aux | grep -i vmware-vmx 2) Kill the process: sudo kill -9 [PID]")