Sunday

Solution: How to send zip files through Gmail?

+ Rename your zip file from "file.zip" to something else like "file.zip_renameThisFile1".
+ Hit "Compose mail" button on the left panel.
+ Fill out the email address to send "To:".
+ Attached the renamed zip file.
+ Hit Send.

No comments:

Measure execution time with Julia, example using sorting algorithms

# random integers between 1 and 100 inclusive, generate thousands of them x = rand ( 1 : 100 , 100000 ) @time sort (x; alg=InsertionSort, r...