This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<meta name="generator" content="pandoc" /> | |
<title></title> | |
</head> | |
<body> | |
<p>List:</p> | |
<ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
b <- function(path = "package/", ...){ | |
require(devtools) | |
require(roxygen2) | |
pkg <- as.package(path) # package pointer | |
## update documentation | |
message("Updating documentation...") | |
roxygenise(path, ...) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun ess-build-and-load-package () | |
"Builds R pkg in current project and (re)loads it in R session." | |
(interactive) | |
(setq curbuf (current-buffer)) | |
(setq w1 (selected-window)) | |
(setq w1name (buffer-name)) | |
(setq tmpbuf (get-buffer-create "*pkg build*")) | |
(setq w2 (split-window-horizontally)) | |
(shell-command (format "~/.emacs.d/build-R-pkg.sh %s" eproject-root) tmpbuf ) | |
(ess-command (format "pkg.path <- \"%s\";pkg.name <- readLines(file.path(pkg.path, 'DESCRIPTION'));pkg.name <- strsplit(pkg.name[grepl('Package: ', pkg.name)], ' ')[[1]][2];pkg.ns <- paste0('package:', pkg.name);if (!is.na(match(pkg.ns, search()))){detach(pkg.ns, character.only = TRUE)};library(pkg.name, character.only = TRUE, unload = TRUE)\n" eproject-root)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
basename=rescuetime | |
pkgname="$basename-beta" | |
pkgver=2.6.0 | |
pkgrel=144 | |
pkgdesc="RescueTime time tracker software (binary beta) + firefox extension" | |
url="https://www.rescuetime.com" | |
arch=('i686' 'x86_64') | |
license=('GPL2') | |
depends=('qt' 'xprintidle') | |
optdepends=('firefox: site time tracking') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## load "pander" package | |
## http://rapporter.github.com/pander/ | |
library(pander) | |
## "brew" the below file to Pandoc's markdown | |
Pandoc.brew('example.brew') | |
## or convert to HTML at one go | |
## NOTE: `pandoc` is needed for the conversion | |
Pandoc.brew('example.brew', output = tempfile(), convert = 'html') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--head | |
meta: | |
title: UK language usage | |
description: Analysing the results of The Cambridge Online Survey of World Englishes | |
in the United Kingdom | |
author: ' (@daroczig)' | |
packages: | |
- class | |
- descr | |
- dismo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Igor Yanchenko <[email protected]> | |
# Updated: Gergely Daróczig <[email protected]> | |
pkgname=snakefire-git | |
pkgver=20130818 | |
pkgrel=1 | |
pkgdesc='A Campfire desktop client' | |
arch=('i686' 'x86_64' 'ppc') | |
url='http://snakefire.org' | |
license=('MIT') | |
depends=('python2' 'python2-distribute' 'python-pyfire' 'python2-pyqt' 'python2-keyring' 'python2-notify' 'python2-pyenchant') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```{r include=FALSE} | |
library(pander); library(xtable) | |
``` | |
# `pander` demo | |
```{r, results="asis"} | |
pander(CO2[1:8, ], style = 'rmarkdown') | |
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Andrea Scarpino <[email protected]> | |
pkgname=kdeplasma-applets-applicationname | |
pkgver=1.7 | |
pkgrel=1 | |
pkgdesc="A QML plasmoid to display the application name of the focused window" | |
arch=('any') | |
url="https://github.com/ndr/applicationname-plasmoid" | |
license=('GPL') | |
depends=('kdebase-workspace') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## compile a list of available packages on CRAN | |
aps <- as.data.frame(available.packages()) | |
## get the list of Depends and clean up a bit | |
deps <- gdata::trim(unlist(strsplit(as.character(aps$Depends), ','))) | |
deps <- gsub('[ \\(].*|\\n', '', deps) | |
## freq table | |
depst <- table(deps) |
OlderNewer