Skip to main content

Question: What is 'leet' or '1337'?

Question: What is 'leet' or '1337'?
=======================================================
'Leet' or '1337' is the jargon spelling for 'elite'. To be leet/elite means to be very skilled with computers and software.
Answer: In the days of Windows 95, a group of infamous hackers named "The Dead Cow Cult" used to take remote control of Windows 95 machines. They used a nasty software package called Back Orifice, and used the network port 31337 to take over thousands of computers worldwide. Their purposeful misspelling of the world "elite" as "leet" or "1337" was a way to bypass censorship programs. Years later, the Dead Cow Cult influence has morphed into a subculture of jargon and power user language. People who speak "leet" today are not necessarily hackers... leetspeak is often the trademark of serious Internet gamers and people who pride themselves on being technically savvy.

Comments

Popular posts from this blog

IBM iAccess for windows 7.1 "a system restart is pending" error

 IBM iAccess for windows 7.1 "a system restart is pending" error HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager 1. Look for the following key:  PendingFileRenameOperations or   FileRenameOperations ** 2. Right-click ->  Rename . 3. Add a prefix ### and press Enter. 4. Close regedit and attempt the installation.  Note:  Make sure to go back and remove the ### prefix. The installation should continue.

Webex always using Microphone

 Webex always using Microphone 1). Navigate to Webex settings 2). Devices - Use Ultrasound 3). Remove ticket "Use Ultrasound"

Your organization manages updates on this PC

 Your organization manages updates on this PC We can disable updates from SCCM/WSUS for time being by using below command $currentWU = Get-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” | select -ExpandProperty UseWUServer Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” -Value 0 Restart-Service wuauserv Once required updates are installed on Laptop switch back to previous settings Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” -Value $currentWU Restart-Service wuauserv