I hereby claim:
- I am zeroasterisk on github.
- I am zeroasterisk (https://keybase.io/zeroasterisk) on keybase.
- I have a public key whose fingerprint is CC3A 090E 2012 05DF 18A8 0928 D5CC A0D0 068D B533
To claim this, I am signing this object:
| In this example, I am scanning for all of these classes | |
| https://github.com/awatson1978/clinical-ui-vocabulary/ |
| <?php | |
| /** | |
| * Check any HTTPS URL to validate it | |
| * | |
| * - checkdomain verifies the SSL cert only (working, slow) | |
| * - checkcurl verifies the URL can be loaded via CURL (not working) | |
| * | |
| */ | |
| App::uses('HttpSocket', 'Utility'); |
| <?php | |
| /** | |
| * Simple Benchmarker for PHP While Loops | |
| * | |
| * USES pcntl_fork() to split to different processes, | |
| * so we assure RAM utilization doesn't "bleed" | |
| * | |
| * Usage: | |
| * We are using php files for the large test, just to get a bunch of "random" |
| #!/usr/bin/env node | |
| // ------------------- | |
| // nightwatchjs script running | |
| // - automatically downloads the selenium jar if missing | |
| // - automatically passes through all arguments to the runner.js | |
| // ------------------- | |
| var fs = require('fs'); | |
| var path = 'Vendor/selenium-server-standalone-2.44.0.jar'; |
| http { | |
| # Gzip Settings | |
| gzip on; | |
| gzip_disable "msie6"; | |
| gzip_buffers 16 8k; | |
| gzip_comp_level 6; | |
| gzip_http_version 1.0; | |
| gzip_min_length 0; | |
| gzip_types text/plain text/css text/javascript text/xml application/xml application/xml+rss application/x-javascript image/x-icon; |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # | |
| # ---------------------------------------- | |
| # | |
| # Setup: | |
| # $ sudo pip install --upgrade git+git://github.com/rackspace/pyrax.git | |
| # $ vim ~/.rackspace_cloud_credentials | |
| # [rackspace_cloud] |
| /** | |
| * Custom jQuery selector | |
| * :val("inputvalue") | |
| * | |
| * usage: $('input:val("foo")') | |
| */ | |
| jQuery.extend(jQuery.expr[':'], { | |
| val: function (el, i, meta) { | |
| return meta[3] == jQuery(el).val(); | |
| } |