diff --git a/RapidWebHomework2018-master/LICENSE b/RapidWebHomework2018-master/LICENSE new file mode 100644 index 0000000..dd837fc --- /dev/null +++ b/RapidWebHomework2018-master/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2013-2017 Blackrock Digital LLC + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/RapidWebHomework2018-master/README.md b/RapidWebHomework2018-master/README.md new file mode 100644 index 0000000..a4fd983 --- /dev/null +++ b/RapidWebHomework2018-master/README.md @@ -0,0 +1,13 @@ +# RapidWebHomework2018 + +Starter Code for Rapid web homework 1. + +## What to do + +Since this is some dummy data, change everything to reflect you and that's it! + +### Deadline +End of today 04/17 or First thing tomorrow 04/18 + +Tenkiuu + diff --git a/css/resume.css b/RapidWebHomework2018-master/css/resume.css similarity index 100% rename from css/resume.css rename to RapidWebHomework2018-master/css/resume.css diff --git a/css/resume.min.css b/RapidWebHomework2018-master/css/resume.min.css similarity index 100% rename from css/resume.min.css rename to RapidWebHomework2018-master/css/resume.min.css diff --git a/RapidWebHomework2018-master/gulpfile.js b/RapidWebHomework2018-master/gulpfile.js new file mode 100644 index 0000000..6cdee32 --- /dev/null +++ b/RapidWebHomework2018-master/gulpfile.js @@ -0,0 +1,125 @@ +var gulp = require('gulp'); +var sass = require('gulp-sass'); +var browserSync = require('browser-sync').create(); +var header = require('gulp-header'); +var cleanCSS = require('gulp-clean-css'); +var rename = require("gulp-rename"); +var uglify = require('gulp-uglify'); +var pkg = require('./package.json'); + +// Set the banner content +var banner = ['/*!\n', + ' * Start Bootstrap - <%= pkg.title %> v<%= pkg.version %> (<%= pkg.homepage %>)\n', + ' * Copyright 2013-' + (new Date()).getFullYear(), ' <%= pkg.author %>\n', + ' * Licensed under <%= pkg.license %> (https://github.com/BlackrockDigital/<%= pkg.name %>/blob/master/LICENSE)\n', + ' */\n', + '' +].join(''); + +// Compiles SCSS files from /scss into /css +gulp.task('sass', function() { + return gulp.src('scss/resume.scss') + .pipe(sass()) + .pipe(header(banner, { + pkg: pkg + })) + .pipe(gulp.dest('css')) + .pipe(browserSync.reload({ + stream: true + })) +}); + +// Minify compiled CSS +gulp.task('minify-css', ['sass'], function() { + return gulp.src('css/resume.css') + .pipe(cleanCSS({ + compatibility: 'ie8' + })) + .pipe(rename({ + suffix: '.min' + })) + .pipe(gulp.dest('css')) + .pipe(browserSync.reload({ + stream: true + })) +}); + +// Minify custom JS +gulp.task('minify-js', function() { + return gulp.src('js/resume.js') + .pipe(uglify()) + .pipe(header(banner, { + pkg: pkg + })) + .pipe(rename({ + suffix: '.min' + })) + .pipe(gulp.dest('js')) + .pipe(browserSync.reload({ + stream: true + })) +}); + +// Copy vendor files from /node_modules into /vendor +// NOTE: requires `npm install` before running! +gulp.task('copy', function() { + gulp.src([ + 'node_modules/bootstrap/dist/**/*', + '!**/npm.js', + '!**/bootstrap-theme.*', + '!**/*.map' + ]) + .pipe(gulp.dest('vendor/bootstrap')) + + gulp.src(['node_modules/jquery/dist/jquery.js', 'node_modules/jquery/dist/jquery.min.js']) + .pipe(gulp.dest('vendor/jquery')) + + gulp.src(['node_modules/jquery.easing/*.js']) + .pipe(gulp.dest('vendor/jquery-easing')) + + gulp.src([ + 'node_modules/font-awesome/**', + '!node_modules/font-awesome/**/*.map', + '!node_modules/font-awesome/.npmignore', + '!node_modules/font-awesome/*.txt', + '!node_modules/font-awesome/*.md', + '!node_modules/font-awesome/*.json' + ]) + .pipe(gulp.dest('vendor/font-awesome')) + + gulp.src([ + 'node_modules/devicons/**/*', + '!node_modules/devicons/*.json', + '!node_modules/devicons/*.md', + '!node_modules/devicons/!PNG', + '!node_modules/devicons/!PNG/**/*', + '!node_modules/devicons/!SVG', + '!node_modules/devicons/!SVG/**/*' + ]) + .pipe(gulp.dest('vendor/devicons')) + + gulp.src(['node_modules/simple-line-icons/**/*', '!node_modules/simple-line-icons/*.json', '!node_modules/simple-line-icons/*.md']) + .pipe(gulp.dest('vendor/simple-line-icons')) +}) + +// Default task +gulp.task('default', ['sass', 'minify-css', 'minify-js', 'copy']); + +// Configure the browserSync task +gulp.task('browserSync', function() { + browserSync.init({ + server: { + baseDir: '' + }, + }) +}) + +// Dev task with browserSync +gulp.task('dev', ['browserSync', 'sass', 'minify-css', 'minify-js'], function() { + gulp.watch('scss/*.scss', ['sass']); + gulp.watch('css/*.css', ['minify-css']); + gulp.watch('js/*.js', ['minify-js']); + // Reloads the browser whenever HTML or JS files change + gulp.watch('*.html', browserSync.reload); + gulp.watch('js/**/*.js', browserSync.reload); +}); diff --git a/RapidWebHomework2018-master/img/profile.png b/RapidWebHomework2018-master/img/profile.png new file mode 100644 index 0000000..e6f2ede Binary files /dev/null and b/RapidWebHomework2018-master/img/profile.png differ diff --git a/RapidWebHomework2018-master/img/profile1.png b/RapidWebHomework2018-master/img/profile1.png new file mode 100644 index 0000000..e6f2ede Binary files /dev/null and b/RapidWebHomework2018-master/img/profile1.png differ diff --git a/RapidWebHomework2018-master/js/resume.js b/RapidWebHomework2018-master/js/resume.js new file mode 100644 index 0000000..78c850b --- /dev/null +++ b/RapidWebHomework2018-master/js/resume.js @@ -0,0 +1,28 @@ +(function($) { + "use strict"; // Start of use strict + + // Smooth scrolling using jQuery easing + $('a.js-scroll-trigger[href*="#"]:not([href="#"])').click(function() { + if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) { + var target = $(this.hash); + target = target.length ? target : $('[name=' + this.hash.slice(1) + ']'); + if (target.length) { + $('html, body').animate({ + scrollTop: (target.offset().top) + }, 1000, "easeInOutExpo"); + return false; + } + } + }); + + // Closes responsive menu when a scroll trigger link is clicked + $('.js-scroll-trigger').click(function() { + $('.navbar-collapse').collapse('hide'); + }); + + // Activate scrollspy to add active class to navbar items on scroll + $('body').scrollspy({ + target: '#sideNav' + }); + +})(jQuery); // End of use strict diff --git a/RapidWebHomework2018-master/js/resume.min.js b/RapidWebHomework2018-master/js/resume.min.js new file mode 100644 index 0000000..1b98478 --- /dev/null +++ b/RapidWebHomework2018-master/js/resume.min.js @@ -0,0 +1,6 @@ +/*! + * Start Bootstrap - Resume v4.0.0-beta.2 (https://startbootstrap.com/template-overviews/resume) + * Copyright 2013-2017 Start Bootstrap + * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-resume/blob/master/LICENSE) + */ +!function(e){"use strict";e('a.js-scroll-trigger[href*="#"]:not([href="#"])').click(function(){if(location.pathname.replace(/^\//,"")==this.pathname.replace(/^\//,"")&&location.hostname==this.hostname){var t=e(this.hash);if((t=t.length?t:e("[name="+this.hash.slice(1)+"]")).length)return e("html, body").animate({scrollTop:t.offset().top},1e3,"easeInOutExpo"),!1}}),e(".js-scroll-trigger").click(function(){e(".navbar-collapse").collapse("hide")}),e("body").scrollspy({target:"#sideNav"})}(jQuery); \ No newline at end of file diff --git a/RapidWebHomework2018-master/package.json b/RapidWebHomework2018-master/package.json new file mode 100644 index 0000000..39f91b8 --- /dev/null +++ b/RapidWebHomework2018-master/package.json @@ -0,0 +1,44 @@ +{ + "title": "Resume", + "name": "startbootstrap-resume", + "version": "4.0.0-beta.2", + "description": "Resume is a simple, yet elegant resume and CV theme for Bootstrap 4.", + "keywords": [ + "css", + "sass", + "html", + "responsive", + "theme", + "template" + ], + "homepage": "https://startbootstrap.com/template-overviews/resume", + "bugs": { + "url": "https://github.com/BlackrockDigital/startbootstrap-resume/issues", + "email": "feedback@startbootstrap.com" + }, + "license": "MIT", + "author": "Start Bootstrap", + "contributors": [ + "David Miller (http://davidmiller.io/)" + ], + "repository": { + "type": "git", + "url": "https://github.com/BlackrockDigital/startbootstrap-resume.git" + }, + "dependencies": { + "bootstrap": "^4.0.0-beta.2", + "devicons": "^1.8.0", + "jquery": "^3.2.1", + "popper.js": "^1.12.6", + "simple-line-icons": "^2.4.1" + }, + "devDependencies": { + "browser-sync": "2.18.13", + "gulp": "^3.9.1", + "gulp-clean-css": "3.9.0", + "gulp-header": "1.8.9", + "gulp-rename": "^1.2.2", + "gulp-sass": "^3.1.0", + "gulp-uglify": "3.0.0" + } +} diff --git a/index.html b/RapidWebHomework2018-master/rapidassignment1.html similarity index 72% rename from index.html rename to RapidWebHomework2018-master/rapidassignment1.html index 06f2010..8040ab7 100644 --- a/index.html +++ b/RapidWebHomework2018-master/rapidassignment1.html @@ -1,310 +1,310 @@ - - - -
- - - - - - -Passionate about designing and developing Innovative products that are not just Intuitive but also serve as creative solutions to problems people face in the society
- -Bring to the table win-win survival strategies to ensure proactive domination. At the end of the day, going forward, a new normal that has evolved from generation X is on the runway heading towards a streamlined cloud solution. User generated content in real-time will have multiple touchpoints for offshoring.
-Capitalize on low hanging fruit to identify a ballpark value added activity to beta test. Override the digital divide with additional clickthroughs from DevOps. Nanotechnology immersion along the information highway will close the loop on focusing solely on the bottom line.
-Podcasting operational change management inside of workflows to establish a framework. Taking seamless key performance indicators offline to maximise the long tail. Keeping your eye on the ball while performing a deep dive on the start-up mentality to derive convergence on cross-platform integration.
-Collaboratively administrate empowered markets via plug-and-play networks. Dynamically procrastinate B2C users after installed base benefits. Dramatically visualize customer directed convergence without revolutionary ROI.
-GPA: 3.23
-GPA: 3.56
-Apart from being a web developer, I enjoy most of my time being outdoors. In the winter, I am an avid skiier and novice ice climber. During the warmer months here in Colorado, I enjoy mountain biking, free climbing, and kayaking.
-When forced indoors, I follow a number of sci-fi and fantasy genre movies and television shows, I am an aspiring chef, and I spend a large amount of my free time exploring the latest technolgy advancements in the front-end web development world.
-I am an Automobile technician and Software developer that is passionate about Engineering and Technology with years of experience keeping pace with everything tech. I'm a fast learner,energetic and solid history of achievements. I'm good in anything i put my mind into. I add value to any environment i find myself in. I am available for internship and industrial experience from any tech. related company that needs my services.
+ +Learning and working closely with my mentors on projects related to tech. such as Artificial intelligence,Android and web application developement
+Automobile Diagnosis and Troubleshooting.Automobile Repair and Maintenance.General Car Services.
+Web services
+Collaboratively administrate empowered markets via plug-and-play networks. Dynamically procrastinate B2C users after installed base benefits. Dramatically visualize customer directed convergence without revolutionary ROI.
+GPA: 3.23(average)
+GPA: 3.83
+Apart from coding, i enjoy reading books and exercising.
+When forced indoors, I follow a number of sci-fi and fantasy genre movies and television shows, I am an aspiring chef, and I spend a large amount of my free time exploring the latest technolgy advancements in the front-end web development world.
+