create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| // In your gatsby-config.js | |
| module.exports = { | |
| plugins: [ | |
| /* | |
| * Gatsby's data processing layer begins with “source” | |
| * plugins. Here the site sources its data from Wordpress. | |
| */ | |
| { | |
| resolve: "gatsby-source-wordpress", | |
| options: { |
| <?php | |
| $user = 'root'; | |
| $password = 'root'; | |
| $db = 'SQL-Injection'; | |
| $host = 'localhost'; | |
| $port = 3306; | |
| $link = mysql_connect( | |
| "$host:$port", |
| <?php | |
| $user = 'root'; | |
| $password = 'root'; | |
| $db = 'SQL-Injection'; | |
| $host = 'localhost'; | |
| $port = 3306; | |
| $link = mysql_connect( | |
| "$host:$port", |
| # The following types define the data model of the example service | |
| # based on which the GraphQL API is generated | |
| type User @model { | |
| id: ID! @isUnique | |
| name: String | |
| dateOfBirth: DateTime | |
| # Uncomment below - you can declare relations between models like this |
The following document is a written account of the Code School screencasting framework. It should be used as a reference of the accompanying screencast on the topic.
You're probably aren't going to take the time to read this document if you're not interested, but there are a lot of nice side effects caused by learning how to create quality screencasts.
| var OFF = 0, WARN = 1, ERROR = 2; | |
| module.exports = exports = { | |
| "env": { | |
| "es6": true | |
| }, | |
| "ecmaFeatures": { | |
| // env=es6 doesn't include modules, which we are using | |
| "modules": true |
| [PHP] | |
| ;;;;;;;;;;;;;;;;;;; | |
| ; About php.ini ; | |
| ;;;;;;;;;;;;;;;;;;; | |
| ; PHP's initialization file, generally called php.ini, is responsible for | |
| ; configuring many of the aspects of PHP's behavior. | |
| ; PHP attempts to find and load this configuration from a number of locations. | |
| ; The following is a summary of its search order: |