Skip to content

Commit

Permalink
more people added to teampage
Browse files Browse the repository at this point in the history
  • Loading branch information
papachristoumarios committed Feb 25, 2018
1 parent 8b7abed commit 0e904a7
Show file tree
Hide file tree
Showing 37 changed files with 27 additions and 27 deletions.
Binary file modified public/images/sponsors/large/large_deree.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 modified public/images/sponsors/large/large_kokotou.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 modified public/images/sponsors/large/large_koutsodontis.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 modified public/images/sponsors/large/large_sas.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 modified public/images/sponsors/large/large_skag.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 modified public/images/sponsors/small/small_deree.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 modified public/images/sponsors/small/small_koutsodontis.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 modified public/images/sponsors/small/small_sas.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 modified public/images/team/experience/bill_alt.jpg
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 public/images/team/experience/danae.jpg
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 public/images/team/experience/danae_alt.jpg
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 public/images/team/experience/georgia.jpg
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 public/images/team/experience/georgia_alt.jpg
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 public/images/team/experience/stratis.jpg
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 public/images/team/experience/stratis_alt.jpg
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 public/images/team/fr/john.jpg
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 public/images/team/fr/john_alt.jpg
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 public/images/team/graphics/alice.jpg
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 public/images/team/graphics/alice_alt.jpg
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 public/images/team/it/john.jpg
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 public/images/team/it/john_alt.jpg
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 public/images/team/it/marios.jpg
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 public/images/team/it/marios_alt.jpg
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 public/images/team/media/helen.jpg
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 public/images/team/media/helen_alt.jpg
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 public/images/team/media/melina.jpg
Binary file added public/images/team/media/melina_alt.jpg
Binary file added public/images/team/media/minas.jpg
Binary file added public/images/team/media/minas_alt.jpg
Binary file added public/images/team/speakers/kostas.jpg
Binary file added public/images/team/speakers/kostas_alt.jpg
Binary file added public/images/team/speakers/nikolas.jpg
Binary file added public/images/team/speakers/nikolas_alt.jpg
Binary file modified public/images/team/venue/stelina.jpg
Binary file modified public/images/team/venue/stelina_alt.jpg
52 changes: 26 additions & 26 deletions resources/assets/js/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ $(document).ready(function(){

// following code tells the browser that we want to perform an animation
window.requestAnimFrame = (function(){
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function( callback ){
window.setTimeout(callback, 1000 / 60);
};
Expand Down Expand Up @@ -61,19 +61,19 @@ $(document).ready(function(){
this.x = -W;
this.y = -H;
this.free = false;

this.vy = -5 + parseInt(Math.random() * 10) / 2;
this.vx = -4 + parseInt(Math.random() * 8);

// Color
this.a = Math.random();
this.color = colors[parseInt(Math.random()*colors.length)];

this.setPosition = function(x, y) {
this.x = x;
this.y = y;
};

this.draw = function() {
ctx.fillStyle = "rgba("+this.color+","+this.a+")";
ctx.fillRect(this.x, this.y, this.size, this.size);
Expand Down Expand Up @@ -101,14 +101,14 @@ $(document).ready(function(){
// Get the data
imageData = ctx.getImageData(0, 0, W, W);
data = imageData.data;

// Iterate each row and column
for (var i = 0; i < imageData.height; i += density) {
for (var j = 0; j < imageData.width; j += density) {

// Get the color of the pixel
var color = data[((j * ( imageData.width * 4)) + (i * 4)) - 1];

// If the color is black, draw pixels
if (color == 255) {
particles.push(new Particle());
Expand All @@ -125,49 +125,49 @@ $(document).ready(function(){
// Update
function update() {
clear();

for(i = 0; i < particles.length; i++) {
var p = particles[i];
if(mouse.x > p.x && mouse.x < p.x + p.size && mouse.y > p.y && mouse.y < p.y + p.size)

if(mouse.x > p.x && mouse.x < p.x + p.size && mouse.y > p.y && mouse.y < p.y + p.size)
hovered = true;

if(hovered == true) {

var dist = Math.sqrt((p.x - mouse.x)*(p.x - mouse.x) + (p.y - mouse.y)*(p.y - mouse.y));

if(dist <= minDist)
p.free = true;

if(p.free == true) {
p.y += p.vy;
p.vy += 0.15;
p.x += p.vx;

// Collision Detection
if(p.y + p.size > H) {
p.y = H - p.size;
p.vy *= -bounceFactor;

// Friction applied when on the floor
if(p.vx > 0)
p.vx -= 0.1;
else
else
p.vx += 0.1;
}

if(p.x + p.size > W) {
p.x = W - p.size;
p.vx *= -bounceFactor;
}

if(p.x < 0) {
p.x = 0;
p.vx *= -0.5;
}
}
}

ctx.globalCompositeOperation = "lighter";
p.draw();
}
Expand All @@ -179,4 +179,4 @@ $(document).ready(function(){
update();
})();

});
});
2 changes: 1 addition & 1 deletion scripts/team_cropper.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ def mutate(img_file):



pool = Pool(5)
pool = Pool(8)
pool.map(mutate, img_list)

0 comments on commit 0e904a7

Please sign in to comment.