Skip to content

Instantly share code, notes, and snippets.

View vladpetyuk's full-sized avatar
🎯
trying to stay focused

Vlad Petyuk vladpetyuk

🎯
trying to stay focused
View GitHub Profile
# R manifest
# Manifest type: session
# Dependency repositories: 5
# repo: https://cran.rstudio.com/
# repo: https://bioconductor.org/packages/3.4/bioc
# repo: https://bioconductor.org/packages/3.4/data/annotation
# repo: https://bioconductor.org/packages/3.4/data/experiment
# repo: https://bioconductor.org/packages/3.4/extra
"name","url","type","branch","subdir","extra","version"
"bnlearn","https://cran.rstudio.com/src/contrib","source","trunk",".",NA,"4.0"
@vladpetyuk
vladpetyuk / bioc_test.rman
Last active December 6, 2016 00:31
testing seeding manifest with Bioconductor repo
# R manifest
# Manifest type: session
# Dependency repositories: 5
# repo: https://cran.rstudio.com/
# repo: https://bioconductor.org/packages/3.4/bioc
# repo: https://bioconductor.org/packages/3.4/data/annotation
# repo: https://bioconductor.org/packages/3.4/data/experiment
# repo: https://bioconductor.org/packages/3.4/extra
"name","url","type","branch","subdir","extra","version"
"bnlearn","https://cran.rstudio.com/src/contrib","CRAN","trunk",".",NA,"4.0"
@vladpetyuk
vladpetyuk / LewyBodies.SN.BottomUp.rman
Last active December 6, 2016 00:31
swtichr seeding manifest for LewyBodies.SN.BottomUp package
# R manifest
# Manifest type: session
# Dependency repositories: 5
# repo: https://cran.rstudio.com/
# repo: https://bioconductor.org/packages/3.4/bioc
# repo: https://bioconductor.org/packages/3.4/data/annotation
# repo: https://bioconductor.org/packages/3.4/data/experiment
# repo: https://bioconductor.org/packages/3.4/extra
"name","url","type","branch","subdir","extra","version"
# "switchrGist","https://cran.rstudio.com/src/contrib","CRAN","trunk",".",NA,"0.2.1"
@vladpetyuk
vladpetyuk / manifest.rman6ac79ce5da
Last active December 5, 2016 17:47
An R seeding manifest
# R manifest
# Manifest type: session
# Dependency repositories: 5
# repo: https://cran.rstudio.com/
# repo: https://bioconductor.org/packages/3.4/bioc
# repo: https://bioconductor.org/packages/3.4/data/annotation
# repo: https://bioconductor.org/packages/3.4/data/experiment
# repo: https://bioconductor.org/packages/3.4/extra
"name","url","type","branch","subdir","extra","version"
"Rcpp","https://cran.rstudio.com/src/contrib","CRAN","trunk",".",NA,"0.12.8"
@vladpetyuk
vladpetyuk / manifest.rman6ac72098920e
Created December 5, 2016 17:35
An R seeding manifest
# R manifest
# Manifest type: session
# Dependency repositories: 5
# repo: https://cran.rstudio.com/
# repo: https://bioconductor.org/packages/3.4/bioc
# repo: https://bioconductor.org/packages/3.4/data/annotation
# repo: https://bioconductor.org/packages/3.4/data/experiment
# repo: https://bioconductor.org/packages/3.4/extra
"name","url","type","branch","subdir","extra","version"
"switchrGist","https://cran.rstudio.com/src/contrib","CRAN","trunk",".",NA,"0.2.1"
# R manifest
# Manifest type: session
# Dependency repositories: 5
# repo: https://cran.rstudio.com/
# repo: https://bioconductor.org/packages/3.4/bioc
# repo: https://bioconductor.org/packages/3.4/data/annotation
# repo: https://bioconductor.org/packages/3.4/data/experiment
# repo: https://bioconductor.org/packages/3.4/extra
"name","url","type","branch","subdir","extra","version"
"ggplot2","https://cran.rstudio.com","cran","none",".",NA,"2.2.0"
@vladpetyuk
vladpetyuk / man_ggplot_210.rman
Created December 5, 2016 04:24
switchr manifest with ggplot 2.1.0
# R manifest
# Manifest type: session
# Dependency repositories: 5
# repo: https://cran.rstudio.com/
# repo: https://bioconductor.org/packages/3.4/bioc
# repo: https://bioconductor.org/packages/3.4/data/annotation
# repo: https://bioconductor.org/packages/3.4/data/experiment
# repo: https://bioconductor.org/packages/3.4/extra
"name","url","type","branch","subdir","extra","version"
"ggplot2","https://cran.rstudio.com","cran","none",".",NA,"2.1.0"
@vladpetyuk
vladpetyuk / manifest.rmand7b02e69e23d
Last active December 3, 2016 07:33
An R seeding manifest
# R manifest
# Manifest type: session
# Dependency repositories: 5
# repo: https://cran.rstudio.com/
# repo: https://bioconductor.org/packages/3.4/bioc
# repo: https://bioconductor.org/packages/3.4/data/annotation
# repo: https://bioconductor.org/packages/3.4/data/experiment
# repo: https://bioconductor.org/packages/3.4/extra
"name","url","type","branch","subdir","extra","version"
"gelnet","https://cran.rstudio.com/src/contrib","CRAN","trunk",".",NA,"1.2.1"
@vladpetyuk
vladpetyuk / manifest.rman3041203f9269
Last active December 2, 2016 06:35
An R seeding manifest
# R manifest
# Manifest type: session
# Dependency repositories: 5
# repo: https://cran.rstudio.com/
# repo: https://bioconductor.org/packages/3.4/bioc
# repo: https://bioconductor.org/packages/3.4/data/annotation
# repo: https://bioconductor.org/packages/3.4/data/experiment
# repo: https://bioconductor.org/packages/3.4/extra
"name","url","type","branch","subdir","extra","version"
"acepack","https://cran.rstudio.com/src/contrib","CRAN","trunk",".",NA,"1.4.1"
@vladpetyuk
vladpetyuk / lorman.cpp
Last active September 1, 2015 05:22
function relevant to one of the problems from Lorman math problems book
#include <iostream>
using namespace std;
double lorman(unsigned int n)
{
if(n==1)
return 1;
else
return lorman(n-1) + 1/lorman(n-1);
}