With only line #1, you end up with cabal update returning
Downloading the latest package list from stackage
cabal: fromFlag NoFlag. Use fromFlagOrDefault
| library(phom) | |
| library(scatterplot3d) | |
| N <- 20 | |
| R <- 25 | |
| r <- 10 | |
| sd <- 1 | |
| ts <- seq(0,2*pi,pi/N) | |
| ps <- seq(0,2*pi,pi/N) |
| herd<-function(vaccination.fraction,arrival.rate=1/30,end.of.time=365,frequent.flyers=0.01,annoying.beep=TRUE){ | |
| N<-10000 | |
| xy<-matrix(runif(2*N),nrow=N,ncol=2) | |
| status<-1+rbinom(N,1,vaccination.fraction) | |
| startstat<-status | |
| par(mar=c(1,1,3,1)) |
| library(inline) | |
| library(microbenchmark) | |
| car <- cfunction(c(x = "pairlist"), ' | |
| if (x == R_NilValue) | |
| return R_NilValue; | |
| if (TYPEOF(x) != LISTSXP) | |
| error("x must be a pairlist"); | |
| return CAR(x); | |
| ') |
| @binkmail.com | |
| @bobmail.info | |
| @chammy.info | |
| @devnullmail.com | |
| @letthemeatspam.com | |
| @mailinater.com | |
| @mailinator.net | |
| @mailinator2.com | |
| @notmailinator.com | |
| @reallymymail.com |
With only line #1, you end up with cabal update returning
Downloading the latest package list from stackage
cabal: fromFlag NoFlag. Use fromFlagOrDefault
| # see the current limits | |
| $ sysctl -a | grep maxproc | |
| # increase it | |
| $ sudo sysctl -w kern.maxproc=xxxx | |
| $ sudo sysctl -w kern.maxprocperuid=xxx | |
| # run at startup | |
| $ sudo vim /etc/sysctl.conf |
| # This file contains the GAP input needed to verify the result of the paper | |
| # Mestre, Jean-François; Schoof, René; Washington, Lawrence; Zagier, Don | |
| # Quotients homophones des groupes libres. (French) [Homophonic quotients of | |
| # free groups] Experiment. Math. 2 (1993), no. 3, 153--155 | |
| # (http://eudml.org/doc/233741) with respect to the English language. | |
| F:=FreeGroup("a","b","c","d","e","f","g","h","i","j","k","l","m", | |
| "n","o","p","q","r","s","t","u","v","w","x","y","z"); | |
| AssignGeneratorVariables(F); |
Below is the list of modern JS frameworks and almost frameworks – React, Vue, Angular, Ember and others.
All files were downloaded from https://cdnjs.com and named accordingly.
Output from ls command is stripped out (irrelevant stuff)
$ ls -lhS
566K Jan 4 22:03 angular2.min.js
| package xyz | |
| import ( | |
| "io" | |
| "os" | |
| "golang.org/x/crypto/ssh/terminal" | |
| ) | |
| type readerWriter struct { | |
| io.Reader |