This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Чеклист для собеседования | |
Общее | |
[] SOLID, расшифровка каждой буквы + примеры из го | |
[] Паттерны из Gang of Four, мочь сказать какие виды + 3-4 запомнить и как их использовать | |
[] Что такое хеш таблица, сет, стек, очередь и для чего нужны | |
[] Что такое TPC/IP, в чем отличия с UDP? | |
[] Как работает http запрос? Коды ошибок, http методы. | |
[] Отличия http и https. Как работает https? | |
[] http/1 и http/2 в чем отличия? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.Events; | |
public class Movement : MonoBehaviour | |
{ | |
public event MovementFinishedHandler MovementFinished; | |
public delegate void MovementFinishedHandler(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// VBPiePiece.m | |
// Charts | |
// | |
// Created by Volodymyr Boichentsov on 15/02/2014. | |
// Copyright (c) 2014 SAKrisT. All rights reserved. | |
// | |
#import "VBPiePiece.h" | |
#import "VBPieChart.h" |