Directions for getting windows 10 to work with virtualbox 6.0.12.
directions for getting windows 10 to work with virtualbox 5.2 based on this page
This procedure is tested on Mac OS X 10.14.0 with Xcode Developer Tools installed (xCode).
PHP 5.6, 7.0, 7.1, and 7.2 installed with Homebrew following the instructions here.
Download the following files from Oracle website (yes, you need to create an account and accept terms):
These directions are based on this YouTube video. The comments helped with making sure I was able to connect to the Azure SQL Edge (SQL Server) instance running via Docker the first time.
Homebrew is an open source package manager for macOS and Linux. ALthough we will not need it for
these instructions, if you do not have the brew command already, this will install it.
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
| /* | |
| https://jwt.io/introduction/ | |
| In its compact form, JSON Web Tokens consist of three parts separated by dots (.), which are: | |
| Header | |
| Payload | |
| Signature | |
| Therefore, a JWT typically looks like the following. |
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
| <?php | |
| /** | |
| * Time unit defaults to seconds to follow the example shown here: | |
| * http://mitan.co.uk/erlang/elgcmath.htm | |
| * exp calculates e to some specified exponent: | |
| * https://secure.php.net/manual/en/function.exp.php | |
| * factorial function for php: | |
| * http://www.hackingwithphp.com/4/18/0/recursive-functions | |
| * Basically, all calculated values are private. |
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
| -- See what has access to a particular table (direct and inherited): | |
| select Grantee,'Granted Through Role' as Grant_Type, role, table_name | |
| from role_tab_privs rtp, dba_role_privs drp | |
| where rtp.role = drp.granted_role | |
| and table_name = :tablename | |
| union | |
| select Grantee,'Direct Grant' as Grant_type, null as role, table_name | |
| from dba_tab_privs | |
| where table_name = :tablename; |
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
| { | |
| "AL": "Alabama", | |
| "AK": "Alaska", | |
| "AS": "American Samoa", | |
| "AZ": "Arizona", | |
| "AR": "Arkansas", | |
| "CA": "California", | |
| "CO": "Colorado", | |
| "CT": "Connecticut", | |
| "DE": "Delaware", |
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
| [user] | |
| name = name | |
| email = email | |
| [core] | |
| excludesfile = /Users/username/.gitignore_global | |
| autocrlf = input | |
| [difftool "sourcetree"] | |
| cmd = opendiff \"$LOCAL\" \"$REMOTE\" | |
| path = | |
| [mergetool "sourcetree"] |
NewerOlder