Skip to content

Instantly share code, notes, and snippets.

View stalniy's full-sized avatar
🏠
Working from home

Serhii Stotskyi stalniy

🏠
Working from home
View GitHub Profile
@stalniy
stalniy / README.md
Last active April 8, 2019 06:59
Backend js test task

Backend Тестове завдання

Створити можливість описувати довільні сутності з атрибутами та валідацією для цих атрибутів (відношення між атрибутами і сутностями many-to-many). Описання повинно бути реалізовано за допомогою DSL або конфігураційного об'єкту (наприклад yaml). Реалізувати CRUD по цим об'єктам через REST.

Наприклад, описання сутності Person з атрибутами може виглядати у DSL так

define('attribute', 'firstName')
@stalniy
stalniy / README.md
Last active July 25, 2019 11:35
Завдання для Frontend девелопера

Frontend Тестове Завдання

Написати компонент, що може створювати форму з динамічними правилами валідації на базі заданого конфігураційного об’єкта. Об’єкт має наступний вигляд:

{
  code: 'Person',
  attributes: [
    {
@stalniy
stalniy / custom-pick.js
Created January 16, 2019 20:13
Custom pick with support for arrays using asterisk
function get(object, path) {
const fields = Array.isArray(path) ? path : path.split('.')
let cursor = object
for (let i = 0; i < fields.length; i++) {
if (fields[i] === '*') {
// TODO: validation of cursor being an array
const newPath = fields.slice(i + 1)
return cursor.map(item => get(item, newPath))
} else {
@stalniy
stalniy / custom-pick.js
Created January 16, 2019 20:13
Custom pick with support for arrays using asterisk
function get(object, path) {
const fields = Array.isArray(path) ? path : path.split('.')
let cursor = object
for (let i = 0; i < fields.length; i++) {
if (fields[i] === '*') {
// TODO: validation of cursor being an array
const newPath = fields.slice(i + 1)
return cursor.map(item => get(item, newPath))
} else {
@stalniy
stalniy / scale-canvas.js
Created September 10, 2018 11:14 — forked from callumlocke/scale-canvas.ts
Function to fix a canvas so it will look good on retina/hi-DPI screens.
/**
* This function takes a canvas, context, width and height. It scales both the
* canvas and the context in such a way that everything you draw will be as
* sharp as possible for the device.
*
* It doesn't return anything, it just modifies whatever canvas and context you
* pass in.
*
* Adapted from Paul Lewis's code here:
* http://www.html5rocks.com/en/tutorials/canvas/hidpi/
@stalniy
stalniy / ValidationField.js
Created August 21, 2018 10:05
Vue HTML5 form validation
const props = {
value: { required: true },
tag: { type: String, default: 'div' },
};
const STATIC_PROPS = { ...props };
const VALIDATORS = {};
export default {
props,
data() {
@stalniy
stalniy / component.html
Created July 17, 2018 10:59
Angular CASL example
<div *ngIf="post | can: 'delete'">
<button (click)="deletePost()">Delete</button>
</div>
@stalniy
stalniy / component.html
Created July 17, 2018 10:51
Angular wrong permission management
<div *ngIf="loggedInUser.role === ADMIN || user.auth && post.author === loggedInUser.id">
<button (click)="deletePost()">Delete</button>
</div>
@stalniy
stalniy / cross-dep-order.js
Created July 15, 2018 14:56
Package.json dependency order resolution
const fs = require('fs')
const { promisify } = require('util')
const cache = {}
const readFile = path => cache[path] = cache[path] || JSON.parse(fs.readFileSync(path))
const readDir = promisify(fs.readdir)
const DEPS_FIELDS = ['dependencies', 'devDependencies', 'optionalDependencies', 'peerDependencies']
function isDependency(path, anotherPath) {
@stalniy
stalniy / spec.js
Created June 25, 2018 18:32
Lazy vars include shared validator
describe('Issue', function() {
subject(function() {
return new Issue();
});
def('min', function() {
return $subject.getMinPriority();
});
def('max', function() {