/**
* Define overview of all CV Sections written in different programming languages.
*/
@Component({
selector: 'geeky-cv'
})
@Template({
inline: '<h1>Welcome : {{ quote }} </h1>
<h2>Career Objective {{ careerObjective }} </h2>
<h2>Summary {{ summary }} </h2>
<h2>Book Reviewer {{ reviewer }} </h2>
<h2>Education {{ education }} </h2>
<h2>Experience {{ experience }} </h2>'
})
// Geeky CV Component controller
class GeekyCVComponent {
constructor() {
//Quote....
this.quote = '"No one messes around with a nerd’s computer and escapes unscathed.” ― E.A. Bucchianeri, Brushstrokes of a Gadfly';
//Defines different sections written in different programming languages.
this.careerObjective = "html, angularjs 2.0, ES6";
this.summary = "angularjs";
this.reviewer = "ReactJS with ECMA6";
this.education = "Java";
this.experience = "ruby";
//TODO: Add projects, technologies, skills, references etc.
}
}
<html>
<head>
<title>Career Objective</title>
</head>
<body>
<!-- The career objective component created in career-objective.es6 -->
<career-objective>
To work in a dynamic and challenging environment where I can use my organisational,
personal, technical skills in research/ academic filed of IT. Also wants to be an
integral part of a professional team with concentration towards research, learning,
understanding and implementing modern aspects of Computers in today’s business environment.
</career-objective>
</body>
</html>
/*global define*/
'use strict';
/**
* The summary controller define's career summary. The controller:
* - retrieves career summary.
*/
define(['CV'], function (cv) {
return cv.controller('SummaryController', ['$scope',
function SummaryController($scope) {
$scope.summary = "Have both Professional & Educational Experience.";
$scope.presenter = "Present in Techie Conferences";
$scope.securityExperience = "Worked in payment industry, have done Card Present and E-Commerce payment integrations.";
$scope.reviewer = "Book reviewer at [PACKT] Publishing";
$scope.masterDegrees = ["M.Sc Electronic Commerce",
"M.Sc Software Engineering"];
$scope.certification = "Oracle Certified Professional, Java Programmer 6.0";
$scope.experties = ["Usability",
"UX",
"Software Design",
"Software Development",
"Software Architecture"];
$scope.thesis = "RoadMap for Usability and UX evaluation and measurement on early phases of SDLC";
$scope.rolesWorkedWith = ["Software Developer",
"Software Engineer",
"Java/Java EE Consultant",
"Tech Lead"];
}
]);
});
import React from 'react';
import PublicationStore from '../stores/PublicationStore';
import PublicationActions from '../actions/PublicationActions'
class Book extends React.Component {
constructor(props) {
super(props);
this.state = PublicationStore.getState();
this.onChange = this.onChange.bind(this);
}
onChange(state) {
this.setState(state);
}
render() {
return (
<div className='container'>
<div className='book-title'>
<h2 className='lead'>Title: ReactJS By Example</h2>
</div>
<div className='publication-info clearfix'>
Publisher: <strong>[PACKT] Publishing</strong>
Status: <strong>Published</strong>
Link : <strong><a title="ReactJS By Example" href="https://www.packtpub.com/web-development/reactjs-example-building-modern-web-applications-react">ReactJS By Example</a></strong>
</div>
</div>
);
}
}
Book.contextTypes = {
router: React.PropTypes.func.isRequired
};
export default Book;
package com.jhear.cv.muhammad.arslan;
import java.util.Date;
/**
* Education Class. Map as education object.
*
* author: Muhammad Arslan <arslan_mecom@yahoo.com>
* version: 1.0
*/
public class Education {
private String degree;
private Date from;
private Date to;
private String university;
//Constructor
public Education(final String degree,
final Date from,
final Date to,
final String university){
this.degree = degree;
this.from = from;
this.to = to;
this.university = university;
}
//Main method
public static void main(String []args){
// M.Sc Software Engineering. 2008-2010. BTH, Sweden.
final Education softwareEngineering = new Education("M.Sc Software Engineering",
new Date("2008"), new Date("2010"),
"Blekinge Tekniska Högskola, Sweden");
// M.Sc E-Commerce. 2004-2006. PUCIT, Lahore.
final Education ecommerce = new Education("M.Sc Electronic Commerce",
new Date("2004"), new Date("2006"),
"Punjab University, Lahore");
System.out.println(softwareEngineering);
System.out.println(ecommerce);
}
}
module Experience
def self.included(base)
class << base
def experience
jobs = []
jobs << {
:company => "Invidi Technologies AB",
:industry => "Video Advertisement",
:role => ["Staff Software Engineer", "Big Data/AI Architect"],
:when => { :from => "2020/05", :to => Time.now }
}
jobs << {
:company => "SEB Bank AB",
:industry => "Payments and Banking",
:role => ["Fullstack Developer (Consultant)"],
:when => { :from => "2019/03", :to => "2019/12" }
}
jobs << {
:company => "Nordea Bank AB",
:industry => "Payments and Banking",
:role => ["Senior IT Developer (Consultant)"],
:when => { :from => "2019/01", :to => "2019/03" }
}
jobs << {
:company => "Klarna Bank AB",
:industry => "Payments",
:role => ["Javascript Developer (Consultant)"],
:when => { :from => "2018/06", :to => "2018/12" }
}
jobs << {
:company => "HumanBee AB",
:industry => "IT Consultancy",
:role => ["Founder"],
:when => { :from => "2017/03", :to => Time.now }
}
jobs << {
:company => "Nordea Bank AB",
:industry => "Payments and Banking",
:role => ["Senior IT Developer"],
:when => { :from => "2016/01", :to => "2018/06" }
}
jobs << {
:company => "Digital River World Payments",
:industry => "Electronic Payments",
:role => ["Software Engineer"],
:when => { :from => "2014/08", :to => "2016/01" }
}
jobs << {
:company => "Accedo",
:industry => "Smart TV",
:role => ["Software Engineer"],
:when => { :from => "2012/01", :to => "2014/07" }
}
jobs << {
:company => "Sun Microsystems",
:industry => "New technologies",
:role => ["Sun OSUM Leader"],
:when => { :from => "2008/09", :to => "2010/04" }
}
# TODO: add previous positions on request
jobs
end
end
end
end
You’ve successfully subscribed to Jhear
Welcome back! You’ve successfully signed in.
Great! You’ve successfully signed up.
Success! Your email is updated.
Your link has expired
Success! Check your email for magic link to sign-in.