Credits go to this blog post: https://developerjack.com/blog/2015/12/11/Installing-PHP7-with-homebrew/
sudo xcodebuild -license
| /* | |
| This should compile using: | |
| gcc X11_testAPI.c-o X11_test -I /usr/include/X11 -L /usr/X11/lib -lX11 | |
| */ | |
| // X11 header files. | |
| #include <X11/Xlib.h> | |
| #include <X11/Xutil.h> | |
| #include <X11/Xos.h> |
| This came from here: http://davidwalsh.name/upgrade-nodejs | |
| sudo npm cache clean -f | |
| sudo npm install -g n | |
| sudo n stable |
| def solution(n): | |
| roman_numerals = {1000:'M', | |
| 900: 'CM', | |
| 500: 'D', | |
| 400: 'CD', | |
| 100: 'C', | |
| 90: 'XC', | |
| 50: 'L', | |
| 40: 'XL', | |
| 10: 'X', |
| # Logo is a list of lines used in print_logo below. | |
| logo = [ | |
| ' _ _ _ ', | |
| '| | _____ ___ __ (_)_ __ (_) __ _ ', | |
| '| |/ _ \ \/ / `_ \| | `_ \ | |/ _` |', | |
| '| | __/> <| | | | | | | || | (_| |', | |
| '|_|\___/_/\_\_| |_|_|_| |_|/ |\__,_|', | |
| ' |__/' | |
| ] |
| function mainController() { | |
| $scope.people = [ | |
| { | |
| firstName: "Matt", | |
| lastName: "Smith" | |
| }, | |
| { | |
| firstName: "Drew", | |
| lastName: "House" | |
| } |
Credits go to this blog post: https://developerjack.com/blog/2015/12/11/Installing-PHP7-with-homebrew/
sudo xcodebuild -license
I hereby claim:
To claim this, I am signing this object:
Getting started:
Related tutorials: