Skip to content

Instantly share code, notes, and snippets.

View mrkitan's full-sized avatar
🎯
Focusing

Krystian Tokarski mrkitan

🎯
Focusing
View GitHub Profile
@mrkitan
mrkitan / FTP-UploadDirectory.ps1
Created March 3, 2018 01:29 — forked from dkittell/FTP-UploadDirectory.ps1
PowerShell – FTP Upload Directory With Sub-Directories
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\"
@mrkitan
mrkitan / FTP-UploadDirectory.ps1
Created March 3, 2018 01:29 — forked from dkittell/FTP-UploadDirectory.ps1
PowerShell – FTP Upload Directory With Sub-Directories
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\"
@mrkitan
mrkitan / README.md
Created February 12, 2018 11:18 — forked from hofmannsven/README.md
My simply Git Cheatsheet
@mrkitan
mrkitan / README.md
Created February 12, 2018 11:18 — forked from hofmannsven/README.md
My simply Git Cheatsheet
@mrkitan
mrkitan / JavaScript reference.md
Created September 7, 2017 23:40 — forked from yig/JavaScript reference.md
An overview of JavaScript best practices. Geared towards someone with a C/C++/Java/Python background.

JavaScript reference for non-JavaScript programmers

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.

@mrkitan
mrkitan / ExcelFormulas.js
Created September 25, 2015 10:44 — forked from pies/ExcelFormulas.js
Few Excel formulas - PMT, PPMT, XIRR - expressed in Javascript
/* 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);
},
@mrkitan
mrkitan / frontendDevlopmentBookmarks.md
Last active September 13, 2015 14:21 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.