Skip to content

Instantly share code, notes, and snippets.

View Isinlor's full-sized avatar

Tomasz Darmetko Isinlor

View GitHub Profile
@Isinlor
Isinlor / Makefile
Created March 6, 2019 13:39 — forked from mpneuried/Makefile
Simple Makefile to build, run, tag and publish a docker containier to AWS-ECR
# import config.
# You can change the default config with `make cnf="config_special.env" build`
cnf ?= config.env
include $(cnf)
export $(shell sed 's/=.*//' $(cnf))
# import deploy config
# You can change the default deploy config with `make cnf="deploy_special.env" release`
dpl ?= deploy.env
include $(dpl)
@Isinlor
Isinlor / Makefile
Created April 26, 2017 09:14 — forked from isaacs/Makefile
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.
@Isinlor
Isinlor / .gitignore
Created September 9, 2016 12:20 — forked from beberlei/.gitignore
Doctrine + DomainEvents
vendor/
db.sqlite
composer.lock
@Isinlor
Isinlor / README.md
Last active June 29, 2017 12:56 — forked from anonymous/elasticsearch-install.sh
Install Elastic Search v1.7 on Ubuntu 14.04

To install Elastic Search copy & paste into terminal:

wget https://gist.githubusercontent.com/Isinlor/12e80e1891128e77c661/raw/elasticsearch-install.sh && sudo chmod +x ./elasticsearch-install.sh && ./elasticsearch-install.sh

Remember to subscribe to Common Security Vulnerabilities (CVE):

Ubuntu:

@Isinlor
Isinlor / robot.js
Created December 5, 2012 19:09 — forked from cgardner/robot.js
IsinBot
/*
* It would be great if you fork & upgrade
* created by; Zolmeister
* edited by: Isinlor
* - added clone
* - upgrade of aim - for cloned robot
* - upgrade of aim - counting missed attack and adaptation
* - upgrade of dodge - move according to the hp
* edited by: type your nickname
* - what you changed - description
@Isinlor
Isinlor / robot.js
Created December 5, 2012 11:51 — forked from Shipow/robot.js
Shipow#002 - New branch
var Robot = function(robot) {
robot.rotateCannon(-90);
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.ahead();
//i'll add a clone but i need to refactor collision
robot.clone();
};
@Isinlor
Isinlor / robot.js
Created December 5, 2012 11:12
Zolmeister
var Robot = function(robot){
robot.turnLeft(robot.angle % 90);
robot.clone();
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
if (robot.parentId) {
robot.ahead(1);
robot.turnGunRight(1);
}