Skip to content

Instantly share code, notes, and snippets.

# custom variables
_hkgname=blaze-html
_licensefile=LICENSE
# PKGBUILD options/directives
pkgname=haskell-blaze-html
pkgver=0.8.0.2
pkgrel=3
pkgdesc="A blazingly fast HTML combinator library for Haskell"
url="http://jaspervdj.be/blaze"
# custom variables
_hkgname=highlighting-kate
_licensefile=LICENSE
# PKGBUILD options/directives
pkgname=haskell-highlighting-kate
pkgver=0.6
pkgrel=1
pkgdesc="Syntax highlighting"
url="http://github.com/jgm/highlighting-kate"
#!/usr/bin/env python3
import sys
from colorsys import hsv_to_rgb
from shutil import get_terminal_size
block = '█'
fg = '\033[38;2;{r};{g};{b}m'
# Maintainer: Franois Garillot ("huitseeker") <francois [at] garillot.net>
# Contributor: Christian Krause ("wookietreiber") <kizkizzbangbang@gmail.com>
pkgname=apache-spark
pkgver=1.4.0
pkgrel=1
pkgdesc="fast and general engine for large-scale data processing"
arch=('any')
url="http://spark.apache.org"
license=('APACHE')
4.4.55
[es6] When comparing two symbols we may need to throw a TypeError (issue
4.3.19
[es6] Fix for-const loops (issue 3983).
4.2.71
Implement ES6 rest parameters (issue 2159).
4.2.26
ES6 Array.prototype.toString falls back on Object.prototype.toString if
4.2.18
Fix issue with __proto__ when using ES6 object literals (issue 3818).
This file has been truncated, but you can view the full file.
@SRR182165.1 HWI-EAS040:6:1:14:612 length=35
CCTTAGAGAATATTTNNNNNNNNNNN
+
BBCBCBBBB#################
@SRR182165.2 HWI-EAS040:6:1:16:1856 length=35
CAAAGATTAAACCTTGTACCTTTTNN
+
AAACCBCCCBBBBCCCBCBBCB####
@SRR182165.3 HWI-EAS040:6:1:18:491 length=35
CATCAAAGTCTGCTAGAAGCAGACAT
This file has been truncated, but you can view the full file.
@SRR182069.1 HWW-T7500-010:1:1:24:502 length=50
AATGACCTCTGTATATTTGCTCCTACAACTGATGCCTTT
+
BCBABBBBBB8ABBBBBB-BBCBBCBBCCB)B@)@BBAB
@SRR182069.2 HWW-T7500-010:1:1:39:137 length=50
TCTACACTTGTTGGAAAAATTCCACAAGAGGATCTCCTGG
+
;B>BBAB?><0@9*ABBC=7@BBBBBA(@07A:A@@?@?;
@SRR182069.3 HWW-T7500-010:1:1:45:245 length=50
CAATAACGAAAGTAATTCTAGTCATTTATAATACACGACAGC
@flying-sheep
flying-sheep / PKGBUILD
Last active September 5, 2015 09:53 — forked from chmue/PKGBUILD
Updated PKGBUILD for r-studio-bin
# Maintainer: Meow < a.li.devtty at gmail dot com >
# Get download links and md5 sums for latest version of RStudio desktop
cat <<_EOF_ >/dev/null
## R code #############
require(XML)
page = htmlTreeParse("http://www.rstudio.com/products/rstudio/download/",useInternalNodes = T)
links = sapply(getNodeSet(page,'//table[@class="downloads"]/thead/tr/th[text()="Installers"]/../../..//a[contains(@href,".deb")]'),xmlGetAttr,'href')
md5sums = sapply(getNodeSet(page,'//table[@class="downloads"]/thead/tr/th[text()="Installers"]/../../..//a[contains(@href,".deb")]/../..//code'),xmlValue)
print(cbind(links,md5sums))
@flying-sheep
flying-sheep / bordered tiling.tikz
Created June 1, 2011 11:18
A quick hack of how you can derive tiles for automatic tiling from three source tiles (you can cramp the third one – the corners – into the second, since the space there isn’t needed)
\usetikzlibrary{calc}
\begin{tikzpicture}
\def\b{.2}
\def\ts{1.5}
\tikzstyle{glass}=[fill opacity=0.1]
\coordinate (empty) at (0,0);
\coordinate (borders) at ($(empty) + (\ts+\b, 0)$);
\coordinate (corners) at ($(borders) + (\ts+\b, 0)$);
@flying-sheep
flying-sheep / markdowner.py
Created June 12, 2011 15:41
script to open markdown files. made by jezra, tweaks by me (can now open files)
#!/usr/bin/env python
'''
Hey, this is GPLv3 and copyright 2010 Jezra
'''
import sys, os
import gtk
import webkit
import markdown #http://www.freewisdom.org/projects/python-markdown/