Skip to content

Instantly share code, notes, and snippets.

View dimitri-koenig's full-sized avatar

Dimitri König dimitri-koenig

View GitHub Profile

Setup Work

  • Make a list of competitive/alternative services: See competitors.md file
  • Set up Google News alerts for "side project marketing" and "startup marketing".
  • Make list of blogs, subscribe to RSS feeds in Feedbin:
    • Startup marketing blogs
    • Side project blogs
    • Small business marketing blogs
    • Chicago small business/startup bloggers
  • Come up with a name and domain name
@dimitri-koenig
dimitri-koenig / MyComponents.jsx
Created March 4, 2018 17:43 — forked from SachaG/MyComponents.jsx
Quick Apollo Mutations
// define component1, component2, etc. here
// will pass mutation as this.props.myMutation
export default withMutation({
name: 'myMutation',
args: {foo: 'String', bar: 'String'},
})(component1);
// will pass mutation as this.props.myOtherMutation
// this time, we don't have any arguments
@dimitri-koenig
dimitri-koenig / deploy.sh
Created June 14, 2018 09:17 — forked from BenSampo/deploy.sh
Laravel deploy script
# Change to the project directory
cd /home/forge/domain.com
# Turn on maintenance mode
php artisan down
# Pull the latest changes from the git repository
git pull origin master
# Install/update composer dependecies