create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
(The below text is licensed with CC0, which means that if you want to use or translate it, that is OK by me.)
Ok, I geeked out, and this is probably more information than you need. But it completely answers the question. Sorry. ☺
Locally, I'm at this commit:
$ git show
commit d6cd1e2bd19e03a81132a23b2025920577f84e37
Author: jnthn <[email protected]>
Date: Sun Apr 15 16:35:03 2012 +0200
| class Fib: | |
| def __init__(self, max): | |
| self.max = max | |
| def __iter__(self): | |
| self.a = 0 | |
| self.b = 1 | |
| return self | |
| def __next__(self): |
| # taken from http://www.piware.de/2011/01/creating-an-https-server-in-python/ | |
| # generate server.xml with the following command: | |
| # openssl req -new -x509 -keyout server.pem -out server.pem -days 365 -nodes | |
| # run as follows: | |
| # python simple-https-server.py | |
| # then in your browser, visit: | |
| # https://localhost:4443 | |
| import BaseHTTPServer, SimpleHTTPServer | |
| import ssl |
| vboxmanage clonehd image.vdi image.img --format RAW | |
| qemu-img convert -f vdi -O raw image.vdi image.img | |
| vbox-img convert --srcfilename image.vdi --stdout --srcformat VDI --dstformat RAW image.img |
| #!/usr/bin/python2.7 | |
| """Quick hack of 'modern' OpenGL example using pysdl2 and pyopengl | |
| Based on | |
| pysdl2 OpenGL example | |
| http://www.arcsynthesis.org/gltut/Basics/Tut02%20Vertex%20Attributes.html | |
| http://schi.iteye.com/blog/1969710 | |
| """ | |
| import sys |
You must use the magic method %save:
In [1]: %save?
Type: Magic function
String Form:<bound method CodeMagics.save of <IPython.core.magics.code.CodeMagics object at 0x7fb5d25bb1d0>>
Namespace: IPython internal
File: /usr/lib/python2.7/dist-packages/IPython/core/magics/code.py
| #!/usr/bin/env python | |
| """python-xlib example which reacts to changing the active window/title. | |
| Requires: | |
| - Python | |
| - python-xlib | |
| Tested with Python 2.x because my Kubuntu 14.04 doesn't come with python-xlib | |
| for Python 3.x. |
| import Xlib.display | |
| WINDOW_NAME = 'some window name' | |
| d = Xlib.display.Display() | |
| r = d.screen().root | |
| x = 0 | |
| y = 100 | |
| width = r.get_geometry().width |