This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
window.fbAsyncInit = function() { | |
FB.init({ | |
appId : '607342782800424', | |
xfbml : true, | |
version : 'v2.6' | |
}); | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -L -O http://www.nano-editor.org/dist/v2.2/NT/nano-2.2.6.zip | |
unzip nano-2.2.6.zip -d nano | |
mv nano ~/nano_install | |
echo -e "#!/bin/sh\nexec ~/nano_install/nano.exe \"\$@\"" > nano | |
chmod u+x nano | |
echo "export PATH=$PATH:~" > ~/.bashrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package comm | |
import ( | |
"fmt" | |
"time" | |
"bytes" | |
"encoding/json" | |
"net/http" | |
"github.com/labstack/echo" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from . import ChunkSource | |
import numpy as np | |
import h5py | |
class MySource(ChunkSource): | |
def __init__(self, fnames,name, *args, **kwargs): | |
super().__init__(*args, **kwargs) | |
self.fnames = fnames | |
self.name = name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
http://www.cs.technion.ac.il/~ronrubin/Publications/KSVD-OMP-v2.pdf | |
parametrization by error is still in progress | |
""" | |
from time import time | |
import numpy as np | |
from scipy import linalg | |
import matplotlib.pyplot as pl |
NewerOlder