Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
| clear | |
| # FTP Server Variables | |
| $FTPHost = 'ftp://192.168.1.1/html/' | |
| $FTPUser = 'user' | |
| $FTPPass = 'password' | |
| #Directory where to find pictures to upload | |
| $UploadFolder = "C:\Temp\" | |
| clear | |
| # FTP Server Variables | |
| $FTPHost = 'ftp://192.168.1.1/html/' | |
| $FTPUser = 'user' | |
| $FTPPass = 'password' | |
| #Directory where to find pictures to upload | |
| $UploadFolder = "C:\Temp\" | |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
Author: Yotam Gingold
License: Public Domain (CC0)
This document is intended as a reference or introduction to JavaScript for someone familiar with a language like C/C++/Java or Python. It follows best practices and gathers the scattered wisdom from matny stackoverflow questions and in-depth JavaScript essays. It relies on no external libraries.
| /* Based on | |
| * - EGM Mathematical Finance class by Enrique Garcia M. <egarcia@egm.co> | |
| * - A Guide to the PMT, FV, IPMT and PPMT Functions by Kevin (aka MWVisa1) | |
| */ | |
| var ExcelFormulas = { | |
| PVIF: function(rate, nper) { | |
| return Math.pow(1 + rate, nper); | |
| }, |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.