├── .gitignore ├── LICENSE ├── README.adoc ├── good-cv-bad-cv.adoc └── images └── cv.png /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | ### JetBrains template 3 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm 4 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 5 | 6 | # User-specific stuff 7 | .idea/**/workspace.xml 8 | .idea/**/tasks.xml 9 | .idea/**/dictionaries 10 | .idea/**/shelf 11 | 12 | # Sensitive or high-churn files 13 | .idea/**/dataSources/ 14 | .idea/**/dataSources.ids 15 | .idea/**/dataSources.local.xml 16 | .idea/**/sqlDataSources.xml 17 | .idea/**/dynamic.xml 18 | .idea/**/uiDesigner.xml 19 | 20 | # Gradle 21 | .idea/**/gradle.xml 22 | .idea/**/libraries 23 | 24 | # CMake 25 | cmake-build-debug/ 26 | cmake-build-release/ 27 | 28 | # Mongo Explorer plugin 29 | .idea/**/mongoSettings.xml 30 | 31 | # File-based project format 32 | *.iws 33 | 34 | # IntelliJ 35 | out/ 36 | 37 | # mpeltonen/sbt-idea plugin 38 | .idea_modules/ 39 | 40 | # JIRA plugin 41 | atlassian-ide-plugin.xml 42 | 43 | # Cursive Clojure plugin 44 | .idea/replstate.xml 45 | 46 | # Crashlytics plugin (for Android Studio and IntelliJ) 47 | com_crashlytics_export_strings.xml 48 | crashlytics.properties 49 | crashlytics-build.properties 50 | fabric.properties 51 | 52 | # Editor-based Rest Client 53 | .idea/httpRequests 54 | 55 | .idea/checkstyle-idea.xml 56 | .idea/compiler.xml 57 | .idea/crack-java-developer-interview-fresher.iml 58 | .idea/findbugs-idea.xml 59 | .idea/misc.xml 60 | .idea/modules.xml 61 | .idea/sonarlint/ 62 | .idea/vcs.xml 63 | .idea/software-engineer-cv-examples-tips.iml 64 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 MBSTU Programming Community 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- 1 | # Software Engineer CV Examples and Tips for freshers 2 | 3 | image::images/cv.png[] 4 | 5 | 6 | ## Who is this for? 7 | 8 | You are a Computer Science / Information Technology graduate who - 9 | 10 | * Is copying CV from his/her friend. 11 | * Not getting any calls for job interview. 12 | 13 | 14 | ## Before you prepare your CV 15 | 16 | Read tips about what you should do or shouldn't. Read more link:good-cv-bad-cv.adoc[here]. 17 | 18 | ## Example CVs 19 | 20 | * https://docs.google.com/document/d/1Zl5Z3C23WyJ0h_yl_idoP2jnigZLYmPApDDqQ_d9JaE/edit?usp=sharing[Example1] 21 | * https://docs.google.com/document/d/1E8q9ySxE5mQcVoINa-Rxrw-_Hus0m092VNLxjDGV2PE/edit?usp=sharing[Example2] 22 | 23 | 24 | ## Contribute 25 | Contributions are always welcome! Create a pull request. 26 | 27 | 28 | ## Copyright & License 29 | 30 | Licensed under the MIT License, see the link:LICENSE[LICENSE] file for details. -------------------------------------------------------------------------------- /good-cv-bad-cv.adoc: -------------------------------------------------------------------------------- 1 | # Good CV, Bad CV 2 | 3 | -------------------------------------------------------------------------------- /images/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBSTUPC/software-engineer-cv-examples-tips/82679ff55bc3afb3c0354b6a105b84d05ae13868/images/cv.png --------------------------------------------------------------------------------