Skip to content

Instantly share code, notes, and snippets.

layout title permalink
checklist_page
The Side Project Marketing Checklist
/marketing-checklist/

The Side Project Marketing Checklist is a comprehensive, chronologically ordered list of marketing tactics and ideas that you can try with your next side project. The list is free and open source so feel free to suggest your own additions anytime.

Pre-Launch

Pre-Launch

Market Research

Competitive Landscape

  • Make a list of competitive/alternative services.

    Finding competitors
  • Alexa

@AglaianWoman
AglaianWoman / signature.html
Created March 27, 2018 10:23 — forked from tforster/signature.html
Gmail Signature
<table border="0" cellpadding="0" cellspacing="0" width="445" style="font-family:'Times New Roman'">
<tbody>
<tr>
<td height="65" valign="top" width="65" style="padding-right:8px;vertical-align:top">
<table border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td height="65" width="65"><img alt="photo" height="65" width="65" style="vertical-align:initial;border-radius:0px;max-width:90px"
src="https://ci5.googleusercontent.com/proxy/5oomNlZNp3iyPEopuZyMtittq7y2tOgN3Gr8GNJ3Xx9D_EvoYh3fJlhCvmboDzi7gHDd2ZyyhLdE0sd1uZ07pS8F3rsReC2MxGszQUyE5c8Wlvb4FpCP1ps7UXdhzkE7X3dSgOk4Qfblslu7LKKd0TzaSnYbIBq1NOIsOYzE-9es4Ue2O6sesogA9fKv0nZ-lbY=s0-d-e1-ft#https://s3.amazonaws.com/ucwebapp.wisestamp.com/42a7f41a-9cca-437d-a291-f0fc0f4a9097/sidefacew500.format_png.resize_200x.png"></td>
</tr>
@AglaianWoman
AglaianWoman / gmail_signature.html
Created March 27, 2018 10:23 — forked from fisherds/gmail_signature.html
HTML file for my gmail signature
<body>
My favorite "Google look" gmail signature file.<br>
From Gmail: Settings -> General (first tab) -> Signature, then copy/paste from Chrome's display (without the dashes)<br>
<br>*** Some email body.***<br><br>
--
<table cellspacing="0">
<tbody>
<tr style="color:rgb(85,85,85);font-family:sans-serif;font-size:small">
<td style="border-top-style:solid;border-top-color:rgb(213,15,37);border-top-width:2px">
Dr. Dave Fisher&nbsp;
@AglaianWoman
AglaianWoman / How to download streaming video
Created March 10, 2018 08:56 — forked from danfinlay/How to download streaming video.md
How to download a streaming video with Google Chrome
#How to download streaming video
Streaming just means a download that they don't want you to keep. But Chrome's developer tools make it easy to access what's really going on under the hood.
##Open Developer Tools
From the page where you want to download some things, go into your chrome menu to open the developer tools. You can either:
1. (On a mac): Command-option-J
2. (On a PC): Control-alt-J
@AglaianWoman
AglaianWoman / linkedin.py
Created January 28, 2018 07:38 — forked from plasx/linkedin.py
linkedin login bs4
import requests
from bs4 import BeautifulSoup
client = requests.Session()
HOMEPAGE_URL = 'https://www.linkedin.com?allowUnsupportedBrowser=true'
LOGIN_URL = 'https://www.linkedin.com/uas/login-submit?allowUnsupportedBrowser=true'
html = client.get(HOMEPAGE_URL).content
soup = BeautifulSoup(html)
@AglaianWoman
AglaianWoman / website_scrapy_options
Created January 28, 2018 07:11 — forked from ivanliu/website_scrapy_options
How to scrapy website
1. Spynner
https://github.com/makinacorpus/spynner
a) Install libpng
http://ethan.tira-thompson.com/Mac_OS_X_Ports.html
b)
2. Mechanize
http://www.pythonforbeginners.com/mechanize/browsing-in-python-with-mechanize/
http://www.pythonforbeginners.com/cheatsheet/python-mechanize-cheat-sheet
@AglaianWoman
AglaianWoman / py_pkg.howto
Created January 28, 2018 06:57 — forked from ivanliu/py_pkg.howto
Packaging python
http://jtushman.github.io/blog/2013/06/17/sharing-code-across-applications-with-python/#3
https://hynek.me/articles/sharing-your-labor-of-love-pypi-quick-and-dirty/
http://python-notes.curiousefficiency.org/en/latest/index.html
Ref: http://developer.yahoo.com/blogs/hadoop/posts/2010/08/apache_hadoop_best_practices_a/
Apache Hadoop: Best Practices and Anti-Patterns
Wed August 18, 2010 (Updated)
by Arun C Murthy
5 Comments Bookmark Share
Apache Hadoop is a software framework to build large-scale, shared storage and computing infrastructures. Hadoop clusters are used for a variety of research and development projects, and for a growing number of production processes at Yahoo!, EBay, Facebook, LinkedIn, Twitter, and other companies in the industry. It is a key component in several business critical endeavors representing a very significant investment and technology component. Thus, appropriate usage of the clusters and Hadoop is critical in ensuring that we reap the best possible return on this investment.
This blog post represents compendium of best practices for applications running on Apache Hadoop. In fact, we introduce the notion of aGrid Pattern which, similar to a Design Pattern, represents a general reusable solution for app
@AglaianWoman
AglaianWoman / 1.0 README
Created January 28, 2018 06:55 — forked from bbzzzz/1.0 README
IMDB Sentiment Analysis using Naive Bayes
Sentiment Analysis using Naive Bayes
====================================
* Naive Bayes
* Add-1 smoothing
* 10-fold cross validation
* regular expression detecting negation words
Besides the regular method, the code also realized:
* Boolean Naive Bayes
* Naive Bayes with stop word