Skip to content

Instantly share code, notes, and snippets.

View idan's full-sized avatar
💫
Prototypin'

Idan Gazit idan

💫
Prototypin'
View GitHub Profile
asdadasd
asdasdasdasd

A ReStructuredText Primer

Author

Richard Jones

Version

$Revision: 5801 $

Copyright

This document has been placed in the public domain.

~ ⟩ pip install ipython -vvv                                                         ~ 2
Using PyPI mirrors: http://g.pypi.python.org/simple/, http://b.pypi.python.org/simple/, http://e.pypi.python.org/simple/, http://d.pypi.python.org/simple/, http://f.pypi.python.org/simple/, http://c.pypi.python.org/simple/, http://a.pypi.python.org/simple/
Downloading/unpacking ipython
  Getting page https://pypi.python.org/simple/ipython/
  URLs to search for versions for ipython:
  * https://pypi.python.org/simple/ipython/
  * http://g.pypi.python.org/simple/ipython/
  * http://b.pypi.python.org/simple/ipython/
  * http://e.pypi.python.org/simple/ipython/
@idan
idan / nested.md
Created August 15, 2013 06:29
test nested lists

Here's a nested UL:

  • foo
  • bar
    • Dive Bar
    • Classy Bar
    • Sushi Bar
  • baz

Here's a nested OL:

@idan
idan / gfm.md
Created August 13, 2013 21:18
GFM Sample

GitHub Flavored Markdown

View the source of this content.

Let's get the whole "linebreak" thing out of the way. The next paragraph contains two phrases separated by a single newline character:

Roses are red Violets are blue

@idan
idan / first.md
Last active December 21, 2015 01:09
Multiple files!

This is markdown file the first

Oh I'm Henry the VIIIth I am.

Here are two--dashes. Also two -- dashes.

And this is an—em dash.

@idan
idan / gist:6224504
Last active December 21, 2015 00:59
lalala
GitHub Flavored Markdown
================================
*View the [source of this content](http://github.github.com/github-flavored-markdown/sample_content.html).*
Let's get the whole "linebreak" thing out of the way. The next paragraph contains two phrases separated by a single newline character:
Roses are red
Violets are blue
@idan
idan / gist:6184874
Created August 8, 2013 14:06
My Letter to Sen. Chuck Schumer (D-NY) Regarding Edward Snowden

Senator Schumer,

As your constituent, I find your statements of condemnation for Edward Snowden distateful, but more importantly, they are simply wrong.

Snowden is a whistleblower and a political dissident. His acts revealed massive abuses by our government—illegal according to the letter of the law, and more attuned to the spirit of the law in totalitarian countries like China.

With so much rhetoric about how terrorism endangers our freedoms, I should hope you realize that the very programs Snowden has revealed do more to subvert our freedoms, for more of our population, than any act of terrorism.

I urge you to retract your statements about Snowden, and focus your attention on two goals:

@idan
idan / _responsive.scss
Created June 9, 2013 23:50
Responsive SCSS Mixins
@mixin linear {
@media screen and (max-width: 45em) {
@content;
}
}
@mixin mobile-landscape {
@media screen and (max-width: 30em) {
@content;
}