Skip to content

syuja/mark_down

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 

Repository files navigation

##ANL Samir J Yuja

Plus1

####Table of Contents 1.Pros of Markdown
2.Cons of Markdown
3.Sample Code
4.Contact Info

####Pros of Markdown

  • Readability in plain text
  • Format as you type (as opposed to pressing buttons)
    1. Fast to learn
  • Supports inline HTML
    • HTML Embedded easily

####Cons of Markdown

  1. Abandonware (some editors support more than others)
  2. Little table support

###Sample Code Python code returning a list of primes less than n:

def primes(n):
  sieve = [True] * n
  for i in xrange(3,int(n**0.5)+1,2):
	    if sieve[i]:
        	sieve[i*i::2*i]=[False]*((n-i*i-1)/(2*i)+1)
  return [2] + [i for i in xrange(3,n,2) if sieve[i]]

###Contact Information:

Email: Addresses: Phone Numbers:
samiryuja@hotmail.com 11631 NE 109th Place 352 871 2546
samiryuja@gmail.com 306 Stadium Drive Apt 15 850 555 5555
sjy14b@my.fsu.edu 1017 Academic Way 352 666 6666

"when you don't create things, you become defined by your tastes rather than ability. your tastes only narrow & exclude people. so create." _why

This quote was borrowed from a Sam Kiswani, TA.

" Leave you your power to draw, And I shall have no power to follow..." 2

###Top

Billy Shakes, A Midsummer Night's Dream, Act 2, Scene 1
Practice footnote

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors