Skip to content

Instantly share code, notes, and snippets.

# Crane-Util-CV2-pipeline
CV2 pipeline for post-processing with Tesserocr
# Installation
You will need OpenCV 2.3.1+ on your computer to use the node wrapper. On Mac you may install using brew:
```
brew tap homebrew/science
@TheRyanHickman
TheRyanHickman / sales-lead-model.csv
Last active July 5, 2019 09:50
Sales Lead Data Model
Job Title Role Company Size Industry Visits to website in past 7 days Visits to website in past 30 days Number of emails received Number of emails clicked Days to Close
Founder Executive 10 SaaS 4 12 3 1 10
CEO Executive 2 SaaS 5 2 3 1 7
Sales Coordinator VP 20 Marketplace 3 2 4 2 3
@TheRyanHickman
TheRyanHickman / process.csv
Last active January 2, 2019 05:44
App development process
process description
idea coming up with the idea; core functionality and fleshing out the backbone of the app
acceptance criteria defining what is conisdered done
designing the stack deteremining the backend instrastructure of the application
design interative enhancements to get the design to look and feel the right way
testing properly testing each feature agaist the acceptance criteria
measuring and analytics installing the scripts and features needed to allow the app to be tracked in analytics tools marketing tools and other utilities
@TheRyanHickman
TheRyanHickman / Signup.jsx
Created November 30, 2018 16:55
Sign up generated by CraneAi
import React from 'react';
import PropTypes from 'prop-types';
import {
Container, Content, Text, Form, Item, Label, Input, Button,
} from 'native-base';
import { Actions } from 'react-native-router-flux';
import Loading from './Loading';
import Messages from './Messages';
import { translate } from '../../i18n';
import Header from './Header';
@TheRyanHickman
TheRyanHickman / gist:e0563d6465f29a6c0f0608525cdb8b55
Last active November 16, 2018 03:39
AI Created Todo view created by AI
import React from 'react';
import { connect } from 'react-redux';
import { bindActionCreators } from 'redux';
import { Row,
Col ,
Navbar,
NavItem,
NavbarBrand,
Input,
@TheRyanHickman
TheRyanHickman / upload-snippet.js
Last active May 17, 2017 14:34
Saving a file with Node Js
/** Needed dependencies to make this work */
const request = require("request")
const fs = require('fs');
function saveFile(remoteFilePath)
{
/** Create folder path aligned to the category of the image, you may nest /uploads/[category] */
var folderPath = __dirname + "/folderPath"
var filename = folderPath + "/" + (new Date().getTime()).toString() + "-snapchat-chat.jpg"
var tabGroup = Titanium.UI.createTabGroup({
backgroundColor:'blue',
tabsBackgroundColor:'white',
});
var win1 = Titanium.UI.createWindow({
title:'Tab 2',
backgroundColor:'#E6E0F8',
navBarHidden: true,
tabBarHidden: true,
@TheRyanHickman
TheRyanHickman / gist:9ec57d3f743562eb1528
Last active August 29, 2015 14:02
Schedule a background job via cloud code
/**
* Parse Background Jobs via Rest API Scheduler Cloud Module
* @name Ryan Hickman
*
* Cloud Module for scheduling parse background jobs via rest api as a message queue
*
* To use this Cloud Module in Cloud Code, start by requiring
* the <code>mailgun</code> module and initializing it using your
* Mailgun domain name and api key.
*
@TheRyanHickman
TheRyanHickman / gist:a471674792f61453dd95
Last active August 29, 2015 14:01
Using facebook connect with Parse + Appcelerator on Android
var parseLoginCheck = function(APP_ID, REST_KEY, u, p, success, error) {
/* ******************************************
*
* Alternative Login for Parse (Android Specific)
*
*/
@TheRyanHickman
TheRyanHickman / gist:11407215
Last active August 29, 2015 14:00
Ajax Page Loader
checkjQuery = false;
jQueryScriptOutputted = false;
//Content ID
var AJAX_content = 'contenuto';
//Search Class
var AJAX_search_class = 'form-search';
var AJAX_ignore_string = new String('#, /wp-, .pdf, .zip, .rar');