Skip to content

Instantly share code, notes, and snippets.

View raineydavid's full-sized avatar
🎯
Hit the spot

L David raineydavid

🎯
Hit the spot
View GitHub Profile

Deploy

Preqequisite

  1. tag master with say 'pre_blog_news'
git checkout master
git tag pre_blog_news

Deploy

Preqequisite

  1. tag master with say 'pre_blog_news'
git checkout master
git tag pre_blog_news
@raineydavid
raineydavid / COURSE.md
Created May 27, 2017 06:59 — forked from jevakallio/COURSE.md
React Native For Beginners

Introduction

React Native makes it possible to make native iOS and Android mobile apps without needing to know any iOS or Android programming - just JavaScript!

In this course, we'll write a simple mobile app that you can run on your own phone and share with your friends!

Prerequisites

In order to take advantage this course, you should have the following experience.

@raineydavid
raineydavid / compare.py
Created February 11, 2018 03:39 — forked from minhokim0201/compare.py
Compare Two Picture
# http://www.pyimagesearch.com/2014/09/15/python-compare-two-images/
# scikit-image: http://scikit-image.org
# pip3 install -U scikit-image
import matplotlib
matplotlib.use('TkAgg')
import skimage.measure
import matplotlib.pyplot
import matplotlib.image
@raineydavid
raineydavid / pytorch-simple-rnn.py
Created July 21, 2018 07:47 — forked from spro/pytorch-simple-rnn.py
PyTorch RNN training example
import torch
import torch.nn as nn
from torch.nn import functional as F
from torch.autograd import Variable
from torch import optim
import numpy as np
import math, random
# Generating a noisy multi-sin wave
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@raineydavid
raineydavid / picodash_export_url_download.py
Created March 22, 2019 03:06 — forked from krisrak/picodash_export_url_download.py
Python script to download urls in a csv file
#!/usr/bin/python
import os
import sys
import urllib
import csv
try:
filename = sys.argv[1]
url_name = sys.argv[2]
@raineydavid
raineydavid / DL0320EN-1-1-LoadingtheData_PyTorch.ipynb
Created September 27, 2019 18:23
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.