[UIScreen mainScreen].bounds.size.height reports the following sizes, in points, for these iOS devices:
- Height: 1024
- Width: 768
- Height: 736
| <?php | |
| /* This is old, use https://github.com/tuupola/dbal-psr3-logger instead. */ | |
| namespace Doctrine\DBAL\Logging; | |
| class MonologSQLLogger implements SQLLogger { | |
| public $logger; | |
| public $sql = ""; |
It's more than you probably think
A user types the URL http://www.example.com into a browser.
The browser sends a request for the IP address of www.example.com to its local resolver (stub-resolver).
The stub-resolver queries the locally configured DNS Resolver for the IP address of www.example.com.
| $.recordCount.value = 99 |
| #!/bin/bash | |
| outfile=${*: -1:1} | |
| remove=1 | |
| echo "$@" > $outfile; "${@:1:$(($#-remove))}" >> $outfile |
| var gulp = require('gulp'), | |
| gutil = require('gulp-util'), | |
| sass = require('gulp-sass'), | |
| rubysass = require('gulp-ruby-sass'), | |
| fileinclude = require('gulp-file-include'), | |
| rename = require('gulp-rename'), | |
| notify = require('gulp-notify'), | |
| livereload = require('gulp-livereload'), | |
| lr = require('tiny-lr'), | |
| connect = require('gulp-connect'), |
| <?php | |
| ini_set('display_errors', 1); | |
| /** | |
| * This script check how PHP makes HTTPS (SSL/TLS) requests using PHP Streams | |
| * or cURL. Configuration options are passed as GET parameters, for example: | |
| * http://localhost/checksslcontext.php?reconfigure=1 | |
| * | |
| * Configuration: | |
| * http://localhost/checksslcontext.php | |
| * Basic PHP Streams using file_get_contents(). Default settings. |