Skip to content

Instantly share code, notes, and snippets.

View ievgenk's full-sized avatar
🐶
Dogs are dogs

Ievgen Kasian ievgenk

🐶
Dogs are dogs
  • Den Haag, NL
View GitHub Profile
Surprise! - https://glitch.com/edit/#!/secret-walrus?path=src/components/surprise.js:27:5
Hourly rate calculator - https://glitch.com/edit/#!/serious-friday?path=src/components/rate-calculator.js:37:0
Live Search - https://glitch.com/edit/#!/habitual-dinner?path=src/components/live-search.js:10:32
@ievgenk
ievgenk / gist:142ff01bdc89824e372c9786b83188af
Last active August 5, 2018 08:20
Action, Reducer and Store drills
1) i18n state - https://glitch.com/edit/#!/dour-text
2) CRUD - https://glitch.com/edit/#!/battle-caption
https://glitch.com/edit/#!/charm-pair
Appl.io helps you to stay on top your job applications and provides insight into the success rate of your job search.
As a user I should be able to register on the landing page with my email and password.
As a user I should be able to log in with my registered email and password.
As a user I should be able to retrieve previously input data on the main dashboard screen.
As a user I should be able to add job application to one of the five categories (applied, interview scheduled, phone screen, rejected, received offer)
As a user I should be able to drag and drop each of the application cards onto another category board.
As a user I should be able to add an update note for each job application in regards to any development concerning that application.
As a user I should be able to add basic detail to each job application card, work place details, main contact information, job description(text or link)
As a user I should be able to indicate a date as to when the job has been applied to.
As a user I should be able to to see a small statistics report in regards to my application progress. It will show statistics such as percentage
As a user I should be able to register on the landing page with my email and password.
As a user I should be able to log in with my registered email and password.
As a user I should be able to retrieve previously input data on the main dashboard screen.
As a user I should be able to add job application to one of the five categories (applied, interview scheduled, phone screen, rejected, received offer)
As a user I should be able to drag and drop each of the application cards onto another category board.
As a user I should be able to add an update note for each job application in regards to any development concerning that application.
As a user I should be able to add basic detail to each job application card, work place details, main contact information, job description(text or link)
As a user I should be able to indicate a date as to when the job has been applied to.
As a user I should be able to log out from the main dashboard.
As a user I should be able to delete job application from any of the cards.
Name of the app - Appl.io
link - https://pacific-stream-60105.herokuapp.com/
GitHub link - https://github.com/ievgenk/appl.io-client
@ievgenk
ievgenk / gist:34bf27ca61f8e578258717c0208c97f9
Created September 25, 2018 18:01
Assets for portfolio
Headline
Hi, my name is Evgeny. I am a web developer and a history nerd.
Bio
I am a web developer with a project management background and I love solving interesting problems with code. Recent graduate of a full-stack bootcamp at Thinkful. I really enjoy working with JavaScript related technologies and the vastness of tools and libraries available to a web developer.
In my spare time I spend a lot of time hanging out with my goldendoodle Ben. 🐶 And reading historical fiction 🗡or some epic fantasy 🐉 and if it is winter chances are I am carving the slopes 🏂🏼
Even or Odd = O(1)
Are you here = O(n^2)
Doubler = O(n)
Naive Search = O(n)
Creating Pairs = 0(n^2)
Computing fibonaccis = O(n)
An Efficient Search = O(log(n))
Random Element = O(1)
Is it prime = O(1)
import React, { useEffect, useState } from 'react';
import Map from './components/Map';
import axios from 'axios';
const mapBoxToken: string =
'apikey';
const getInitialMapPoint = (token: string) => {
axios
.get(