Update system packages:
sudo apt update && sudo apt upgrade -y| //+------------------------------------------------------------------+ | |
| //| cv.mq5 | | |
| //| cv | | |
| //| | | |
| //+------------------------------------------------------------------+ | |
| //+------------------------------------------------------------------+ | |
| //| Expert initialization function | | |
| //+------------------------------------------------------------------+ | |
| int OnInit() |
| using System; | |
| using System.Threading; | |
| using System.Diagnostics; | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { |
https://github.com/PacktPublishing free to download books code by Packet
https://github.com/EbookFoundation/free-programming-books Very immense
| function Loader() { | |
| return ( | |
| <div className="d-flex justify-content-center align-items-center h-100 "> | |
| <Spinner color="dark" /> | |
| </div> | |
| ) | |
| } | |
| export default Loader; |
| // https://www.npmjs.com/package/react-swipeable | |
| const { useRef, useMemo } = React; | |
| const LEFT = "Left"; | |
| const RIGHT = "Right"; | |
| const UP = "Up"; | |
| const DOWN = "Down"; | |
| /* global document */ | |
| const defaultProps = { |
| - to init git (for new code run once) | |
| git init | |
| - to clone from github repo | |
| git clone /path/to/repository | |
| - To add and commit current codes | |
| git add -A | |
| git commit -m "change code xxx" |