This install guide was written for Mac OS X, and Homebrew is required.
If you do not have Homebrew installed, you will find instructions here.
If you do have Homebrew installed, you will want to update it, just in case:
$ brew update
auth_basic "Restricted"; | |
auth_basic_user_file /etc/nginx/htpasswd; |
#! /bin/bash | |
## PHP 7 Initial Compile ## | |
## Some help from the various places like these. ## | |
# http://www.zimuel.it/install-php-7/ | |
# http://www.hashbangcode.com/blog/compiling-and-installing-php7-ubuntu | |
## Setup Ubuntu 15.04/15.10 ## | |
# Other dependencies for PHP 7. Add any missing ones from configure script | |
# complaints, plus some LAMP needs too. |
This install guide was written for Mac OS X, and Homebrew is required.
If you do not have Homebrew installed, you will find instructions here.
If you do have Homebrew installed, you will want to update it, just in case:
$ brew update
#!/bin/bash | |
# | |
# Bash script to setup headless Selenium (uses Xvfb and Chrome) | |
# (Tested on Ubuntu 12.04) trying on ubuntu server 14.04 | |
# Add Google Chrome's repo to sources.list | |
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee -a /etc/apt/sources.list | |
# Install Google's public key used for signing packages (e.g. Chrome) | |
# (Source: http://www.google.com/linuxrepositories/) |
# Put in 'templatetags' folder in your Django app. | |
from __future__ import absolute_import | |
from django import template | |
from django.utils.encoding import smart_text | |
from django.contrib.staticfiles import finders | |
from django.contrib.staticfiles.storage import staticfiles_storage | |
from django.conf import settings | |
from premailer import Premailer |
https://facebook.github.io/react-native/docs/getting-started.html#content http://facebook.github.io/react-native/docs/android-setup.html
We're going to be use io.js because node has a lot of trouble with the react-native
cli.
Download io.js - https://iojs.org/en/
public class OAuthActivity extends Activity { | |
public static String OAUTH_URL = "https://github.com/login/oauth/authorize"; | |
public static String OAUTH_ACCESS_TOKEN_URL = "https://github.com/login/oauth/access_token"; | |
public static String CLIENT_ID = "YOUR_CLIENT_ID"; | |
public static String CLIENT_SECRET = "YOUR_CLIENT_SECRET"; | |
public static String CALLBACK_URL = "http://localhost"; | |
@Override |
package com.ronbeltran.projectname; | |
import android.content.Context; | |
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.UUID; | |
public class TaskLab { |
package com.ronbeltran.projectname; | |
import android.os.Bundle; | |
import android.support.v4.app.Fragment; | |
import android.support.v4.app.FragmentActivity; | |
import android.support.v4.app.FragmentManager; | |
public abstract class SingleFragmentActivity extends FragmentActivity { | |
protected abstract Fragment createFragment(); |
Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discuss around concrete examples, not hand-waving abstractions. Don't say you did something, provide a URL that proves it.
Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.