Skip to content

Instantly share code, notes, and snippets.

View mikhail-dvorkin's full-sized avatar
💭
Make love, not bugs.

Mikhail Dvorkin mikhail-dvorkin

💭
Make love, not bugs.
View GitHub Profile
1. A.
@mikhail-dvorkin
mikhail-dvorkin / matplotlib2.py
Created April 10, 2017 13:06
matplotlib examples 2
import matplotlib.pyplot as plt
import numpy as np
from mpl_toolkits.mplot3d import Axes3D
def f(x, y):
return x**2 + y**2 #1 + x ** 2 - x * y ** 2 + np.exp(x * y / 10)
n = 60
x = np.linspace(-3, 3, n)
y = np.linspace(-3, 3, n)
xgrid, ygrid = np.meshgrid(x, y)
z = f(xgrid, ygrid)
@mikhail-dvorkin
mikhail-dvorkin / README.txt
Created November 10, 2012 20:11
Ical storage
A gist with miscellaneous calendars stored in ical format
* http://raw.github.com/gist/4052334/spbtc.ics
@mikhail-dvorkin
mikhail-dvorkin / test.txt
Created October 26, 2012 11:01
Test public gist
A public gist.