/r/EveryGeekShouldKnow

Photograph via snooOG

A community to share tips and tricks and general information that will help yourself improve on activities, skills, and various other "Geek" related tasks.

Welcome to /r/EveryGeekShouldKnow be sure to hit the subscribe button to get fresh content delivered to your homepage!

What is Every Geek Should Know?

EGSK (Every Geek Should Know) is a community to share tips and tricks and general information that will help yourself improve on activities, skills, and various other "Geek" related tasks.


Rules:

» Do not post "subreddit killers", e.g. "25 things every geek should know." It is difficult to have stimulating discussion in the comments section when a post focuses on a number of things rather than just one.
» Be respectful. Pretty simple, don't be a dick.

» Beginning posts with "EGSK" and requests with "EGSKR" is encouraged, but not mandatory.


Related Subreddits and Friends


/r/EveryManShouldKnow

/r/Geek

/r/GeekPorn

/r/Programming

/r/Technology

/r/YouShouldKnow

/r/EveryGeekShouldKnow

1,098 Subscribers

3

EGSK: How To Sad Face Your PC - Blue Screen of Death

0 Comments
2021/10/27
03:18 UTC

0 Comments
2021/01/25
01:01 UTC

2

Detailed History of Cyber Crimes [Infographic]

2 Comments
2017/10/27
16:11 UTC

5

EGSK: How to Read Text in Binary

0 Comments
2017/08/05
17:36 UTC

3

How Broadband ADSL Works

0 Comments
2014/09/26
21:30 UTC

13

EGSK: How to Bypass a Website that's Blocked from School or Work

To bypass a website block/filter, simply enter that websites IP address in instead of the actual site address.
Now, to find the IP address. To get a new command prompt, open Notepad and type: command.com. Then, save as “cmd.bat”. You now have a command prompt.

Now, open the command prompt and type “ping" http://www.website.com/” to find the IP address of that website.

5 Comments
2014/06/07
03:58 UTC

3

EGSK: What a BitCoin is

0 Comments
2014/06/07
03:50 UTC

4

EGSK: Writing a simple webpage with HTML

  1. Always start with a <!DOCTYPE> tag as your first line. For anything written with HTML5, which is the most current, you can simply use <!DOCTYPE html>.

     <!DOCTYPE html>
  2. Everything must be enclosed in an <html> tag, all but a few tags begin with <tag> and end with </tag>

     <!DOCTYPE html>
     <html>
     </html>
  3. Information for the browser about the page goes in the header, using the <head> tag. For now, all you need is the <title> tag.

     <!DOCTYPE html>
     <html>
         <head>
             <title>My First Webpage</title>
         </head>            
     </html>
  4. Finally, page content goes inside the <body> tag. The most basic content tag is <p>, which shows text in a paragraph.

     <!DOCTYPE html>
     <html>
         <head>
             <title>My First Webpage</title>
         </head>
         <body>
             <p>Hello World! This is my first webpage!</p>
         </body>            
     </html>

And there you go, you've written your first website! For a list of more basic content tags, refer to this post.

0 Comments
2014/06/07
00:36 UTC

15

EGSK: The 13 Most Basic HTML Tags

<h1> to <h6> -- Heading styles from large to small <p> -- Start a new paragraph <br> or <br /> -- Create a single line break <! – Your Comment Here -- > -- Make a hidden comment <hr> -- Mark the page with a horizontal rule line <b> -- Bold text <em> -- Emphasize text <strong> -- Strong emphasis <i> -- Italicize text <u> -- Underline text (&)nbsp; -- Insert a non-breaking space <a href=”URL”> -- Anchor a link <img src= “URL” alt=”description”> -- Insert an image
1 Comment
2014/06/06
15:44 UTC

3

To kick this sub off - The Meaning of Technical Acronyms

USB – Universal Serial Bus
GPU – Graphics Processing Unit
CPU – Central Processing Unit
SATA – Serial Advanced Technology Attachment
HTML – Hyper-text Markup Language
HTTP – Hypertext Transfer Protocol
FTP – File Transfer Protocol P2P – Person to Person (Peer to Peer) data sharing

More: http://www.techterms.com/category/acronyms

3 Comments
2014/06/06
05:13 UTC

Back To Top