duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
| # restore_packages.R | |
| # | |
| # installs each package from the stored list of packages | |
| # source: http://hlplab.wordpress.com/2012/06/01/transferring-installed-packages-between-different-installations-of-r/ | |
| load("~/installed_packages.rda") | |
| for (count in 1:length(installedpackages)) { | |
| install.packages(installedpackages[count]) | |
| } |
Functions are first–class citizens in JS, meaning that they can be passed around like any other type of data, eg, variables. http://en.wikipedia.org/wiki/First-class_function
Declared functions build in memory immediately when the program loads.
| #!/bin/sh | |
| # | |
| # Japanese Kanji File Encode Converter (to UTF-8) | |
| # Usage: $ sh ./enc_converter.sh "<FilePath>" | |
| # <Filepath> is used for argument of "ls" command. | |
| # Ex) sh ./enc_converter.sh "~/test/*.txt" | |
| # Expect Output of 'file' Command | |
| cp932="Non-ISO extended-ASCII text" | |
| jis="ASCII text" |