Archive for April, 2014
Wednesday, April 16th, 2014
It's pretty straightforward to manage file upload. Everybody can do it with using multipart/form-data encoding RFC 1867. Let's see what happens:
client sends POST request with the file content in BODY
webserver accepts the request and initiates data transfer (or returns error 413 if the file size is exceed the limit)
webserver starts ...
Posted in Nginx | No Comments »
Wednesday, April 16th, 2014
$ cat filename | col -b > newfilename
Posted in FreeBSD, Uncategorized | No Comments »
Wednesday, April 16th, 2014
As noted in the comments its nice to have the text available for easy copy and paste into your terminal.
Show:
defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder
Hide:
defaults write com.apple.finder AppleShowAllFiles FALSE
killall Finder
Источник
Posted in Mac OS, Uncategorized | No Comments »