Skip to content

Instantly share code, notes, and snippets.

View mykhailo-petrenko's full-sized avatar
🇺🇦
Slava Ukraïni!

Mykhailo Petrenko mykhailo-petrenko

🇺🇦
Slava Ukraïni!
View GitHub Profile
@vadost
vadost / gist:d401f284ba6fa5b216f42a82fd51392e
Last active February 16, 2018 22:09
WEB UI folder structure
app/
├── app.component.html
├── app.component.scss
├── app.component.ts
├── app.module.ts
├── app-routing.module.ts
├── models/
│ ├── trades.interface.ts
│ ├── transfers.interface.ts
│ └── ...
@slouma2000
slouma2000 / install_ruby_1.9.3
Last active May 14, 2019 20:27
Install Ruby 1.9.3 on CentOS, RedHat using RVM
Step 1: Upgrade Packages
# yum update
# yum groupinstall "Development Tools"
Step 2: Installing Recommended Packages
# yum install gcc-c++ patch readline readline-devel zlib zlib-devel
# yum install libyaml-devel libffi-devel openssl-devel make
# yum install bzip2 autoconf automake libtool bison iconv-devel
Step 3: Install RVM ( Ruby Version Manager )
@gre
gre / easing.js
Last active April 23, 2024 04:20
Simple Easing Functions in Javascript - see https://github.com/gre/bezier-easing
/*
* This work is free. You can redistribute it and/or modify it under the
* terms of the Do What The Fuck You Want To Public License, Version 2,
* as published by Sam Hocevar. See the COPYING file for more details.
*/
/*
* Easing Functions - inspired from http://gizma.com/easing/
* only considering the t value for the range [0, 1] => [0, 1]
*/
EasingFunctions = {