- Install
osxfuse
:
brew cask install osxfuse
-
Reboot your Mac.
-
Install
ntfs-3g
:
" Specify a directory for plugins | |
" - For Neovim: stdpath('data') . '/plugged' | |
" - Avoid using standard Vim directory names like 'plugin' | |
call plug#begin('~/.vim/plugged') | |
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } | |
Plug 'Valloric/YouCompleteMe', { 'do': './install.py --tern-completer' } | |
Plug 'eslint/eslint' | |
Plug 'dense-analysis/ale' | |
Plug 'pangloss/vim-javascript' " JavaScript support | |
Plug 'leafgarland/typescript-vim' " TypeScript syntax |
Param ( | |
$FirstFile = $(throw "Um primeiro arquivo eh requerido"), | |
$SecondFile = $(throw "Um segundo arquivo eh requerido") | |
) | |
function md5hash($path) | |
{ | |
$md5 = new-object -TypeName System.Security.Cryptography.MD5CryptoServiceProvider | |
$file = [System.IO.File]::Open($path,[System.IO.Filemode]::Open, [System.IO.FileAccess]::Read) | |
try { |
osxfuse
:brew cask install osxfuse
Reboot your Mac.
Install ntfs-3g
:
We want to upload file to a server with POST HTTP request. We will use curl functions.
// data fields for POST request
$fields = array("f1"=>"value1", "another_field2"=>"anothervalue");
// files to upload
$filenames = array("/tmp/1.jpg", "/tmp/2.png");