Skip to content

Instantly share code, notes, and snippets.

View colindecarlo's full-sized avatar

Colin DeCarlo colindecarlo

  • Guelph, Ontario, Canada
View GitHub Profile

Keybase proof

I hereby claim:

  • I am colindecarlo on github.
  • I am colindecarlo (https://keybase.io/colindecarlo) on keybase.
  • I have a public key whose fingerprint is FC33 9802 6A76 E846 6702 942D 6120 6FD1 011C F0C1

To claim this, I am signing this object:

colin@fred:~/development/cm/jivial.dev (master)$ cloc src/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php
1 text file.
1 unique file.
0 files ignored.
http://cloc.sourceforge.net v 1.60 T=0.04 s (25.8 files/s, 76484.8 lines/s)
-------------------------------------------------------------------------------
Language files blank comment code
-------------------------------------------------------------------------------
PHP 1 414 1352 1198
var gulp = require('gulp');
var less = require('gulp-less');
var _ = require('underscore');
var paths = {
sources: {
less: 'app/assets/less/**/*.less'
},
dests: {
js: 'public/js',
var move = function (source, dest) {
var log = (function(dest) {
return function(source) {
return 'Moving ' + source + ' to ' + dest;
};
})(dest);
gulp.src(source)
.pipe(newer(dest))
.pipe(print(log))
.pipe(gulp.dest(dest));
$ php demo.php
array(2) {
["coolection"]=>
array(3) {
["memory_before"]=>
int(33828416)
["memory_after"]=>
int(33879160)
["delta"]=>
int(50744)
[Codeception\Exception\ModuleRequire]
REST module requirements are not met!
This module depends on module of Codeception\Lib\InnerBrowser
Please specify the dependent module inside module configuration section.
Example to use PhpBrowser as backend for REST module.
Framework modules can be used as well for functional testing of API.
--
modules:
enabled: [REST, ApiHelper]
depends:
PHP Catchable fatal error: Argument 1 passed to Codeception\Module\REST::_inject() must be an instance of Codeception\Lib\InnerBrowser, instance of Codeception\Module\REST given, called in /Users/colin/development/vehikl/slv/client/vendor/codeception/codeception/src/Codeception/Lib/ModuleContainer.php on line 166 and defined in /Users/colin/development/vehikl/slv/client/vendor/codeception/codeception/src/Codeception/Module/REST.php on line 111
Catchable fatal error: Argument 1 passed to Codeception\Module\REST::_inject() must be an instance of Codeception\Lib\InnerBrowser, instance of Codeception\Module\REST given, called in /Users/colin/development/vehikl/slv/client/vendor/codeception/codeception/src/Codeception/Lib/ModuleContainer.php on line 166 and defined in /Users/colin/development/vehikl/slv/client/vendor/codeception/codeception/src/Codeception/Module/REST.php on line 111
"NPI"
"Entity Type Code"
"Replacement NPI"
"Employer Identification Number (EIN)"
"Provider Organization Name (Legal Business Name)"
"Provider Last Name (Legal Name)"
"Provider First Name"
"Provider Middle Name"
"Provider Name Prefix Text"
"Provider Name Suffix Text"

Technical Interview

Practical Application and Aptitude

PHP

JavaScript

SQL

1. Objects in PHP have methods which are referred to as 'magic methods'. Name these methods and
describe thier individual functions.
2. PHP Objects support single inheritance, what keyword is used to define the inheritance
relationship and describe some key effects inheritance has.
3. PHP objects support property and method visibility. What are the keywords used to describe
visibility and describe how each keyword affects the property or method.
4. What is a Trait in PHP? What effect does a Trait have on a PHP class that uses it?