-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
1,527 additions
and
1,221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/**! | ||
* JSCS configuration file | ||
* Collected by Baltrushaitis Tomas | ||
* NO License required | ||
*/ | ||
{ | ||
/*"disallowSpacesInNamedFunctionExpression": { | ||
"beforeOpeningCurlyBrace": true | ||
} | ||
, "disallowSpacesInFunctionExpression": { | ||
"beforeOpeningCurlyBrace": true | ||
} | ||
, "disallowSpacesInAnonymousFunctionExpression": { | ||
"beforeOpeningCurlyBrace": true | ||
} | ||
, "disallowSpacesInFunctionDeclaration": { | ||
"beforeOpeningCurlyBrace": true | ||
} | ||
, */ | ||
"disallowEmptyBlocks": false | ||
, "disallowSpacesInsideArrayBrackets": true | ||
, "disallowSpacesInsideParentheses": true | ||
, "disallowQuotedKeysInObjects": true | ||
, "disallowSpaceAfterObjectKeys": true | ||
, "disallowSpaceAfterPrefixUnaryOperators": true | ||
, "disallowSpaceBeforePostfixUnaryOperators": true | ||
, "disallowSpaceBeforeBinaryOperators": [ | ||
"," | ||
] | ||
, "disallowMixedSpacesAndTabs": true | ||
, "disallowTrailingWhitespace": true | ||
, "disallowTrailingComma": true | ||
, "disallowYodaConditions": false | ||
, "disallowKeywords": [ | ||
"with" | ||
] | ||
, "disallowMultipleLineBreaks": true | ||
, "disallowMultipleVarDecl": false | ||
, "requireBlocksOnNewline": 1 | ||
, "requireCamelCaseOrUpperCaseIdentifiers": true | ||
, "requireCapitalizedConstructors": true | ||
, "requireCommaBeforeLineBreak": false | ||
, "requireCurlyBraces": [ | ||
"do" | ||
] | ||
, "requireDotNotation": true | ||
, "requireLineFeedAtFileEnd": true | ||
, "requireParenthesesAroundIIFE": true | ||
, "requirePaddingNewLinesAfterBlocks": false | ||
, "requireSpaceBeforeBlockStatements": true | ||
, "requireSpacesInConditionalExpression": true | ||
, "requireSpaceBeforeBinaryOperators": true | ||
, "requireSpaceAfterBinaryOperators": true | ||
, "requireSpacesInForStatement": true | ||
, "requireSpaceBetweenArguments": true | ||
, "requireSpaceAfterKeywords": [ | ||
"if" | ||
, "else" | ||
, "for" | ||
, "while" | ||
, "do" | ||
, "switch" | ||
, "case" | ||
, "return" | ||
, "try" | ||
, "catch" | ||
, "typeof" | ||
] | ||
, "requirePaddingNewLinesBeforeLineComments": { | ||
"allExcept": "firstAfterCurly" | ||
} | ||
, "safeContextKeyword": "self" | ||
, "validateLineBreaks": "LF" | ||
, "validateQuoteMarks": "'" | ||
, "validateIndentation": 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
/**! | ||
* JSHint configuration file | ||
* Collected by Baltrushaitis Tomas | ||
* NO License required | ||
*/ | ||
{ | ||
/** | ||
* ENVIRONMENTS | ||
* ================= | ||
*/ | ||
|
||
// Define globals exposed by modern browsers. | ||
"browser": true, | ||
|
||
// Define globals exposed by jQuery. | ||
"jquery": false, | ||
|
||
// Define globals exposed by Node.js. | ||
"node": true, | ||
|
||
/** | ||
* ENFORCING OPTIONS | ||
* ================= | ||
*/ | ||
|
||
"esversion": 6, | ||
|
||
// Force all variable names to use either camelCase style or UPPER_CASE | ||
// with underscores. | ||
"camelcase": true, | ||
|
||
// Requires you to always put curly braces around blocks in | ||
// loops and conditionals. | ||
"curly": true, | ||
|
||
// Prohibit use of == and != in favor of === and !==. | ||
"eqeqeq": true, | ||
|
||
// Suppress warnings about == null comparisons. | ||
"eqnull": true, | ||
|
||
// Suppresses warnings about declaring variables inside of control | ||
// structures while accessing them later from the outside | ||
"funcscope": true, | ||
|
||
// Enforce tab width of 2 spaces. | ||
"indent": 2, | ||
|
||
// Prohibit use of a variable before it is defined. | ||
"latedef": true, | ||
|
||
// suppresses warnings about comma-first coding style | ||
"laxcomma": true, | ||
|
||
// This option lets you control how nested do you want your blocks to be | ||
//"maxdepth" 5, | ||
|
||
// This options allows you to set the maximum amount of warnings | ||
// JSHint will produce before giving up | ||
"maxerr": 50, | ||
|
||
// Require capitalized names for constructor functions. | ||
"newcap": true, | ||
|
||
// Warns about "non-breaking whitespace" characters | ||
"nonbsp": true, | ||
|
||
// Suppresses warnings about invalid typeof operator values | ||
"notypeof": true, | ||
|
||
// This option suppresses warnings about variable shadowing i.e. | ||
// declaring a variable that had been already declared somewhere | ||
// in the outer scope | ||
// * "inner" - check for variables defined in the same scope only | ||
// * "outer" - check for variables defined in outer scopes as well | ||
// * false - same as inner | ||
// * true - allow variable shadowing | ||
"shadow": "inner", | ||
|
||
// Enforce use of single quotation marks for strings. | ||
"quotmark": "single", | ||
|
||
// Prohibit trailing whitespace. | ||
"trailing": true, | ||
|
||
// Prohibit use of explicitly undeclared variables. | ||
"undef": true, | ||
|
||
// Warn when variables are defined but never used. | ||
"unused": true, | ||
|
||
// Enforce line length to 80 characters | ||
//"maxlen": 180, | ||
|
||
// Enforce placing 'use strict' at the top function scope | ||
"strict": true, | ||
|
||
"predef": [ | ||
"APP" | ||
, "Modernizr" | ||
, "MobileDetect" | ||
] | ||
|
||
/** | ||
* RELAXING OPTIONS | ||
* ================= | ||
*/ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# CV, Resume, Portfolio, Skills, Career, Bio, All-In-One Web Site # | ||
|
||
![CV Logo](assets/img/cv-01.png) | ||
|
||
`cv` `resume` `portfolio` `skillset` `professional` `specialist` `IT` `curriculum` `vitae` `site` | ||
|
||
--- | ||
|
||
## Badges | ||
|
||
[![Standard Version](https://img.shields.io/badge/release-standard%20version-brightgreen.svg?style=plastic)](https://github.com/conventional-changelog/standard-version) | ||
[![dependencies Status](https://david-dm.org/tbaltrushaitis/cv/status.svg)](https://david-dm.org/tbaltrushaitis/cv) | ||
[![devDependencies Status](https://david-dm.org/tbaltrushaitis/cv/dev-status.svg)](https://david-dm.org/tbaltrushaitis/cv?type=dev) | ||
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/tbaltrushaitis/cv/blob/master/LICENSE) | ||
[![Contributors](https://img.shields.io/github/contributors/tbaltrushaitis/cv.svg)](https://github.com/tbaltrushaitis/cv/graphs/contributors) | ||
|
||
--- | ||
|
||
## :memo: Changelog ## | ||
|
||
### v0.1.5: ### | ||
- [x] Animations settings moved from javascript code to JSON config | ||
- [x] Company logo in employment history | ||
- [x] Icons in skillset list | ||
- [x] Fontawesome colors tweaks | ||
- [x] Dependencies version upgrade | ||
|
||
### v0.1.4: ### | ||
- [x] Upgrade Font-Awesome to v5.0.13 and correct html code accordingly | ||
- [x] Improved text for introduction, career and education sections | ||
- [x] More usage of Font-Awesome icons in decoration | ||
|
||
### v0.1.3: ### | ||
- [x] Updated list of skills | ||
- [x] Use of short links for third-party resources urls | ||
|
||
### v0.1.2: ### | ||
- [x] Updated jQuery to v3.3.1 due to critical vulnerability | ||
- [x] Updated versions of few packages | ||
|
||
### v0.1.1: ### | ||
- [x] Makefile included | ||
- [x] gulp tasks to build and update webroot | ||
- [x] small improvement of contacts section | ||
|
||
### v0.1.0: ### | ||
- [x] More animations | ||
- [x] Improved frontend javascripts | ||
- [x] Dependencies update | ||
|
||
### v0.0.0: ### | ||
- [x] Initial release | ||
|
||
--- | ||
|
||
:scorpius: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Contributor Covenant Code of Conduct # | ||
|
||
## Our Pledge ## | ||
|
||
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. | ||
|
||
## Our Standards ## | ||
|
||
Examples of behavior that contributes to creating a positive environment include: | ||
|
||
* Using welcoming and inclusive language | ||
* Being respectful of differing viewpoints and experiences | ||
* Gracefully accepting constructive criticism | ||
* Focusing on what is best for the community | ||
* Showing empathy towards other community members | ||
|
||
Examples of unacceptable behavior by participants include: | ||
|
||
* The use of sexualized language or imagery and unwelcome sexual attention or advances | ||
* Trolling, insulting/derogatory comments, and personal or political attacks | ||
* Public or private harassment | ||
* Publishing others' private information, such as a physical or electronic address, without explicit permission | ||
* Other conduct which could reasonably be considered inappropriate in a professional setting | ||
|
||
## Our Responsibilities ## | ||
|
||
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. | ||
|
||
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. | ||
|
||
## Scope ## | ||
|
||
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. | ||
|
||
## Enforcement ## | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at tbaltrushaitis@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. | ||
|
||
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. | ||
|
||
## Attribution ## | ||
|
||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [version 1.4 page][version] | ||
|
||
[homepage]: http://contributor-covenant.org | ||
[version]: http://contributor-covenant.org/version/1/4/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Contributing # | ||
|
||
When contributing to this repository, please first discuss the change you wish to make via issue, | ||
email, or any other method with the owners of this repository before making a change. | ||
|
||
Please note we have a [code of conduct][code_of_conduct], please follow it in all your interactions with the project. | ||
|
||
## Pull Request Process ## | ||
|
||
1. Ensure any install or build dependencies are removed before the end of the layer when doing a | ||
build. | ||
2. Update the README.md with details of changes to the interface, this includes new environment | ||
variables, exposed ports, useful file locations and container parameters. | ||
3. Increase the version numbers in any examples files and the README.md to the new version that this | ||
Pull Request would represent. The versioning scheme we use is [SemVer](http://semver.org/). | ||
4. You may merge the Pull Request in once you have the sign-off of two other developers, or if you | ||
do not have permission to do that, you may request the second reviewer to merge it for you. | ||
|
||
[code_of_conduct]: CODE_OF_CONDUCT.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
MIT License | ||
|
||
Copyright (c) 2018-nowdays Tomas Baltrushaitis <tbaltrushaitis@gmail.com> | ||
|
||
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. |
Oops, something went wrong.