Skip to content

Commit

Permalink
change the whole site
Browse files Browse the repository at this point in the history
  • Loading branch information
Reshef authored and Reshef committed Oct 24, 2024
1 parent 6d4d924 commit 7b071e1
Show file tree
Hide file tree
Showing 50 changed files with 7,049 additions and 216 deletions.
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.6.3
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
source "https://rubygems.org"
gem 'github-pages'
37 changes: 17 additions & 20 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
This is free and unencumbered software released into the public domain.
MIT License

Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
Copyright (c) 2017 Mauricio Urraco

In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
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 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 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.
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

For more information, please refer to <http://unlicense.org>
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.
51 changes: 0 additions & 51 deletions README.md

This file was deleted.

26 changes: 13 additions & 13 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
title: Oren Reshef # your name (or website title) here
logo: "/images/mig2.jpg?raw=true" # your photo (or logo) here
description: > # your text below (remove <br> elements if you don't need line breaks)
A software development professional with a focus on testing - the art of having relevant on-time information about the product
<br><br>
Accelerating Teams on a journey for a better quality product
<br><br>
<a href="https://www.linkedin.com/in/oren-reshef-9862276/">View My LinkedIn Profile</a>
remote_theme: pages-themes/minimal@v0.2.0
plugins:
- jekyll-remote-theme
google_analytics: UA-000000-0 # your Google Analytics tracking ID here
# Site settings
title: Reshef
description: "Just a landing page for my main domain"
baseurl: "/"
url: "https://reshef.eu.org/"

# User settings
username: Oren Reshef
user_description: "Software Engineer"
user_title: Quality Engineer
email:

exclude: ['package.json', 'src', 'node_modules', 'vendor']
39 changes: 39 additions & 0 deletions _includes/about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<div class="user-details">
<h1>About</h1>
<p><img class="img-responsive" src="/assets/img/mig2.jpg" alt="" /></p>
<p>{{ site.user_description }}</p>
</div>
<div class="user">
<div class="tech">
<h2>Contact</h2>
<p>My email: <a href="mailto: contact@.se">contact@.se</a></p>
</div>
<div class="tech">
<h2>Principles 1</h2>
<p>Our priority is improving the business.</p>
</div>
<div class="tech">
<h2>Principles 2</h2>
<p>We accelerate the team, and use models like Lean Thinking and the Theory of Constraints to help identify, prioritize and mitigate bottlenecks from the system.</p>
</div>
<div class="tech">
<h2>Principles 3</h2>
<p>We are a force for continuous improvement, helping the team adapt and optimize in order to succeed, rather than providing a safety net to catch failures.</p>
</div>
<div class="tech">
<h2>Principles 4</h2>
<p>We care deeply about the quality culture of our team, and we coach, lead, and nurture the team towards a more mature quality culture.</p>
</div>
<div class="tech">
<h2>Principles 5</h2>
<p>We believe that the customer is the only one capable to judge and evaluate the quality of our product.</p>
</div>
<div class="tech">
<h2>Principles 6</h2>
<p>We use data extensively to deeply understand customer usage and then close the gaps between product hypotheses and business impact.</p>
</div>
<div class="tech">
<h2>Principles 7</h2>
<p>We expand abilities and knowhow across the team; understanding that this may reduce (or eliminate) the need for dedicated specialists.</p>
</div>
</div>
5 changes: 5 additions & 0 deletions _includes/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<footer class="footer">
</footer>
<script src="{{ '/assets/js/particles.min.js' | prepend: site.baseurl }}"></script>
<script src="{{ '/assets/js/sweet-scroll.min.js' | prepend: site.baseurl }}"></script>
<script src="{{ '/assets/js/main.js' | prepend: site.baseurl }}"></script>
11 changes: 11 additions & 0 deletions _includes/head.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="description" content="{% if page.description %}{{ page.description | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">

<link rel="stylesheet" href="{{ '/assets/css/main.css' | prepend: site.baseurl }}">
<link rel="shortcut icon" type="image/png" href="{{ '/assets/favicon.png' }}" >
</head>
17 changes: 17 additions & 0 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<div id="particles-js">
<div class="header">
<h1>
<span class="site-title">{{ site.username }}</span>
<span class="site-description">{{ site.user_title }}</span>
</h1>
<div class="header-icons">
<a aria-label="Send email" href="mailto:contact@.se"><i class="icon fa fa-envelope"></i></a>
<a aria-label="Oren Reshef" target="_blank" href="https://www.linkedin.com/in/oren-reshef-9862276/"><i class="icon fa fa-linkedin" aria-hidden="true"></i></a>
<a aria-label="Github" target="_blank" href="https://github.com/oren-reshef"><i class="icon fa fa-github-alt" aria-hidden="true"></i></a>
</div>
<div class="header-links">
<!-- <a class="link" href="#about" data-scroll>About Me</a> -->
</div>
</div>
<a class="down" href="#about" data-scroll><i class="icon fa fa-chevron-down" aria-hidden="true"></i></a>
</div>
74 changes: 8 additions & 66 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -1,71 +1,13 @@
<!DOCTYPE html>
<html lang="{{ site.lang | default: "en-US" }}">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

{% seo %}
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<![endif]-->
</head>
<link rel="stylesheet" href="../assets/css/devicon.min.css">
<html lang="en">
{% include head.html %}
<body>
<div class="wrapper">
<header>
<h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1>

{% if site.logo %}
<img src="{{site.logo | relative_url}}" alt="Logo" />
{% endif %}

<p>{{ site.description | default: site.github.project_tagline }}</p>

<!--
{% if site.github.is_project_page %}
<p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ site.github.repository_nwo }}</small></a></p>
{% endif %}
-->

<!-- {% if site.github.is_user_page %}
<p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p>
{% endif %}-->

{% if site.show_downloads %}
<ul class="downloads">
<li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li>
<li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li>
<li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li>
</ul>
{% endif %}
</header>
<section>

{{ content }}

{% include header.html %}
<section id="about">
{% include about.html %}
</section>
<footer>
<!-- {% if site.github.is_project_page %}
<p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
{% endif %}
<p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
-->
{% if site.github.is_project_page %}
<p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile<small>{{ site.github.owner_url }}</small></a></p>
{% endif %}
</footer>
</div>
<script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script>
{% if site.google_analytics %}
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', '{{ site.google_analytics }}', 'auto');
ga('send', 'pageview');
</script>
{% endif %}
{{ content }}
{% include footer.html %}
</body>
</html>
1 change: 1 addition & 0 deletions assets/css/devicon.min.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions assets/css/main.css

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions assets/email-gpg.asc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
-----BEGIN PGP PUBLIC KEY BLOCK-----

xjMEYeWuOBYJKwYBBAHaRw8BAQdAHtubahWux/wli7heQR+wQpB0cDVZZHmj
YLU0uvAhKxbNJWpvYWtpbUBkZWxscnVkLnNlIDxqb2FraW1AZGVsbHJ1ZC5z
ZT7CjwQQFgoAIAUCYeWuOAYLCQcIAwIEFQgKAgQWAgEAAhkBAhsDAh4BACEJ
EBpuzJA1jHPXFiEEWyZQsJRE+eKsqyAjGm7MkDWMc9d1/AEAg7jvikrxk1PM
qT9uHIRmx+FdHdtKLZWRQhbDPMHssbcA/239x1Swgqv5plD/mIq7dRoJyR+M
/qk61Wr3GK/iCwgBzjgEYeWuOBIKKwYBBAGXVQEFAQEHQGPakYZf8SSmCTJX
67rWtXfaTWtpmB1S8a5a16/8voMWAwEIB8J4BBgWCAAJBQJh5a44AhsMACEJ
EBpuzJA1jHPXFiEEWyZQsJRE+eKsqyAjGm7MkDWMc9fk/AD/Sse9jpThJIY2
SY1rO5g/pgTZ+iMeKgfxhKg/k6Jt1SwBAK+AYm1B806JpRW0grsVi2ALXO0V
I5u2RKYyfeiEqpUJ
=t0ph
-----END PGP PUBLIC KEY BLOCK-----
Binary file added assets/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/fonts/devicon.ttf
Binary file not shown.
Binary file added assets/fonts/devicon.woff
Binary file not shown.
Binary file added assets/fonts/fontawesome-webfont.ttf
Binary file not shown.
Binary file added assets/fonts/fontawesome-webfont.woff
Binary file not shown.
Binary file added assets/fonts/fontawesome-webfont.woff2
Binary file not shown.
1 change: 1 addition & 0 deletions assets/js/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions assets/js/particles.min.js

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions assets/js/sweet-scroll.min.js

Large diffs are not rendered by default.

88 changes: 88 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
var gulp = require('gulp');
var csso = require('gulp-csso');
var uglify = require('gulp-uglify');
var concat = require('gulp-concat');
var sass = require('gulp-sass');
var plumber = require('gulp-plumber');
var cp = require('child_process');
var imagemin = require('gulp-imagemin');
var browserSync = require('browser-sync');

var jekyllCommand = (/^win/.test(process.platform)) ? 'jekyll.bat' : 'bundle';

/*
* Build the Jekyll Site
* runs a child process in node that runs the jekyll commands
*/
gulp.task('jekyll-build', function (done) {
return cp.spawn(jekyllCommand, ['exec', 'jekyll', 'build'], {stdio: 'inherit'}).on('close', done);
});

/*
* Rebuild Jekyll & reload browserSync
*/
gulp.task('jekyll-rebuild', ['jekyll-build'], function () {
browserSync.reload();
});

/*
* Build the jekyll site and launch browser-sync
*/
gulp.task('browser-sync', ['jekyll-build'], function() {
browserSync({
server: {
baseDir: '_site'
}
});
});

/*
* Compile and minify sass
*/
gulp.task('sass', function() {
gulp.src('src/styles/**/*.scss')
.pipe(plumber())
.pipe(sass())
.pipe(csso())
.pipe(gulp.dest('assets/css/'));
});

/*
* Compile fonts
*/
gulp.task('fonts', function() {
gulp.src('src/fonts/**/*.{ttf,woff,woff2}')
.pipe(plumber())
.pipe(gulp.dest('assets/fonts/'));
})

/*
* Minify images
*/
gulp.task('imagemin', function() {
return gulp.src('src/img/**/*.{jpg,png,gif}')
.pipe(plumber())
.pipe(imagemin({ optimizationLevel: 3, progressive: true, interlaced: true }))
.pipe(gulp.dest('assets/img/'));
});

/**
* Compile and minify js
*/
gulp.task('js', function(){
return gulp.src('src/js/**/*.js')
.pipe(plumber())
.pipe(concat('main.js'))
.pipe(uglify())
.pipe(gulp.dest('assets/js/'))
});

gulp.task('watch', function() {
gulp.watch('src/styles/**/*.scss', ['sass', 'jekyll-rebuild']);
gulp.watch('src/js/**/*.js', ['js']);
gulp.watch('src/fonts/**/*.{tff,woff,woff2}', ['fonts']);
gulp.watch('src/img/**/*.{jpg,png,gif}', ['imagemin']);
gulp.watch(['*html', '_includes/*html', '_layouts/*.html'], ['jekyll-rebuild']);
});

gulp.task('default', ['js', 'sass', 'fonts', 'browser-sync', 'watch']);
Binary file removed images/demo.gif
Binary file not shown.
Binary file removed images/dummy_thumbnail.jpg
Binary file not shown.
Binary file removed images/logo.png
Binary file not shown.
Binary file removed images/me.png
Binary file not shown.
Binary file removed images/mig2.jpg
Binary file not shown.
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
layout: default
---
Loading

0 comments on commit 7b071e1

Please sign in to comment.