Skip to content

Instantly share code, notes, and snippets.

View pavelkeyzik's full-sized avatar
I'm a wee star

Pavel Keyzik pavelkeyzik

I'm a wee star
View GitHub Profile
@pavelkeyzik
pavelkeyzik / typescript.json
Last active December 14, 2021 12:00
VS Code Snippets Aibolit
{
"GET with Query Params": {
"prefix": "api-get-with-query-params",
"body": [
"async function ${1/(.)/${1:/downcase}/}${2} (variables: ${1}${2}Parameters) {",
" const queryParams = setQueryParams<${1}${2}Parameters>(",
" variables,",
" );",
"",
" const response = await ${3|service,platformService,plus3DPhysicianService,plus3DRadiologistService,plus3DAdminService,plus3DService,adminService|}.get<",
export ZSH="/Users/pavel/.oh-my-zsh"
export LDFLAGS="-L/usr/local/opt/ruby/lib"
export CPPFLAGS="-I/usr/local/opt/ruby/include"
ZSH_THEME="robbyrussell"
plugins=(
git
zsh-autosuggestions
)

About me

Hi! My name is Pavel and I'm a Front-end engineer. I've been working at iTechArt since September 2018.

I have hands-on experience with React and Node.js. I'm responsible to create UI interfaces and to ensure that all things are work correctly.

I worked with a lot of technologies, like React, Redux, WebWorkers, Three.js, Node.js, Docker, PostgreSQL and HTML/CSS of course. Also, I try to learn new things every time. At the moment, I'm trying to learn how to work with GraphQL (with Appollo Client) and TypeScript. From time to time I draw UI interfaces. I even sold one couple of years ago on the Envato market.

Employment history

@pavelkeyzik
pavelkeyzik / blacklist.txt
Last active April 7, 2020 11:10
List of companies where I wouldn't work.
A1QA
Andersen
Itransition
Luxoft
LWO
Soft-FX (СофтЭфИкс)
TravoLab
ThinkPay
VironIT
@pavelkeyzik
pavelkeyzik / package.json
Created April 2, 2019 08:53
For those who want to install npm package dependency from the private repository
{
"your_package_name": "git+https://<your_login>:<your_personal_access_token>@<repository_domain>/<repository>/<your_package_name>.git"
}
@pavelkeyzik
pavelkeyzik / .editorconfig
Created March 21, 2019 21:40
Editor configuration
root = true
[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 2
@pavelkeyzik
pavelkeyzik / .npmrc
Created March 21, 2019 21:39
.npmrc basic config
# Ensures that dependency will be saved in package.json
save=true
# Save dependency with exact version
save-exact=true