- FounderDating – premiere site for founders/co-founders
- CoFoundersLab – find a co-founder in any city
- Stanford Business School Interns – hire a Stanford Bus School intern cheap
- YouNoodle – founder matching
- FoundersHookUp – Invite-only find a co-founder
- Foundrs – co-founder equity calculator
- How to hire developers – mike greenfield
- Startup Weekend – Launch a Startup and meet a co-founder
- Meetup – go to a Meetup!
- PartnerUp– small business site to find partners, business opportunities, real estate, etc.
- Angel List – Angel List jobs board
Author: Abdullah Yahya
Startup Groups
- Lean Startup Circle – Google Group for startup advice
- LUXr – Lean UX residency
- Women 2.0 – Launch a startup for women
- Meetup – Meet people you’re interested in
- Top Startup Conferences (North America)
- Startup Weekend– Launch a Startup in 54 hours
- Startup Weekend Next – 5 weeks to build a startup for <$300
-
Startup America Partnership – access to Relationships, Opportunities and Knowledge
- The Lean Startup Machine – Launch a Startup in 48 hours
- Startup Monthly – Launch a Startup in a month
- Startup Grind – community looking to be educated, and network with the smartest startup minds
Most Popular Web Hosting Decisions of Y-Combinator Companies (2011)
Web Host: Amazon
Email Host: Google
DNS Host: Other/Self-Hosted (followed by Amazon)
Registrar: GoDaddy
SSL Issuer: GeoTrust
Certificate Type: Star
For a complete breakdown, visit http://jpf.github.io/domain-profiler/ycombinator.html
Debugging Javascript Using console.log & Conditional Blocks
When developing a site, you may have a main javascript file that contains various blocks of code for different parts of your site. As time goes on, this file could get really long and you may not want to break it up to keep minimize requests and the number of files to maintain. Sometimes you might accidentally have code in one block that is meant for one part of your site interfere with code from another. In addition, you may find it hard to see which blocks of code are getting executed. One way to overcome this is by setting up your code as follows:
/** * Code to do one thing on one part of your site, * e.g. slide show your product pages */ (function ($) { $(document).ready(function () { if ($("body.products").size() > 0) { if (typeof console != 'undefined' && console !== null) { console.log("slide show on product pages called."); } // put code here ... } }); }(jQuery)); /** * Code to do one thing on one part of your site, * e.g. custom animation your resources pages */ (function ($) { $(document).ready(function () { if ($("body.resources").size() > 0) { if (typeof console != 'undefined' && console !== null) { console.log("custom animation on resources pages called."); } // put code here ... } }); }(jQuery));
Embedding Google Maps into a Website
Google recently updated Google Maps and while it looks nice, I actually had to go back to the old (classic) Google Maps to find how to get the embed code to embed a map into a website. If you need to embed a Google Map into your website, you can follow these steps:
1. Go to maps.google.com and search for your location.
2. If you see the new Google Map, click on the gear in top right and select “Classic Maps”
Font Awesome: 361 Font Icons
Adding icons to a website can easily make it look more polished, but it can also be a hassle to find good fonts and deal with resizing them or styling them as images. I came across this site called Font Awesome that offers 361 fonts as icons so you can style these icons easily via CSS and easily include them into your site.
http://fortawesome.github.io/Font-Awesome/
Article Submission Directories to Increase Inbound Links
When it comes to search engine optimization and internet marketing, getting inbound links from high quality websites (those that have a high Google page rank) is very important. One way to do this is by writing articles related to your website and including links from it to your site. Finding quality sites to submit articles to and managing your submissions can be a lot of work.
Following is a list of article submission sites with their Google Page Rank
- http://www.ehow.com/(7)
- http://www.newsvine.com/ (7)
- http://www.examiner.com (7)
- www.squidoo.com (7)
- www.gather.com (PR = 6)
- www.hubbpages.com (PR = 6)
- www.ezinearticles.com (PR = 6)
- www.articlesbase.com/(5)
- http://www.isnare.com/(5)
- http://trcb.com/(3) Continue reading Article Submission Directories to Increase Inbound Links
Preparing a Video on Windows for Kickstarter
Recently, I had to take and prepare a video for uploading to Kickstarter. Since I wanted a high quality video and I did this all by myself, I just used my phone (Samsung Google Nexus), put it on a tripod and filmed myself in HD. I then transferred the video over USB to my Windows laptop, opened it up in Windows Movie Maker, added some still images, and then saved the output in 1280×720 which has a 16:9 aspect ratio.
Converting a video from 16:9 to 4:3 aspect ratio for Kickstarter
It turns out, for some reason, Kickstarter uses the old 4:3 aspect ratio for videos. Since I wanted to show as much of the video possible without any black bars, I had to crop the video from a 16:9 aspect ratio to 4:3. The width of the Kickstarter video area is 620px wide so I wanted the video to be that wide. I decided to just go with 640 px wide and crop the video to 640 x 480 since that’s a common size. I did this by downloading HandBrake and automatic cropping as shown in the following screenshot. I used the High Profile for the highest quality output. Click on the image to enlarge. Handbrake will automatically crop the black bars.
Continue reading Preparing a Video on Windows for Kickstarter
Stately – CSS Map of the United States
Here’s a nice, scalable, customizable map of the United States.
http://intridea.github.io/stately/
I wish this existed for all countries.
Password Management and Generator
There are many password management tools and password generators. Here are two that I’ve used that seem pretty good.
Password Generator
Password Manager
Dashlane can also sync your passwords across multiple computers and devices so you don’t have to manually do so. It also has a nice interface.