Skip to content

Instantly share code, notes, and snippets.

View reactivepixel's full-sized avatar
🤖
Automated Autonomous Automatons

Chapman reactivepixel

🤖
Automated Autonomous Automatons
View GitHub Profile
@reactivepixel
reactivepixel / .eslintignore
Last active June 11, 2019 20:12
eslint install
node_modules/
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDD1sohs5eyya5X367177s/LU39vxzif2w/YjxdOuzI+fp/BuCv7+D/uoJLebH4Bgbk0Broto6z/WwAYoAA1QZ+NVLcZ6Ssqj/RgReUAWGT9MgbyhI4X6ljG4FNx8hdkVXv/30Hv5LOe9js+mbJOcImBY4FOpLFM4RxLj/N3vlBKBer4AOmUmIHi/Qi4yt8maPaPJak6FoUvDg0EarBZ1FMiAKt+/FM2EaZnfG3F/NR3kwOy5i9Aqq7SWdM3+ePJ6IwfeWvCQ9zOrrRSbqbbzw9zq+OMuSFx5bsM7+yceNKwglvX1Fnmld5J9Xi0wscnmvw6thO3y/dNqwfA/VaiDkOqCDs+zZVYu67ohp4hLiWLHJP8wjLjSV+zIBVYcVcSa6EgUUEgPZJfu8S2CsPRG/h8GnZMBH3T3GdJ87VC5/jyRdq1b7TvG5NOcPrO4PMmkm3NS3O3CwP5d6zt5H2T7FBiEEPxPhkKiXAYjM6Ctn5Dy0bk6KDwn0ndA/2PKeXJu7SHjxzDzFiBz+isbwnRTt3TxUYEXNm8JEFJNOdyXamaK+sZFrbEzYd8XSWNjPaN/7z4HL0E22ekTnpZpd3RiGiNI3+39/gUtpeitlO4p7jV1fX8RubP4AYthu8p5LewJu71a5K/uXfmJtiDjHvcAmABM21sKKEwW449tUJ0RcCrQ== chapman@apextion.com
{
"youtube_submission_url": "xxx",
"github_main_repo_link": "xxx",
"release_version": "v1.0.0",
"production_live_link": "xxx",
"author_last_name": "xxx",
"comments": "Any extra-ordinary considerations items, beyond the base level scope of the assignment you completed or attempted. Be succinct."
}
{
"author_last_name": "Chapman",
"github_public_repo_link": "https://github.com/reactivepixel/Util-Tool",
"github_tagged_commit_link": "https://github.com/reactivepixel/Util-Tool/tree/v2.1.4",
"npm_package_name" : "chapman-debug-util",
"npm_package_link" : "https://www.npmjs.com/package/apextion-util",
"tagged_version": "v2.1.4",
"comments": "Any extra-ordinary considerations items, beyond the minimum level of requirements of the assignment you completed or attempted. Be succinct."
}
{
"author_last_name": "Chapman",
"github_public_repo_link": "https://github.com/reactivepixel/URL-Shortener",
"github_tagged_commit_link": "https://github.com/reactivepixel/URL-Shortener/tree/v2.1.4",
"tagged_version": "v2.1.4",
"comments": "Any extra-ordinary considerations items, beyond the minimum level of requirements of the assignment you completed or attempted. Be succinct."
}
{
"youtube_submission_url": "xxx",
"github_static_repo_link": "xxx",
"github_node_repo_link": "xxx",
"github_php_repo_link": "xxx",
"production_static_live_link": "xxx",
"production__node_live_link": "xxx",
"production_php_live_link": "xxx",
"author_last_name": "xxx",
"non_root_ssh_user": "xxx",
{
"youtube_submission_url": "xxx",
"github_main_repo_link": "xxx",
"version": "xxx",
"production_live_link": "xxx",
"author_last_name": "xxx",
"non_root_ssh_user": "xxx",
"non_root_ssh_pass": "xxx",
"root_mysql_user": "xxx",
"root_mysql_pass": "xxx",
@reactivepixel
reactivepixel / env.json
Last active April 13, 2017 00:44
Basic Assignment Submission Info
{
"youtube_submission_url": "xxx",
"github_main_repo_link": "xxx",
"release_version": "v1.0.0",
"production_live_link": "xxx",
"author_last_name": "xxx",
"non_root_ssh_user": "xxx",
"non_root_ssh_pass": "xxx",
"root_mysql_user": "xxx",
"root_mysql_pass": "xxx",
@reactivepixel
reactivepixel / __models_apps.js
Created August 5, 2016 02:39
Dynamic API Unit Tests
const expect = require('chai').expect;
const request = require('supertest');
const faker = require('faker');
const App = require('../src/models/app');
describe('App Model', () => {
var server;
var testApps;
var tempApp;
@reactivepixel
reactivepixel / __apps.js
Created August 3, 2016 01:03
Static API Unit Tests
const expect = require('chai').expect;
const request = require('supertest');
describe('App Routes', () => {
var server;
var app;
beforeEach(() => {
server = require('../src/server.js');
});