// index.html
<h1>Hello, world!</h1>// app.yaml
runtime: ${RUNTIME}| {-# OPTIONS_GHC -fno-warn-missing-signatures #-} | |
| module XMonad.Config.LXQt ( | |
| -- * Usage | |
| -- $usage | |
| lxqtConfig, | |
| desktopLayoutModifiers | |
| ) where | |
| import XMonad |
| package main | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "os" | |
| "regexp" | |
| ) | |
| var EmailRX = regexp.MustCompile("^[a-zA-Z0-9\\.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$") |
| #!/usr/bin/env Rscript | |
| library(readxl) | |
| pattern <- ".xls[x]?$" | |
| # Create a vector of Excel files to read | |
| files_to_read = list.files(pattern=pattern) | |
| # Read each file and write it to CSV |
| import System.Posix.Env (getEnv) | |
| import Data.Maybe (maybe) | |
| import XMonad | |
| import XMonad.Config.Desktop | |
| import XMonad.Config.Gnome | |
| import XMonad.Config.Kde | |
| import XMonad.Config.Mate | |
| import XMonad.Config.Xfce |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env Rscript | |
| library(roxygen2) | |
| library(rmarkdown) | |
| pkg <- "dygraphs" | |
| roxygen2::roxygenize(pkg) | |
| install.packages(pkg, repos = NULL, type = "source") | |
| rmarkdown::render_site(paste(pkg, "docs", sep = "/")) |
| package main | |
| import ( | |
| "crypto/md5" | |
| "flag" | |
| "fmt" | |
| "strings" | |
| "github.com/chrislusf/glow/flow" | |
| ) |
| package elblog | |
| import ( | |
| "time" | |
| "github.com/pshevtsov/gonx" | |
| ) | |
| const ( | |
| IntervalHourly = -1 * time.Hour |
| #!/bin/bash | |
| function jsonval { | |
| temp=`echo $json | sed 's/\\\\\//\//g' | sed 's/[{}]//g' | awk -v k="text" '{n=split($0,a,","); for (i=1; i<=n; i++) print a[i]}' | sed 's/\"\:\"/\|/g' | sed 's/[\,]/ /g' | sed 's/\"//g' | grep -w $prop` | |
| echo ${temp##*|} | |
| } | |
| json=`curl -s -X GET http://twitter.com/users/show/$1.json` | |
| prop='profile_image_url' | |
| picurl=`jsonval` |