In your command-line run the following commands:
brew doctor
brew update
extension UIColor { | |
static var accent: UIColor { | |
UIColor(named: "Accent")! | |
} | |
static var primary: UIColor { | |
UIColor(named: "Primary")! | |
} | |
static var primaryText: UIColor { |
In your command-line run the following commands:
brew doctor
brew update
/** | |
* AuthController | |
* | |
* @description :: Server-side logic for managing auths | |
* @help :: See http://links.sailsjs.org/docs/controllers | |
*/ | |
module.exports = { | |
index: function (req, res) { | |
var email = req.param('email'); |
import java.io.FileDescriptor; | |
import java.io.FileOutputStream; | |
import java.io.IOException; | |
import java.io.OutputStream; | |
import java.io.PrintStream; | |
public class HelloWorld{ | |
private static HelloWorld instance; | |
public static void main(String[] args){ | |
instantiateHelloWorldMainClassAndRun(); |