date: [[2022-03-07]] refs: [[20 crypto]]
- ничего не теряем на просадках рынка
- можем получить доп прибыль сдавая другим в кредит
- 5-20% годовых привязанных к $
- Aave – Open Source DeFi Protocol
date: [[2022-03-07]] refs: [[20 crypto]]
Blockchain reading notes
Rocket Pool
Pug - это препроцессор HTML и шаблонизатор, который был написан на JavaScript для Node.js.
// | |
// Copyright © 2018 Kalpesh Talkar. All rights reserved. | |
// | |
// Licensed under the Apache License, Version 2.0 (the "License"); | |
// you may not use this file except in compliance with the License. | |
// You may obtain a copy of the License at | |
// | |
// http://www.apache.org/licenses/LICENSE-2.0 | |
// | |
// Unless required by applicable law or agreed to in writing, software |
# One liner | |
wget --recursive --page-requisites --adjust-extension --span-hosts --convert-links --restrict-file-names=windows --domains yoursite.com --no-parent yoursite.com | |
# Explained | |
wget \ | |
--recursive \ # Download the whole site. | |
--page-requisites \ # Get all assets/elements (CSS/JS/images). | |
--adjust-extension \ # Save files with .html on the end. | |
--span-hosts \ # Include necessary assets from offsite as well. | |
--convert-links \ # Update links to still work in the static version. |
//MIXINS | |
//1==FONTS | |
//2==REM | |
//3==appereance | |
//4==flexbox | |
//5==inline block wrapper | |
//6==clearfix | |
//7==triangle |
I posted several talks about compiling PHP from source, but everyone was trying to convince me that a package manager like Homebrew was a more convenient way to install.
The purpose of Homebrew is simple: a package manager for macOS that will allow you to set up and install common packages easily and allows you to update frequently using simple commands.
I used a clean installation of macOS Sierra to ensure all steps could be recorded and tested. In most cases you already have done work on your Mac, so chances are you can skip a few steps in this tutorial.
I’ve made this according to the installation instructions given on GetGrav.
/** | |
* Vanilla scrollTo implementation (smoothly scroll/"jump" to an element) | |
* @author github.com/andreasvirkus | |
* | |
* Default easing is: | |
* Robert Penner's easeInOutQuad - http://robertpenner.com/easing/ | |
* | |
* @param {String} target selector to scroll to | |
* @param {Object} options Optionally defined duration, offset, callback and easing | |
* |