https://gcc.gnu.org/onlinedocs/gnat_ugn/Codesigning-the-Debugger.html
Getting started:
Related tutorials:
- MySQL-CLI: https://www.youtube.com/playlist?list=PLfdtiltiRHWEw4-kRrh1ZZy_3OcQxTn7P
- Analyzing Business Metrics: https://www.codecademy.com/learn/sql-analyzing-business-metrics
I hereby claim:
- I am bFraley on github.
- I am brettfraley (https://keybase.io/brettfraley) on keybase.
- I have a public key whose fingerprint is 7287 D7E9 5FA1 E952 A830 96FF FA72 3599 7A82 F012
To claim this, I am signing this object:
Credits go to this blog post: https://developerjack.com/blog/2015/12/11/Installing-PHP7-with-homebrew/
sudo xcodebuild -license
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function mainController() { | |
| $scope.people = [ | |
| { | |
| firstName: "Matt", | |
| lastName: "Smith" | |
| }, | |
| { | |
| firstName: "Drew", | |
| lastName: "House" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Logo is a list of lines used in print_logo below. | |
| logo = [ | |
| ' _ _ _ ', | |
| '| | _____ ___ __ (_)_ __ (_) __ _ ', | |
| '| |/ _ \ \/ / `_ \| | `_ \ | |/ _` |', | |
| '| | __/> <| | | | | | | || | (_| |', | |
| '|_|\___/_/\_\_| |_|_|_| |_|/ |\__,_|', | |
| ' |__/' | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def solution(n): | |
| roman_numerals = {1000:'M', | |
| 900: 'CM', | |
| 500: 'D', | |
| 400: 'CD', | |
| 100: 'C', | |
| 90: 'XC', | |
| 50: 'L', | |
| 40: 'XL', | |
| 10: 'X', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This came from here: http://davidwalsh.name/upgrade-nodejs | |
| sudo npm cache clean -f | |
| sudo npm install -g n | |
| sudo n stable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| 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> |