Main Page: Difference between revisions

From Cramsession
Jump to navigationJump to search
✍️ Verified Author: MediaWiki defaultClick to view professional profile & credentials
No edit summary
No edit summary
Line 20: Line 20:
{{Special:NewPages/4}}
{{Special:NewPages/4}}
</div>
</div>
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
{| style="display:inline; vertical-align: top; background: white; border:none; padding-right: 15px;"
|+ [[Image:Directory.png|50px|link=Study Guides]]
[[Study Guides]]
|}
{|style="display:inline; vertical-align: top; background: white;  padding-right: 15px;"
|+ [[Image:Notes.png|50px|link=Computer Notes]]
[[Computer Notes]] 
|}
{|style="display:inline; vertical-align: top; background: white;  padding-right: 15px;"
|+ [[Image:Security.png|50px|link=Cybersecurity]]
[[Cybersecurity]]
|}
{|style="display:inline; vertical-align: top; background: white;  padding-right: 15px;"
|+ [[Image:document.png|50px|link=APA Guide]]
[[APA Guide]]
|}
{|style="display:inline; vertical-align: top; background: white;  padding-right: 15px;"
|+ [[Image:theory.png|50px|link=Theory]]
[[Theory]]
|}
{|style="display:inline; vertical-align: top; background: white;  padding-right: 15px;"
|+ [[Image:Radio.png|50px|link=Radio]]
[[Radio]]
|}
{|style="display:inline; vertical-align: top; background: white;  padding-right: 15px;"
|+ [[Image:Web.png|50px|link=https://earthquake.usgs.gov/earthquakes/map/?extent=36.51626,-124.34601&extent=38.6512,-119.95148&listOnlyShown=true]]
[https://earthquake.usgs.gov/earthquakes/map/?extent=36.51626,-124.34601&extent=38.6512,-119.95148&listOnlyShown=true Earthquakes]
|}

Revision as of 00:54, 16 May 2026



Latest Verified Guides

  • 17:08, 31 August 2026Computer 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 2026Computer 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 2026Computer 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 2026Creating 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]")