Skip to content

Instantly share code, notes, and snippets.

View OleksiyRudenko's full-sized avatar
💻
Delivering

Oleksiy Rudenko OleksiyRudenko

💻
Delivering
View GitHub Profile

node-sass vs MS Windows

Для тех, кто, как и я, имеет несчастье работать по MS Windows.

NativeSPAExample, похоже, нормально разворачивается под !Windows, а остальным (sic!) предстоят пляски с бубном.

В этом воркфлоу будем решать проблемы по мере их возникновения. В цитатах логов будут пропущены фрагменты с сообщениями о нормальном течении процесса. Сообщения об ошибках и предупреждения будут пронумерованы для упрощения отсылки к ним.

Полезные ресурсы - в конце документа.

@OleksiyRudenko
OleksiyRudenko / Kottans-WeatherWebApp-supplements.md
Last active February 4, 2018 16:07
Kottans WeatherWebApp supplements
@OleksiyRudenko
OleksiyRudenko / Merging repos.md
Last active October 29, 2018 07:42
Git: merging, rebasing

Merging a repo into another one

Initial situation:

  1. Repository A we want to become a part of another repository.
  2. Repository B we want repo A to be merged into.

Targets:

  1. We want source code from repo A to be located under a sub-directory in repo B and repo A history stored in a dedicated repo B branch.
  2. We do not want original repo A be changed or corrupted.
@OleksiyRudenko
OleksiyRudenko / Repo import and export back.md
Last active October 30, 2018 19:34
Repo import and export back

Repo import and export back

The scenario:

  1. Import repoB into a sub-directory in repoA, while repoB is imported
    • completely
    • into a sub-directory in repoA
    • preserving history for the imported part only
  2. Optionally update imported code base from repoB
  3. Optionally update repoB with amended code base from dedicated sub-directory in repoA
@OleksiyRudenko
OleksiyRudenko / README.md
Last active November 15, 2018 18:31
Merge into master preserving history linearity

Merge into master preserving history linearity

WIP

Pre-requisites

Normal feature development at the moment we are ready to merge into master can be illustrated as follows:

 C--M1--F--G--M2
@OleksiyRudenko
OleksiyRudenko / комбинации-клавиш-bash.txt
Created February 10, 2019 20:57 — forked from RANUX/комбинации-клавиш-bash.txt
Комбинации клавиш для Bash
##### Перемещение курсора:
Ctrl + a — переход в начало строки
Ctrl + b — переход на 1 символ назад
Ctrl + c — посылает программе SIGINT. Обычно, прерывает текущее задание
Ctrl + d — удаляет символ под курсором (аналог delete)
Ctrl + e — переход к концу строки
Ctrl + f — переход на 1 символ вперёд
Ctrl + xx — переходит от текущей позиции курса в начало строки и обратно.
Ctrl + p — Предыдущая команда (Стрелка вверх)

Home task

In Memory Pair Game Project:

  1. Create package.json
  2. Install eslint, prettier and pluginf for code editor/IDE
  3. Read explanations to all errors forund by eslint according to eslint-config-airbnb

Installation step-by-step

  1. Create package in a directory: Option 1:
@OleksiyRudenko
OleksiyRudenko / MVC.md
Last active February 19, 2019 08:13
MVC

MVC

MVC stands for Model-View-Controller

MVC is a design pattern implementing the Separation of Concerns principle on a global application level.

The actual purpose of MVC is to separate your views from your controller and model. In other words,

@OleksiyRudenko
OleksiyRudenko / HW-Weather-App-preps.md
Last active February 26, 2019 21:19
Getting prepared for component powered Weather App

Component Powered Weather App - Getting Prepared

After intro to MVC and other design patterns (video, slides) we need to get prepared for the next iteration.

What needs to be done

By next workshop every student is expected to: