I hereby claim:
- I am rwev on github.
- I am rwev (https://keybase.io/rwev) on keybase.
- I have a public key whose fingerprint is 3D0A 484B 0D60 1C04 90E4 9AB2 F348 9370 83D4 EEB8
To claim this, I am signing this object:
| # colored highlighting is awesome | |
| if [ "$TERM" != "dumb" ] && [ -x /usr/bin/dircolors ]; then | |
| eval `dircolors ~/.dircolors` | |
| alias ls='ls -hF --color=auto' | |
| alias grep='grep --color=always' | |
| alias fgrep='fgrep --color=always' | |
| alias egrep='egrep --color=always' | |
| fi |
I hereby claim:
To claim this, I am signing this object:
| # -*- coding: utf-8 -*- | |
| import numpy as np | |
| import matplotlib.pylab as pl | |
| from mpl_toolkits.mplot3d import Axes3D | |
| xx = np.array([0, 10]) # smart | |
| yy = np.array([0, 10]) # nerd | |
| zz = np.array([0, 10]) # unpopular |
| try: | |
| from setuptools import setup | |
| except ImportError: | |
| from distutils.core import setup | |
| import pyximport; pyximport.install() | |
| import baw, cybaw | |
| from time import time | |
| from collections import namedtuple |
| cpdef fibcy(int n): | |
| cdef int i | |
| cdef double a=0.0, b=1.0 | |
| for i in range(n): | |
| a, b = a + b, a | |
| return a |
| try: | |
| from setuptools import setup | |
| except ImportError: | |
| from distutils.core import setup | |
| import pyximport; pyximport.install() | |
| import fib | |
| from time import time |
| module.exports = function(grunt) { | |
| grunt.initConfig({ | |
| pkg: grunt.file.readJSON( | |
| 'package.json'), | |
| watcher: { | |
| options: { | |
| dateFormat: function( | |
| time) { | |
| grunt.log |
| import sys | |
| from RGBtoXTerm256 import rgb2short | |
| nord_colormap = { | |
| # Polar Night black -> grey | |
| "___nord00":"2E3440", | |
| "___nord01":"3B4252", | |
| "___nord02":"434C5E", | |
| "___nord03":"4C566A", | |
| # Snow Storm: grey -> white |
| // Type definitions for leaflet-openweathermap | |
| // By rwev <https://github.com/rwev> | |
| import * as L from 'leaflet'; | |
| declare module 'leaflet' { | |
| namespace OWM { | |
| interface Clouds extends L.TileLayer {} |
| # -*- coding: utf-8 -*- | |
| """ | |
| ECONEV.PY: Economic Events | |
| Python web-scraper for economic events on the Bloomberg Econoday calendar. | |
| Saves result of scrape to plain text (in Eastern Time) for flexible processing by other applications. | |
| Author: rwev (https://github.com/rwev) |