Skip to content

Instantly share code, notes, and snippets.

View HebaNAS's full-sized avatar
🎯
Focusing

Heba El-Shimy HebaNAS

🎯
Focusing
  • Dubai, UAE
View GitHub Profile
{
"fields": [
"duration", "credit_amount", "installment_commitment",
"residence_since", "age", "existing_credits", "num_dependents",
"checking_status_0<=X<200", "checking_status_<0",
"checking_status_>=200", "checking_status_no checking",
"credit_history_all paid",
"credit_history_critical/other existing credit",
"credit_history_delayed previously", "credit_history_existing paid",
"credit_history_no credits/all paid", "purpose_business",
{
"fields": [
"f0",
"f1",
"f2",
"f3",
"f4",
"f5",
"f6",
"f7",
var programmer = {
name: "Sara",
background: "coding apprenticeship",
portfolio: ["1010101", "111000", "100000"],
}
function printWorkExperience() {
// Old line
//console.log("Number of projects: " + this.portfolio.length);
this.count = 0;
var obj = {
count: 0,
increment: function() {
this.count += 1;
}
}
obj.increment();
var programmer = {
name: "Sara",
background: "coding apprenticeship",
portfolio: ["1010101", "111000", "100000"],
printStats: function() {
/* Your code goes here */
console.log(this.name + ' participated in a ' + this.background + '. Her portfolio includes: '
+ this.portfolio.join(', ') + '.');
}
}
@HebaNAS
HebaNAS / index.html
Created November 9, 2016 08:42
Portfolio Sample
<header class="header header--sticky">
<div class="container header__container">
<div class="header__logo">
<img class="header__logo__img" src="http://qlip.in/images/qlip.png" alt="Logo Image">
</div>
<div class="header__nav">
<ul class="header__nav__ul">
<li class="header__nav__li"><a href="#about" class="header__nav__btn header__nav__btn--active">About</a></li>
<li class="header__nav__li"><a href="#portfolio" class="header__nav__btn">Portfolio</a></li>
<li class="header__nav__li"><a href="#contact" class="header__nav__btn">Contact</a></li>