Skip to content

Instantly share code, notes, and snippets.

View mixassio's full-sized avatar
💭
looking for a job Javascript fullstack (Moscow, SPB)

MIKHAIL BONDAREV mixassio

💭
looking for a job Javascript fullstack (Moscow, SPB)
View GitHub Profile
Backend
ORM - TypeScript
RPC - gRPC
WF - NestJS
Entities(ORM):
User { id: number, name: string }

Бондарев Михаил Евгеньевич

javascript разработчик, ожидаемая зп от 130 000 рублей после налогов

Москва +79265649543 mixail.bondarev@gmail.com

Образование:

  • основное МАИ, 2005, аэрокосмический факультет
  • hexlet, javascript, back&front
  • otus, devOps
@mixassio
mixassio / terraform.tfvars
Created March 16, 2019 13:20
terraform example terraform.tfvars
project = "name_your_project"
public_key_path = "~/.ssh/authorized_keys"
private_key_path = "~/.ssh/authorized_keys"
disk_image = "name_image"
@mixassio
mixassio / variables.tf
Created March 16, 2019 13:19
terraform example variables.tf
variable project {
description = "Project ID"
}
variable region {
description = "Region"
default = "europe-west1"
}
variable zone {
@mixassio
mixassio / outputs.tf
Created March 16, 2019 13:18
terraform example outputs.tf
output "app_external_ip" {
value = "${google_compute_instance.app.network_interface.0.access_config.0.assigned_nat_ip}"
}
@mixassio
mixassio / main.tf
Created March 16, 2019 13:16
terraform example main.tf
provider "google" {
version = "1.4.0"
project = "${var.project}"
region = "${var.region}"
}
resource "google_compute_instance" "app" {
name = "name_your_instanse"
machine_type = "g1-small"
zone = "${var.zone}"
@mixassio
mixassio / example_ansible.json
Created March 15, 2019 07:31
packer example with ansible
{
"variables": {
"project_id": null,
"source_image_family": null,
"machine_type": "f1-micro"
},
"builders": [
{
"type": "googlecompute",
"project_id": "{{ user `project_id` }}",
@mixassio
mixassio / example_shell_scripts.json
Created March 15, 2019 07:24
packer example with shell
{
"variables": {
"project_id": null,
"source_image_family": null,
"machine_type": "f1-micro"
},
"builders": [
{
"type": "googlecompute",
"project_id": "{{ user `project_id` }}",
@mixassio
mixassio / variables.json
Created March 15, 2019 07:16
packer var example
{
"project_id": "your project_id",
"source_image_family": "ubuntu-1604-lts"
}
bad_films = ['Titanic',]
good_films = ['Matrix',]
ARGV.each do |el|
if bad_films.member? el
puts "#{el} is a bad movie"
elsif good_films.member? el
puts "#{el} is a good movie"
else
puts "Haven't seen #{el} yet"
end