Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Watch status, set to default image on error (not found from MCWS) | import QtQuick 2.8
import QtQuick.Controls 2.2
import QtGraphicalEffects 1.0
Item {
height: 32
width: height
property alias image: img
property bool animateLoad: false
Image {
id: img
sourceSize.height: parent.height
sourceSize.width: parent.width
opacity: .8
... | import QtQuick 2.8
import QtQuick.Controls 2.2
import QtGraphicalEffects 1.0
Item {
height: 32
width: height
property alias image: img
property bool animateLoad: false
Image {
id: img
sourceSize.height: parent.height
sourceSize.width: parent.width
opacity: .8
... |
Fix autotest on Windows and OS X. | import qbs
CppApplication {
Depends { name: "Qt.widgets" }
files: [
"main.cpp",
"mainwindow.cpp",
"mainwindow.h",
"mainwindow.ui"
]
}
| import qbs
CppApplication {
Depends { name: "Qt.widgets" }
consoleApplication: true
cpp.debugInformation: false
cpp.separateDebugInformation: false
files: [
"main.cpp",
"mainwindow.cpp",
"mainwindow.h",
"mainwindow.ui"
]
}
|
Install run-time resources also with qbs build. | import qbs 1.0
Product {
name: "SharedContent"
Group {
name: "Unconditional"
qbs.install: true
qbs.installDir: project.ide_data_path
qbs.installSourceBase: "qtcreator"
prefix: "qtcreator/"
files: [
"debugger/**/*",
"designer/**/*",
... | import qbs 1.0
Product {
name: "SharedContent"
Group {
name: "Unconditional"
qbs.install: true
qbs.installDir: project.ide_data_path
qbs.installSourceBase: "qtcreator"
prefix: "qtcreator/"
files: [
"cplusplus/**/*",
"debugger/**/*",
... |
Make Select Upgrades page look like the other pages | // Copyright (c) 2016 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.
import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Layouts 1.1
import QtQuick.Window 2.1
import UM 1.2 as UM
import Cura 1.0 as Cura
Cura.MachineAction
{
anchors.fill: parent;
Item
{
id: ... | // Copyright (c) 2016 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.
import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Layouts 1.1
import QtQuick.Window 2.1
import UM 1.2 as UM
import Cura 1.0 as Cura
Cura.MachineAction
{
anchors.fill: parent;
Item
{
id: ... |
Fix custom list view to clip content before the border |
import QtQuick 2.4
import QtQuick.Controls 1.1
ListView {
id: view
anchors.margins: 2
Rectangle {
id: background
anchors.fill: parent
radius: 5
z: -3
clip: true
color: "white"
border.width: 2
border.color: "gray"
}
Item {
... |
import QtQuick 2.4
import QtQuick.Controls 1.1
ListView {
id: view
anchors.margins: 2
Rectangle {
id: backgroundBorder
anchors.fill: parent
radius: 5
z: -3
color: "white"
border.width: 2
border.color: "gray"
Rectangle {
id... |
Remove filling so that palette will be more reusable | import QtQuick 2.0
Rectangle {
property var paletteModel
anchors.fill: parent
Column {
Text {
text: paletteModel.name
}
Row {
Repeater {
model: paletteModel.colors
delegate: Rectangle {
width: 30
... | import QtQuick 2.0
Rectangle {
property var paletteModel
Column {
Text {
text: paletteModel.name
}
Row {
Repeater {
model: paletteModel.colors
delegate: Rectangle {
width: 30
height: 30
... |
Improve unit tests of WebView | /****************************************************************************
**
** Copyright (C) 2014 Jolla Ltd.
** Contact: Raine Makelainen <raine.makelainen@jolla.com>
**
****************************************************************************/
/* This Source Code Form is subject to the terms of the Mozilla Pu... | /****************************************************************************
**
** Copyright (C) 2014 Jolla Ltd.
** Contact: Raine Makelainen <raine.makelainen@jolla.com>
**
****************************************************************************/
/* This Source Code Form is subject to the terms of the Mozilla Pu... |
Support headres in protocol's request. | Object {
signal error;
property bool enabled: true;
property bool loading: false;
property string baseUrl;
property string url;
requestImpl(url, data, callback, type, headers): {
if (!this.enabled)
return;
this.loading = true
this.url = url
log("request", this.baseUrl + url, data)
var self = this;
... | Object {
signal error;
property bool enabled: true;
property bool loading: false;
property string baseUrl;
property string url;
requestImpl(url, data, callback, type, headers): {
if (!this.enabled)
return;
this.loading = true
this.url = url
log("request", this.baseUrl + url, data)
var self = this;
... |
Make a sourcePath a string to avoid resolving against the project | import qbs
import qbs.File
import qbs.TextFile
import "qbs/imports/QtUtils.js" as QtUtils
Project {
id: root
name: "Qt"
readonly property path sourcePath: sourceDirectory
readonly property string version: QtUtils.qtVersion(sourcePath)
readonly property bool developerBuild: false
... | import qbs
import qbs.File
import qbs.TextFile
import "qbs/imports/QtUtils.js" as QtUtils
Project {
id: root
name: "Qt"
readonly property string sourcePath: sourceDirectory
readonly property string version: QtUtils.qtVersion(sourcePath)
readonly property bool developerBuild: false
... |
Add tabs to the demo | import QtQuick 2.2
import Material 0.1
import Material.ListItems 0.1 as ListItem
Page {
id: page
title: "Sub Page"
ListView {
anchors.fill: parent
model: 3
delegate: ListItem.Standard {
text: "List Item #" + modelData
}
}
}
| import QtQuick 2.2
import Material 0.1
import Material.ListItems 0.1 as ListItem
Page {
id: page
title: "Page Title"
tabs: [
// Each tab can have text and an icon
{
text: "Overview",
icon: "action/home"
},
// You can also leave out the icon
{
text:"Projects",
},
// Or just simply use a... |
Fix tabs/spaces in example file | library(mongoplyr)
conn <- mongo(db = "mongoplyr_tests", collection = "restaurants")
MongoPipeline() %>%
match(.borough == "Manhattan" & .cuisine == "Pizza") %>%
execute(conn) -> pizzaPlacesInManhattan
MongoPipeline() %>%
group(by = .list(cuisine = .cuisine, borough = .borough), count = .sum(1)) %>%
execute(... | library(mongoplyr)
conn <- mongo(db = "mongoplyr_tests", collection = "restaurants")
MongoPipeline() %>%
match(.borough == "Manhattan" & .cuisine == "Pizza") %>%
execute(conn) -> pizzaPlacesInManhattan
MongoPipeline() %>%
group(by = .list(cuisine = .cuisine, borough = .borough), count = .sum(1)) %>%
execute(conn... |
Refactor heatmap making and modularize processing the dataframe. | library(gplots)
main <- function(){
dataset <- loaded_variables[[1]] #dataframe with columns: Row.Label, Bio.marker, ASSAY_0001 ASSAY_0002 ...
measurements <- subset(dataset,select=-c(Row.Label,Bio.marker)) # this will select all columns other than Row.Label,Bio.marker columns
measurements <- data.matr... | library(gplots)
main <- function(){
dataset <- loaded_variables[[1]] #dataframe with columns: Row.Label, Bio.marker, ASSAY_0001 ASSAY_0002 ...
measurements <- extractMeasurements(dataset)
measurements <- assignNames(measurements,dataset)
measurements <- transform(measurements)
makeHeatmap(measurements)
}
... |
Use older version of kableExtra | #!/usr/bin/env Rscript
# For https://github.com/berkeley-dsep-infra/datahub/issues/1921
print("Installing packages for PH 290W")
source("/tmp/class-libs.R")
class_name = "PH 290W"
class_libs = c(
"plotly", "4.9.2.1",
"kableExtra", "1.3.1",
"ggthemes", "4.2.0",
"formattable", "0.2.0.1"
)
class_libs_install_v... | #!/usr/bin/env Rscript
# For https://github.com/berkeley-dsep-infra/datahub/issues/1921
print("Installing packages for PH 290W")
source("/tmp/class-libs.R")
class_name = "PH 290W"
class_libs = c(
"kableExtra", "1.1.0",
"plotly", "4.9.2.1",
"ggthemes", "4.2.0",
"formattable", "0.2.0.1"
)
class_libs_install_v... |
Fix all bugs to make running | create_model <- function( dtm, k ) {
library(stm)
out <- readCorpus( dtm, type = "dtm" )
documents <- out$documents
vocab <- out$vocab
topic <- stm(documents, vocab, init.type = "Spectral", max.em.its = 50)
return topic;
}
| create_model <- function( dtm, k ) {
library(stm)
out <- readCorpus( dtm, type = "slam" )
documents <- out$documents
vocab <- out$vocab
topic <- stm(documents, vocab, K = k, init.type = "Spectral", max.em.its = 50)
return( topic )
}
|
Move to rini for auth details. | # Generic query wrapper to keep the MySQL nastiness out of the code.
dbquery <- function(db, query, mysqlhost="mysql.external.legion.ucl.ac.uk", mysqlport = 3306) {
# Pull in the RMySQL library and my tool for reading Python ini files.
(library(RMySQL))
source("r/pyconfconv.r")
# Get authentication information.
... | # Generic query wrapper to keep the MySQL nastiness out of the code.
dbquery <- function(db, query, mysqlhost="mysql.external.legion.ucl.ac.uk", mysqlport = 3306) {
# Pull in the RMySQL library and my tool for reading Python ini files.
(library(RMySQL))
source("r/rini.r")
# Get authentication information.
authd... |
Add extensive tests for `is_S3_user_generic` | context('S3 dispatch test')
test_that('S3 methods are found', {
s3 = import('s3')
test = local(getS3method('test', 'character', s3))
expect_that(test, equals(s3$test.character))
# NOT executed locally!
print = getS3method('print', 'test')
expect_that(print, equals(s3$print.test))
})
test_tha... | context('S3 dispatch test')
test_that('S3 generics are recognized', {
foo = function (x) UseMethod('foo')
bar = function (x) print('UseMethod')
baz = function (x) {
x = 42
UseMethod('baz')
}
qux = function (x) {
UseMethod('print')
a = 12
}
quz = function (x)
... |
Remove equilibriation graphs to speed up report generation | pdf("reports/{run}.pdf")
data <- read.csv("data/{run}/results.csv", header=T)
par(mfrow=c(2,2))
plot(data$T, data$M, xlab="Temperature", ylab="Magnetization")
plot(data$T, data$E, xlab="Temperature", ylab="Energy")
plot(data$T, data$Xb, xlab="Temperature", ylab="Magnetic susceptibility")
plot(data$T, data$Xt,... | pdf("reports/{run}.pdf")
data <- read.csv("data/{run}/results.csv", header=T)
par(mfrow=c(2,2))
plot(data$T, data$M, xlab="Temperature", ylab="Magnetization")
plot(data$T, data$E, xlab="Temperature", ylab="Energy")
plot(data$T, data$Xb, xlab="Temperature", ylab="Magnetic susceptibility")
plot(data$T, data$Xt,... |
Add R script to plot RMSE. (Not yet working). | #!/usr/bin/env Rscript
args <- commandArgs(trailingOnly = TRUE)
file = args[1]
x <- read.csv(file, header=T)
library(ggplot2)
library(methods)
ggplot(x, aes(x = filename, fill = variable)) +
geom_bar(stat="identity", ymin=0, aes(y=value, ymax=value), position="dodge") +
geom_text(aes(x=filename, y=value, ymax=va... | |
Solve Salary with Bonus in r | input <- file('stdin', 'r')
a <- readLines(input, n=1)
b <- as.integer(readLines(input, n=1))
c <- as.double(readLines(input, n=1))
write(sprintf("TOTAL = R$ %.2f", b + (c * 0.15)), "")
| |
Solve Simple Sum in r | input <- file('stdin', 'r')
a <- as.integer(readLines(input, n=1))
b <- as.integer(readLines(input, n=1))
write(paste("SOMA =", a + b), '')
| |
Add an R script to fit the model, and compare with survival::clogit estimates | ## example conditional logistic regression using Stan
## David C Muller
library(survival)
library(rstan)
set.seed(77834)
## use the infertility data from the survival package
datlist <- list(N=nrow(infert),
n_grp=max(infert[, "stratum"]),
n_coef=2,
x=infert[,c("spont... | |
Add script to make inputs for phast | #!/usr/bin/Rscript
library(ape)
tree <- read.nexus('mcc.tree')
nms <- tree$tip.label
abs <- sapply(strsplit(nms, '_'), '[[', 1)
ind <- match(abs, state.abb)
reg <- state.region[ind]
regDNA <- factor(reg,
levels=c("Northeast", "South", "North Central", "West"),
labels=c('A', 'T', 'C'... | |
Add a testing file for Windows | REBOL []
msvcrt: make library! %msvcrt.dll
getdrives: make routine! compose/deep [
[return: [uint32]]
(msvcrt) "_getdrives"
]
maps: getdrives
i: 0
while [i < 26] [
unless zero? maps and shift 1 i [
print rejoin [to char! (to integer! #"A") + i ":"]
]
++ i
]
close msvcrt
| |
Install script for most common/useful packages | ###############################################
### COMMONLY USED PACKAGES IN AIM R SCRIPTS ###
###############################################
#### DATA WRANGLING ####
install.packages(
c(
"dplyr", ## Notably useful for data frame manipulation with group_by(), summarize(), and mutate() and the piping operator %... | |
Fix contract profiler tests to test more. | #lang racket/base
(provide (all-defined-out))
(struct contract-profile
(total-time n-samples n-contract-samples
;; (pairof blame? profile-sample)
;; samples taken while a contract was running
live-contract-samples
;; (listof blame?)
;; all the blames that were observed during sampling
all-blames
... | #lang racket/base
(require racket/port)
(provide (all-defined-out))
(struct contract-profile
(total-time n-samples n-contract-samples
;; (pairof blame? profile-sample)
;; samples taken while a contract was running
live-contract-samples
;; (listof blame?)
;; all the blames that were observed during s... |
Test is sensitive to contract messages | #lang racket/load
(module a racket
(define memory%
(class object%
(super-new)
(define/public (malloc) 1)
(define/public (free n) (void))))
(provide/contract
[memory%
(class/c [malloc (->m number?)]
[free (->m number? void)])]))
(module b racket
(require 'a tests/eli... | #lang racket/load
(module a racket
(define memory%
(class object%
(super-new)
(define/public (malloc) 1)
(define/public (free n) (void))))
(provide/contract
[memory%
(class/c [malloc (->m number?)]
[free (->m number? void)])]))
(module b racket
(require 'a tests/eli... |
Fix TR test for new contract error message format. | #;
(exn-pred exn:fail:contract? #rx".*contract violation.*contract.*f.*\\(-> Number Number\\).*")
#lang scheme/load
(module m typed/scheme
(: f (Number -> Number))
(define (f x) (add1 x))
(define g 17)
(provide f g))
(module violator scheme
(require 'm)
(f 'foo))
(module o typed/scheme
(require 'viola... | #;
(exn-pred exn:fail:contract? #rx".*contract violation.*\\(-> Number Number\\).*contract.*f.*")
#lang scheme/load
(module m typed/scheme
(: f (Number -> Number))
(define (f x) (add1 x))
(define g 17)
(provide f g))
(module violator scheme
(require 'm)
(f 'foo))
(module o typed/scheme
(require 'viola... |
Add DMdA teachpacks to documentation check. | #lang racket/base
(require rackunit/docs-complete)
;(check-docs (quote deinprogramm/world))
;(check-docs (quote deinprogramm/turtle))
;(check-docs (quote deinprogramm/test-suite))
;(check-docs (quote deinprogramm/syntax-checkers))
;(check-docs (quote deinprogramm/run-dmda-code))
;(check-docs (quote deinprogramm/line3d)... | #lang racket/base
(require rackunit/docs-complete)
(check-docs (quote deinprogramm/world))
(check-docs (quote deinprogramm/image))
(check-docs (quote deinprogramm/DMdA-beginner) #:skip #rx"(^#%)|(^\\.\\.)|(^contract$)|(^define-contract$)")
(check-docs (quote deinprogramm/DMdA-vanilla) #:skip #rx"(^#%)|(^\\.\\.)|(^con... |
Revert "Move docs into the "Data Libraries" category" | #lang info
(define scribblings '(["scribblings/collections.scrbl" (multi-page) ("Data Libraries")]))
(define cover-omit-paths
'("scribblings"))
| #lang info
(define scribblings '(["scribblings/collections.scrbl" (multi-page)]))
(define cover-omit-paths
'("scribblings"))
|
Fix test for new contract error message format. | #;
(exn-pred exn:fail:contract? #rx".*contract violation.*blaming 'U.*")
#lang scheme/load
(module T typed-scheme
(define-struct: [a] thing ([get : a]))
(: thing->string ((thing String) -> String))
(define (thing->string x)
(string-append "foo" (thing-get x)))
(provide (all-defined-out)))
(module U sch... | #;
(exn-pred exn:fail:contract? #rx".*contract violation.*blaming U.*")
#lang scheme/load
(module T typed-scheme
(define-struct: [a] thing ([get : a]))
(: thing->string ((thing String) -> String))
(define (thing->string x)
(string-append "foo" (thing-get x)))
(provide (all-defined-out)))
(module U sche... |
Change exception predicate for a test | #;
(exn-pred exn:fail:contract:arity?)
#lang racket/load
;; fail version
(module example typed/racket
;; coerces into unapplicable function
(: id (Procedure -> Procedure))
(define (id x) x)
(: f (Integer -> Integer))
(define (f x) (+ x 1))
(define g (id f))
;; contract here should make sure g is not ... | #;
(exn-pred exn:fail:contract?)
#lang racket
;; fail version
(module example typed/racket
;; coerces into unapplicable function
(: id (Procedure -> Procedure))
(define (id x) x)
(: f (Integer -> Integer))
(define (f x) (+ x 1))
(define g (id f))
;; contract here should make sure g is not applicable
... |
Set print only errors for class notes. | #lang plai
(define (mconcat lst1 lst2)
(cond
[(empty? lst2) lst1]
[(empty? lst1) lst2]
[else (mconcatAux (reversa lst1 '()) lst2)]))
(define (mconcatAux lst1 lst2)
(cond
[(empty? lst1) lst2]
[else (mconcatAux (cdr lst1) (cons (car lst1) lst2))]))
(define (reversa lst1 lst2)
(cond
[(empt... | #lang plai
(print-only-errors true)
(define (mconcat lst1 lst2)
(cond
[(empty? lst2) lst1]
[(empty? lst1) lst2]
[else (mconcatAux (reversa lst1 '()) lst2)]))
(define (mconcatAux lst1 lst2)
(cond
[(empty? lst1) lst2]
[else (mconcatAux (cdr lst1) (cons (car lst1) lst2))]))
(define (reversa lst... |
Update bash completion helper for new package scopes. | #lang racket/base
(require racket/string setup/dirs setup/link)
(define (add-directory-collections c s)
(if (directory-exists? c)
(for/fold ([s s]) ([p (in-list (directory-list c))]
#:when (directory-exists? (build-path c p))
#:when (regexp-match? #rx#"^[a-zA-Z... | #lang racket/base
(require racket/string setup/dirs setup/link)
(define (add-directory-collections c s)
(if (directory-exists? c)
(for/fold ([s s]) ([p (in-list (directory-list c))]
#:when (directory-exists? (build-path c p))
#:when (regexp-match? #rx#"^[a-zA-Z... |
Add test to track tr memory usage. | #lang racket/load
(displayln "The printouts below are designed to trick drdr into graphing them;")
(displayln "they aren't times, but memory usage.")
(define (print-memory)
(for ((i 10))
(collect-garbage))
(let ([n (current-memory-use)])
(printf "cpu time: ~a real time: ~a gc time: ~a\n" n n n)))
(print... | |
Add test file. Closes PR 10594. | #;
(exn-pred exn:fail:contract? #rx".*U broke the contract.*")
#lang scheme/load
(module T typed-scheme
(define-struct: [a] thing ([get : a]))
(: thing->string ((thing String) -> String))
(define (thing->string x)
(string-append "foo" (thing-get x)))
(provide (all-defined-out)))
(module U scheme
... | |
Add test for PR 14144 | #;
(exn-pred #rx"Expected 'foo, but got 'bar")
#lang racket/load
;; Test for PR 14144
;; Make sure that the second definition is checked
;; against the synthesized type for the first definition
(require typed/racket)
(define x 'foo)
(define x 'bar)
| |
Add notice to Readme that this feature is now part of guard itself | = Guard::Ego
Guard::Ego is the alter ego of Guard and will reload Guard when necessary.
== Install
Please be sure to have {guard}[http://github.com/guard/guard] installed before continue.
Install the gem:
gem install guard-ego
Add it to your Gemfile (inside test group):
gem 'guard-ego'
Add guard definit... | = Guard::Ego
Guard::Ego is the alter ego of Guard and will reload Guard when necessary.
== Warning: This functionality is now a feature in guard itself. This gem will not be maintained anymore.
== Install
Please be sure to have {guard}[http://github.com/guard/guard] installed before continue.
Install the gem:
... |
Add install and usage to readme | = toothbrush
Useful stuff for testing with Capybara.
== Contributing to toothbrush
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
* Fork the project.... | = toothbrush
Useful stuff for testing with Capybara.
== Install
Add to your gemfile:
gem 'toothbrush', group: :test
Add the file spec/support/toothbrush.rb with this content:
RSpec.configure do |config|
config.include Toothbrush::Helpers
end
== Usage
See the specs
== Contributing to toothbrus... |
Remove fluff from input field to make it more readable | = jquery-placeholder-plugin
Placeholder plugin for jquery using HTML5 data attributes
== Following versions of jQuery are supported:
* 1.4
* 1.4.1
* 1.4.2
* 1.4.3
== Installation
Download jQuery from http://docs.jquery.com/Downloading_jQuery. Then download src/jquery-placeholder.js
== Usage
1. Have a text field ... | = jquery-placeholder-plugin
Placeholder plugin for jquery using HTML5 data attributes
== Following versions of jQuery are supported:
* 1.4
* 1.4.1
* 1.4.2
* 1.4.3
== Installation
Download jQuery from http://docs.jquery.com/Downloading_jQuery. Then download src/jquery-placeholder.js
== Usage
1. Have a text field ... |
Add simple example to doc | = Ruby Zabbix Api Module.
Simple and lightweight ruby module for work with zabbix api version 1.8.2
* Zabbix Project Homepage -> http://zabbix.com/
* Zabbix Api Draft docs -> http://www.zabbix.com/documentation/1.8/api
== Dependencies
* net/http
* net/https
* json
| = Ruby Zabbix Api Module.
Simple and lightweight ruby module for work with zabbix api version 1.8.2
You can:
* Create host/template/application/items/triggers and screens;
* Get info about all zabbix essences;
== Get Start.
* Get hostid from zabbix api:
zbx = Zabbix::ZabbixApi.new('https://zabbix.example.com',... |
Add a quick example and description of the mapper | = rack-mlog
rack-mlog is a rack middleware to provide statistics and request logging via a MongoDB Database.
Example config.ru
require 'rack/mongolog'
use Rack::MongoLog
run MyApp.new
This will work on Heroku with MongoHQ.
== mlog Configuration
* :uri - This is the URI of the MongoDB, such as: `mongodb:/... | = rack-mlog
rack-mlog is a rack middleware to provide statistics and request logging via a MongoDB Database.
Example config.ru
require 'rack/mongolog'
use Rack::MongoLog
run MyApp.new
This will work on Heroku with MongoHQ.
== mlog Configuration
* :uri - This is the URI of the MongoDB, such as: `mongodb:/... |
Update Travis build status badge | = paypal-express
Handle PayPal Express Checkout.
Both Instance Payment and Recurring Payment are supported.
Express Checkout for Digital Goods is also supported.
{<img src="https://secure.travis-ci.org/nov/paypal-express.png" />}[http://travis-ci.org/nov/paypal-express]
== Installation
gem install paypal-express
... | = paypal-express
Handle PayPal Express Checkout.
Both Instance Payment and Recurring Payment are supported.
Express Checkout for Digital Goods is also supported.
{<img src="https://travis-ci.org/ianfleeton/paypal-express.svg" />}[https://travis-ci.org/ianfleeton/paypal-express]
== Installation
gem install paypal-... |
Correct image link - again" | === Welcome to My Company @ Work -- a simple internal twitter-like clone
This is a twitter-like clone for use with small work teams. Each user has the option to change their status or add an accomplishment. The main window pane contains a recent list of statuses and accomplishments. And the sidebar contains the most r... | === Welcome to My Company @ Work -- a simple internal twitter-like clone
This is a twitter-like clone for use with small work teams. Each user has the option to change their status or add an accomplishment. The main window pane contains a recent list of statuses and accomplishments. And the sidebar contains the most r... |
Add link to contributors page on Github. | = syslogger
A drop-in replacement for the standard Logger Ruby library, that logs to the
syslog instead of a log file. Contrary to the SyslogLogger library, you can
specify the facility and the syslog options.
== Installation
$ gem install syslogger
== Usage
require 'syslogger'
# Will send all messages to... | = syslogger
A drop-in replacement for the standard Logger Ruby library, that logs to the
syslog instead of a log file. Contrary to the SyslogLogger library, you can
specify the facility and the syslog options.
== Installation
$ gem install syslogger
== Usage
require 'syslogger'
# Will send all messages to... |
Correct repo name in the read me | == README
This README would normally document whatever steps are necessary to get the
application up and running.
Things you may want to cover:
* Ruby version
* System dependencies
* Configuration
* Database creation
* Database initialization
* How to run the test suite
* Services (job queues, cache servers, s... | == Three Keepers
This README would normally document whatever steps are necessary to get the
application up and running.
Things you may want to cover:
* Ruby version
* System dependencies
* Configuration
* Database creation
* Database initialization
* How to run the test suite
* Services (job queues, cache ser... |
Add an example of change_column and a note that it's kind of retarded. | = dm-migrations
DataMapper plugin for writing and specing migrations.
== Example
require 'dm-migrations/migration_runner'
DataMapper.setup(:default, "sqlite3::memory")
DataMapper::Logger.new(STDOUT, :debug)
DataMapper.logger.debug( "Starting Migration" )
migration 1, :create_people_table do
up do
... | = dm-migrations
DataMapper plugin for writing and specing migrations.
== Example
require 'dm-migrations/migration_runner'
DataMapper.setup(:default, "sqlite3::memory")
DataMapper::Logger.new(STDOUT, :debug)
DataMapper.logger.debug( "Starting Migration" )
migration 1, :create_people_table do
up do
... |
Remove the TODO that was considered not a good option | = rubygems-compile
A post-install hook for `macgem` to automatically compile gems when you install them.
All you need to do is:
gem install rubygems-compile
And then you're off to the races! When you install gems you should get a bunch of output about files being compiled.
== TODO
Right now, all you need to ... | = rubygems-compile
A post-install hook for `macgem` to automatically compile gems when you install them.
All you need to do is:
gem install rubygems-compile
And then you're off to the races! When you install gems you should get a bunch of output about files being compiled.
== TODO
Right now, all you need to ... |
Add description and usage example | = nis-ffi
Description goes here.
== Contributing to nis-ffi
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
* Fork the project
* Start a feature/bugfix... | = nis-ffi
NIS (YP) library using libc's libnsl through ruby ffi.
== Usage
>> require 'nis-ffi'
>> NIS.yp_match("nis.example.org", "passwd.byname", "username")
=> "username:42pwdhashBEEF:1000:1111:Full Name:/home/username:/bin/zsh"
== Contributing to nis-ffi
* Check out the latest master to make sure the fea... |
Add documentation to the TODO list | = JML
JML grew out of the need to rapidly set up processors that consumed messages from one
channel and produced messages on another channel. Typically the processor may apply some
form of transformation or validation on the message as it is transmitted to the destination.
An example scenario is where one application... | = JML
JML grew out of the need to rapidly set up processors that consumed messages from one
channel and produced messages on another channel. Typically the processor may apply some
form of transformation or validation on the message as it is transmitted to the destination.
An example scenario is where one application... |
Improve the top level description | = rptman
This is a command line tool and suite of rake tasks for uploading and
manipulating SSRS reports. The tool can generate project files for
the "SQL Server Business Intelligence Development Studio" as well as
uploading the report files directly to the server
== Installation
The extension is packaged as a jrub... | = rptman
This is a command line tool and suite of rake tasks for uploading SSRS
reports to a server. The tool can also generate project files for
the "SQL Server Business Intelligence Development Studio".
== Installation
The extension is packaged as a jruby gem named "rptman", consult the ruby
gems installation ste... |
Add Travis build status and PHP requirements | = Installation
Obtain the latest version of the Stripe PHP bindings with:
git clone https://github.com/stripe/stripe-php
To get started, add the following to your PHP script:
require_once("/path/to/stripe-php/lib/Stripe.php");
Simple usage looks like:
Stripe::setApiKey('d8e8fca2dc0f896fd7cb4cb0031ba24... | = Stripe PHP bindings {<img src="https://travis-ci.org/stripe/stripe-php.svg?branch=master" alt="Build Status" />}[https://travis-ci.org/stripe/stripe-php]
You can sign up for a Stripe account at https://stripe.com.
== Requirements
PHP 5.2 and later.
== Installation
Obtain the latest version of the Stripe PHP bind... |
Fix changelog (was boilerplate copied from Handler gem). | = Changelog
Per-release changes to Handler.
== 0.8.0 (2009 Oct 12)
First release.
| = Changelog
Per-release changes to GoogleCustomSearch.
== 0.3.0 (2009 Oct 14)
First release.
|
Add instructions for automated installation | = jquery-ujs
Unobtrusive jQuery with Rails 3
== Installation
jQuery 1.4, 1.4.1 and 1.4.2 can be used. However because of http://jsbin.com/uboxu3/7/ issue it is
recommended to use jQuery 1.4.1.
=== Step 1
Download jQuery from http://docs.jquery.com/Downloading_jQuery and put the file in public/javascripts - for exa... | = jquery-ujs
Unobtrusive jQuery with Rails 3
== Automated Installation
=== Step 1
Add this line to your Gemfile:
gem 'jquery-rails'
=== Step 2
Run this command:
$ rails generate jquery:install # --ui if you want jQuery UI
=== Step 3
There is no step three.
== Manual installation
jQuery 1.4, 1.4.1 and 1... |
Change install location to gemcutter. | = rat
Ruby interface to Unix "at" command.
== Installation
$ gem sources -a http://gems.github.com # you only need to run this once
$ sudo gem install koops-rat
== Usage
$ require 'rat'
$ job = Rat.add('touch at-at', Time.now + 30)
$ # => <integer id>
$ # Thirty seconds later, the touch command runs.
... | = rat
Ruby interface to Unix "at" command.
== Installation
$ gem sources -a http://gemcutter.org
$ sudo gem install rat
== Usage
$ require 'rat'
$ job = Rat.add('touch at-at', Time.now + 30)
$ # => <integer id>
$ # Thirty seconds later, the touch command runs.
$ Rat.list
$ # => [{:job => <integer i... |
Update link to newly cloned wiki | = paypal-express
Handle PayPal Express Checkout.
Both Instance Payment and Recurring Payment are supported.
Express Checkout for Digital Goods is also supported.
{<img src="https://travis-ci.org/ianfleeton/paypal-express.svg" />}[https://travis-ci.org/ianfleeton/paypal-express]
== Why this fork?
The original gem i... | = paypal-express
Handle PayPal Express Checkout.
Both Instance Payment and Recurring Payment are supported.
Express Checkout for Digital Goods is also supported.
{<img src="https://travis-ci.org/ianfleeton/paypal-express.svg" />}[https://travis-ci.org/ianfleeton/paypal-express]
== Why this fork?
The original gem i... |
Fix typo: ...for instance... rather than ...or instance... | = inline_forms
Ever tired of setting up forms to manage your data? Inline Forms aims at quick and easy setup of models, migrations and controllers and providing a user-friendly interface.
= Usage
Look in the generator files for a hint about usage. In short:
rails g inline_forms Person first_name:string last_name:st... | = inline_forms
Ever tired of setting up forms to manage your data? Inline Forms aims at quick and easy setup of models, migrations and controllers and providing a user-friendly interface.
= Usage
Look in the generator files for a hint about usage. In short:
rails g inline_forms Person first_name:string last_name:st... |
Change spec readme for running individual specs | = CanCan Specs
== Running the specs
To run the specs first run the +bundle+ command to install the necessary gems and the +rake+ command to run the specs.
bundle
Then run the appraisal command to install all the necessary test sets:
appraisal install
You can then run all test sets:
appraisal rake
Or indiv... | = CanCan Specs
== Running the specs
To run the specs first run the +bundle+ command to install the necessary gems and the +rake+ command to run the specs.
bundle
Then run the appraisal command to install all the necessary test sets:
appraisal install
You can then run all test sets:
appraisal rake
Or indiv... |
Add link to author's github account. | == twitter-text-objc
Objective-C port of the twitter-text handling libraries.
This library supports OS X 10.7+ and iOS 4+, both ARC and non-ARC environments.
== Set up Xcode
Make sure Xcode 4.3+ is already installed. Install the Command Line Tools in Xcode.
Preferences -> Downloads -> Command Line Tools
Run the... | == twitter-text-objc
Objective-C port of the twitter-text handling libraries.
This library supports OS X 10.7+ and iOS 4+, both ARC and non-ARC environments.
== Set up Xcode
Make sure Xcode 4.3+ is already installed. Install the Command Line Tools in Xcode.
Preferences -> Downloads -> Command Line Tools
Run the... |
Add contributers / thanks to readme | == Big Gollum
{<img src="https://badges.gitter.im/Join%20Chat.svg" alt="Join the chat at https://gitter.im/oponder/big-gollum">}[https://gitter.im/oponder/big-gollum?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge]
Create, destroy, and manage permissions to multiple gollum wiki's
Right now ... | == Big Gollum
{<img src="https://badges.gitter.im/Join%20Chat.svg" alt="Join the chat at https://gitter.im/oponder/big-gollum">}[https://gitter.im/oponder/big-gollum?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge]
Create, destroy, and manage permissions to multiple gollum wiki's
Right now ... |
Update readme with warning not safe for production | = amee-abstraction-layer-gem
Description goes here.
== Note on Patches/Pull Requests
* Fork the project.
* Make your feature addition or bug fix.
* Add tests for it. This is important so I don't break it in a
future version unintentionally.
* Commit, do not mess with rakefile, version, or history.
(if you want ... | = Rails Abstraction Layer for AMEE
This is an rails abstraction layer for projects using the AMEE gem. It is currently work in progress and not suitable for production use
== Note on Patches/Pull Requests
* Fork the project.
* Make your feature addition or bug fix.
* Add tests for it. This is important so I don't ... |
Expand Prerequisites section of documentation. | = Local CDN
Local CDN simplifies the inclusion of external stylesheets and JavaScript from Yahoo's and Google's content delivery networks (CDNs), and uses local alternatives in development mode so your site loads faster and looks right even when you don't have an Internet connection (eg, on an airplane).
Please see ... | = Local CDN
Local CDN simplifies the inclusion of external stylesheets and JavaScript from Yahoo's and Google's content delivery networks (CDNs), and uses local alternatives in development mode so your site loads faster and looks right even when you don't have an Internet connection (eg, on an airplane).
Please see ... |
Use checkboxes for todo list | = MongoidForums
TODO:
[ ] Sticky
[ ] Archiving
[ ] Subscribing to topics + getting alerts
[ ] Moderating topics (removing, editing, hiding)
[ ] Category/Forum/Topic/Post visibility level
| = MongoidForums
TODO:
- [ ] Permissions system
- [ ] Sticky
- [ ] Archiving
- [ ] Subscribing to topics + getting alerts
- [ ] Moderating topics (removing, editing, hiding)
- [ ] Category/Forum/Topic/Post visibility level
|
Add Ary Manzana to the list of contributors. | = LLVM
Author:: Jeremy Voorhis
Contributors:: Evan Phoenix, David Holroyd, Takanori Ishikawa, Ronaldo M. Ferraz, Mac Malone
Copyright:: Copyright (c) 2010-2011 Jeremy Voorhis
License:: BSD 3-clause (see LICENSE)
This package contains Ruby bindings to the LLVM api, enabling users to
make use of LLVM's optimization pas... | = LLVM
Author:: Jeremy Voorhis
Contributors:: Evan Phoenix, David Holroyd, Takanori Ishikawa, Ronaldo M. Ferraz, Mac Malone, Ary Manzana
Copyright:: Copyright (c) 2010-2011 Jeremy Voorhis
License:: BSD 3-clause (see LICENSE)
This package contains Ruby bindings to the LLVM api, enabling users to
make use of LLVM's opt... |
Add a link to the YARD docs | = Minx
Massive and pervasive concurrency with Minx!
Minx uses the powerful concurrency primitives outlined by Tony Hoare in his
famous book "Communicating Sequential Processes".
== Usage
Minx lets you easily create concurrent programs using the notion of *processes*
and *channels*.
# Very contrived example...
... | = Minx
Massive and pervasive concurrency with Minx!
Minx uses the powerful concurrency primitives outlined by Tony Hoare in his
famous book "Communicating Sequential Processes".
== Usage
Minx lets you easily create concurrent programs using the notion of *processes*
and *channels*.
# Very contrived example...
... |
Fix version in the hadoop read me | = DESCRIPTION:
Installs hadoop 1.0.0
= REQUIREMENTS:
* java
= ATTRIBUTES:
= USAGE:
| = DESCRIPTION:
Installs hadoop 1.0.3
= REQUIREMENTS:
* java
= ATTRIBUTES:
= USAGE:
|
Add License, CI and testing information | == Notekat
{<img src="https://codeclimate.com/github/archdragon/notekat2/badges/gpa.svg" />}[https://codeclimate.com/github/archdragon/notekat2]
Simple online notepad with edit history and flexible tag system. | # Notekat
{<img src="https://codeclimate.com/github/archdragon/notekat2/badges/gpa.svg" />}[https://codeclimate.com/github/archdragon/notekat2]
Simple online notepad with edit history and flexible tag system.
## Continuus Integration
This project uses continuus integration ([Capistrano gem](https://github.com/capis... |
Add TODO for migrating to a real testing package | == Flash Patch for Rails
This library monkey patches Rails sessions so that flash messages can
inter-operate between Rails 3.0 apps and Rails 3.1+ apps.
Current, only support for accessing flash messages in Rails 3.1+ apps
that were created in Rails 3.0 apps is provided
WARNING: This library currently makes fully us... | == Flash Patch for Rails
This library monkey patches Rails sessions so that flash messages can
inter-operate between Rails 3.0 apps and Rails 3.1+ apps.
Current, only support for accessing flash messages in Rails 3.1+ apps
that were created in Rails 3.0 apps is provided
WARNING: This library currently makes fully us... |
Add in some basic documentation | = getopt4j
The "getopt4j" is designed to parse the command line options in the same manner as the C getopt() function in glibc (the GNU C runtime library). It attempts to do this in a simpler, more Java-centric manner than the original product.
The best way to understand how the library works is to dive into the exam... | |
Fix "TypeError: Data must not be unicode" problem | # This file is part of WebBox.
#
# Copyright 2012 Daniel Alexander Smith
# Copyright 2012 University of Southampton
#
# WebBox is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3... | # This file is part of WebBox.
#
# Copyright 2012 Daniel Alexander Smith
# Copyright 2012 University of Southampton
#
# WebBox is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3... |
Add alpine to php tag list | ====================== ========================== ===============
Tag Distribution name PHP Version
====================== ========================== ===============
``ubuntu-12.04`` precise PHP 5.3
``ubuntu-14.04`` trusty (LTS) PHP 5.5
``ubuntu-1... | ====================== ========================== ===============
Tag Distribution name PHP Version
====================== ========================== ===============
``alpine`` *link to alpine-php7* PHP 7.x
``alpine-php7`` PHP 7.x
``alpine-p... |
Rename our DataStream docs to Producer docs | ============
Data Streams
============
Moksha offers a :class:`DataStream` API that allows you to easily provide
data to your message brokers. DataStreams are loaded and run by the :class:`MokshaHub`, isolated from the WSGI application.
The DataStreams contain a connection to the MokshaHub via the `self.hub`
object.... | =========
Producers
=========
Moksha offers a :class:`Producer` API that allows you to easily provide data to
your message brokers. Producers are loaded and run by the :class:`MokshaHub`,
isolated from the WSGI application.
The Producers contain a connection to the MokshaHub via the `self.hub` object.
It also provid... |
Add note for do not forgetting to install django-tinymce | ======================
zinnia-wysiwyg-tinymce
======================
Zinnia-wysiwyg-tinymce is a package allowing you to edit your entries
with `TinyMCE`_.
Installation
============
* Install the package on your system: ::
$ pip install zinnia-wysiwyg-tinymce
`django-tinymce`_ will also be installed as a depen... | ======================
zinnia-wysiwyg-tinymce
======================
Zinnia-wysiwyg-tinymce is a package allowing you to edit your entries
with `TinyMCE`_.
Installation
============
* Install the package on your system: ::
$ pip install zinnia-wysiwyg-tinymce
`django-tinymce`_ will also be installed as a depen... |
Change Refernece -> User Guide | .. vim: set fileencoding=utf-8 :
.. Andre Anjos <andre.anjos@idiap.ch>
.. Mon 4 Nov 20:58:04 2013 CET
=====================
Bob's Core Routines
=====================
This module contains base functionality from Bob bound to Python, available in
the C++ counter-part ``bob::core``. It includes basic conversion routin... | .. vim: set fileencoding=utf-8 :
.. Andre Anjos <andre.anjos@idiap.ch>
.. Mon 4 Nov 20:58:04 2013 CET
=====================
Bob's Core Routines
=====================
This module contains base functionality from Bob bound to Python, available in
the C++ counter-part ``bob::core``. It includes basic conversion routin... |
Update the bugs link to storyboard | If you would like to contribute to the development of OpenStack,
you must follow the steps in this page:
http://docs.openstack.org/infra/manual/developers.html
Once those steps have been completed, changes to OpenStack
should be submitted for review via the Gerrit tool, following
the workflow documented at:
ht... | If you would like to contribute to the development of OpenStack,
you must follow the steps in this page:
http://docs.openstack.org/infra/manual/developers.html
Once those steps have been completed, changes to OpenStack
should be submitted for review via the Gerrit tool, following
the workflow documented at:
ht... |
Add basic notes on static file hosting | User upload directory needs to exist on the node for deployment to be successful.
Directory is currently owned as root on the specific node.
TODO: Alter permissions and make it widely accessible.
| User media uploads are stored on Google Cloud Platform in a storage bucket.
Storing user uploads requires high reliably, and also management of access to specific items.
Self hosted exiting solutions with matching features were either overly complex or resource intensive to run.
Self hosting a network drive across all ... |
Add a few more LaTeX macros for use in equations | .. rst-class:: hidden
.. math::
\newcommand{\i}{\mathrm{i}}
\newcommand{\e}[1]{\operatorname{e}^{#1}}
\newcommand{\wc}{\frac{\omega}{c}}
\newcommand{\hankel}[3]{\mathop{{}h_{#2}^{(#1)}}\!\left(#3\right)}
\newcommand{\Hankel}[3]{\mathop{{}H_{#2}^{(#1)}}\!\left(#3\right)}
| .. rst-class:: hidden
.. math::
\newcommand{\dirac}[1]{\operatorname{\delta}\left(#1\right)}
\newcommand{\e}[1]{\operatorname{e}^{#1}}
\newcommand{\Hankel}[3]{\mathop{{}H_{#2}^{(#1)}}\!\left(#3\right)}
\newcommand{\hankel}[3]{\mathop{{}h_{#2}^{(#1)}}\!\left(#3\right)}
\newcommand{\i}{\mathrm{i}}
... |
Add `kilbasar` to contributors list | =======
Credits
=======
Development Lead
----------------
* Michael Warkentin <mwarkentin@gmail.com> - https://github.com/mwarkentin - `@mwarkentin <https://twitter.com/mwarkentin>`_
Contributors
------------
* Keryn Knight - https://github.com/kezabelle
* blag - https://github.com/blag
| =======
Credits
=======
Development Lead
----------------
* Michael Warkentin <mwarkentin@gmail.com> - https://github.com/mwarkentin - `@mwarkentin <https://twitter.com/mwarkentin>`_
Contributors
------------
* Keryn Knight - https://github.com/kezabelle
* blag - https://github.com/blag
* kilbasar - https://github.... |
Update copyright year (and typo) | Copyright (c) 2011-14, photutils developers
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the fol... | Copyright (c) 2011-16, Photutils developers.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the fo... |
Update to the new Travis. | **************************************
Project Based Parts Management Service
**************************************
.. image:: http://img.shields.io/pypi/l/django-dcolumns.svg
:target: https://pypi.python.org/pypi/django-dcolumns
:alt: License
.. image:: https://travis-ci.org/cnobile2012/inventory.svg?branch=d... | **************************************
Project Based Parts Management Service
**************************************
.. image:: http://img.shields.io/pypi/l/django-dcolumns.svg
:target: https://pypi.python.org/pypi/django-dcolumns
:alt: License
.. image:: https://travis-ci.com/cnobile2012/inventory.svg?branch=d... |
Add release version to release notes | =============================
Victoria Series Release Notes
=============================
.. release-notes::
:branch: stable/victoria
| ===============================================
Victoria Series (10.2.0 - 10.4.x) Release Notes
===============================================
.. release-notes::
:branch: stable/victoria
|
Add a use case for publishing | .. _usage_scenarios:
Usage Scenarios
===============
The following scenarios have been adapted from the Whole Tale 'user stories' defined for system development.
New user: Exploring Whole Tale
------------------------------
A new user learns about the Whole Tale from an article or presentation. They come to https://... | .. _usage_scenarios:
Usage Scenarios
===============
The following scenarios have been adapted from the Whole Tale 'user stories' defined for system development.
New user: Exploring Whole Tale
------------------------------
A new user learns about the Whole Tale from an article or presentation. They come to https://... |
Update author information in `About` section of docs | About
=====
Author
------
**pronto** is developped and maintained by:
+-----------------------------------+----------------------------------------------+
| | | **Martin Larralde** |
| .. image:: _static/ens.png | | Ecole Normale Supérieure de Cachan, F... | About
=====
Authors
-------
**pronto** is developped and maintained by:
+-----------------------------------+----------------------------------------------+
| | | **Martin Larralde** |
| | | PhD Candidate, ... |
Update devstack doc to add neutron information | The contrib/devstack/ directory contains the files necessary to integrate Solum with devstack.
To install::
$ DEVSTACK_DIR=.../path/to/devstack
$ cp lib/solum ${DEVSTACK_DIR}/lib
$ cp extras.d/70-solum.sh ${DEVSTACK_DIR}/extras.d
Add the following to your local.conf::
enable_service solum
enable... | The contrib/devstack/ directory contains the files necessary to integrate Solum with devstack.
To install::
$ DEVSTACK_DIR=.../path/to/devstack
$ cp lib/solum ${DEVSTACK_DIR}/lib
$ cp extras.d/70-solum.sh ${DEVSTACK_DIR}/extras.d
Add the following to your local.conf::
disable_service n-net
enabl... |
Fix incorrect password in docs | .. _development:
Development
===========
You can safely install from master, it is almost always in a usable
and stable state.
Virtual environment
~~~~~~~~~~~~~~~~~~~
::
$ python3 -m venv venv-wger
$ source venv-wger/bin/activate
Get the code
~~~~~~~~~~~~
::
$ git clone https://github.com/wger-project/wge... | .. _development:
Development
===========
You can safely install from master, it is almost always in a usable
and stable state.
Virtual environment
~~~~~~~~~~~~~~~~~~~
::
$ python3 -m venv venv-wger
$ source venv-wger/bin/activate
Get the code
~~~~~~~~~~~~
::
$ git clone https://github.com/wger-project/wge... |
Use the domain godoc.org for API docs | seed -- Easily generate semi-strong random number seeds in Go
=============================================================
This is a trivial helper to easily initialize PRNGs with some entropy,
in the Go programming language.
It's MIT licensed, but probably too trivial to have any protection any
way. Go forth and us... | seed -- Easily generate semi-strong random number seeds in Go
=============================================================
This is a trivial helper to easily initialize PRNGs with some entropy,
in the Go programming language.
It's MIT licensed, but probably too trivial to have any protection any
way. Go forth and us... |
Make required software a bit more obvious. | Development
===========
Local Development
-----------------
This section assumes Vagrant_ and Virtualbox_ are installed.
.. _Vagrant: https://www.vagrantup.com/
.. _Virtualbox: https://www.virtualbox.org/
Use Vagrant and Virtualbox to create a local environment in a virtual machine
(VM) that matches production.::
... | Development
===========
Required Software
-----------------
Ansible_ is required to deploy conference site software to servers. For
local development, you will also need Vagrant_ and Virtualbox_ to manage the
virtual machine containing your development environment.
.. _Ansible: https://www.ansible.com/
.. _Vagrant: ... |
Add link to PSF photometry notebook | PSF Photometry
==============
.. warning::
The PSF photometry API is currently *experimental* and may change
in the future. For example, the functions currently accept
`~numpy.ndarray` objects for the ``data`` parameters, but they may
be changed to accept `astropy.nddata` objects.
Reference/API
----... | PSF Photometry
==============
.. warning::
The PSF photometry API is currently *experimental* and may change
in the future. For example, the functions currently accept
`~numpy.ndarray` objects for the ``data`` parameters, but they may
be changed to accept `astropy.nddata` objects.
For a demonstration... |
Update docs with sitemap sort order change | Sitemaps
========
Sitemaps_ allows us to inform search engines about URLs that are available for crawling
and communicate them additional information about each URL of the project:
* when it was last updated,
* how often it changes,
* how important it is in relation to other URLs in the site, and
* what translations ... | Sitemaps
========
Sitemaps_ allows us to inform search engines about URLs that are available for crawling
and communicate them additional information about each URL of the project:
* when it was last updated,
* how often it changes,
* how important it is in relation to other URLs in the site, and
* what translations ... |
Add flavor adjustment doc section | Configure and run Solum
=======================
Configuration Reference
-----------------------
Administrator Guide
-------------------
.. toctree::
:maxdepth: 2
../man/index
High Availability Guide
-----------------------
Operations Guide
----------------
Security Guide
--------------
| Configure and run Solum
=======================
Configuration Reference
-----------------------
To alter the default compute flavor edit /etc/solum/templates/*.yaml
::
flavor:
type: string
description: Flavor to use for servers
default: m1.tiny
Edit the default section to the desired value.
Administ... |
Document the SHORTENER_GENERATOR_PRESERVE_NAME config option | Installing Thumbor Community Shortener
======================================
1. Install thumbor (see `Thumbor repository`_)
2. Install `Thumbor Community Core`_
3. Clone this repository.
4. If you've set a virtualenv up for thumbor, activate it.
5. Install the Thumbor Community Shortener:
::
$ cd thumbor-communit... | Installing Thumbor Community Shortener
======================================
1. Install thumbor (see `Thumbor repository`_)
2. Install `Thumbor Community Core`_
3. Clone this repository.
4. If you've set a virtualenv up for thumbor, activate it.
5. Install the Thumbor Community Shortener:
::
$ cd thumbor-communit... |
Fix version from merging liberty into master | Install the F5 OpenStack Agent
------------------------------
.. note::
- You must have both ``pip`` and ``git`` installed on your machine in order to use these commands.
- It may be necessary to use ``sudo``, depending on your environment.
.. topic:: To install the ``f5-openstack-agent`` package from the |o... | Install the F5 OpenStack Agent
------------------------------
.. note::
- You must have both ``pip`` and ``git`` installed on your machine in order to use these commands.
- It may be necessary to use ``sudo``, depending on your environment.
.. topic:: To install the ``f5-openstack-agent`` package from the |o... |
Add a link to Dectate docs. | Dectate: a configuration engine for Python frameworks
=======================================================
Dectate is a powerful configuration engine for Python frameworks.
It is used by Morepath_.
.. _Morepath: http://morepath.readthedocs.org
| Dectate: a configuration engine for Python frameworks
=======================================================
Dectate is a powerful configuration engine for Python frameworks.
`Read the docs`_
.. _`Read the docs`: http://dectate.readthedocs.org
It is used by Morepath_.
.. _Morepath: http://morepath.readthedocs.org... |
Add badge for Travis CI | Python wrapper for BrowserStack features. | BrowserStacker
==============
Python wrapper for BrowserStack features.
|Build Status|
.. |Build Status| image:: https://travis-ci.org/Stranger6667/browserstacker.svg?branch=master
:target: https://travis-ci.org/Stranger6667/browserstacker |
Set to my this repo's Travis CI's badge | .. image:: https://api.travis-ci.org/danfairs/django-lazysignup.png
Introduction
============
``django-lazysignup`` is a package designed to allow users to interact with a
site as if they were authenticated users, but without signing up. At any time,
they can convert their temporary user account to a real user accoun... | .. image:: https://api.travis-ci.org/LaundroMat/django-lazysignup.png
Introduction
============
``django-lazysignup`` is a package designed to allow users to interact with a
site as if they were authenticated users, but without signing up. At any time,
they can convert their temporary user account to a real user acco... |
Update references to @solidarium organization | correios
========
.. image:: https://img.shields.io/pypi/v/correios.svg
:target: https://pypi.python.org/pypi/correios
:alt: Latest PyPI version
.. image:: https://travis-ci.org/osantana/correios.png
:target: https://travis-ci.org/osantana/correios
:alt: Latest Travis CI build status
.. image:: https:/... | correios
========
.. image:: https://img.shields.io/pypi/v/correios.svg
:target: https://pypi.python.org/pypi/correios
:alt: Latest PyPI version
.. image:: https://travis-ci.org/solidarium/correios.png
:target: https://travis-ci.org/solidarium/correios
:alt: Latest Travis CI build status
.. image:: htt... |
Add note re. django 1.9 | django-call-after-commit
========================
Documentation/homepage: https://django-call-after-commit.readthedocs.org/
| django-call-after-commit
========================
Documentation/homepage: https://django-call-after-commit.readthedocs.org/
Note that this is probably deprecated, etc. after
https://docs.djangoproject.com/en/1.9/releases/1.9/#performing-actions-after-a-transaction-commit
|
Add explanation of ChainerRL and link to quickstart | .. ChainerRL documentation master file, created by
sphinx-quickstart on Tue Mar 14 22:25:44 2017.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
================================================
ChainerRL, a deep reinforcement learning library
==... | .. ChainerRL documentation master file, created by
sphinx-quickstart on Tue Mar 14 22:25:44 2017.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
================================================
ChainerRL, a deep reinforcement learning library
==... |
Update i18n translation for neutron.agents log msg's | Neutron Style Commandments
=======================
- Step 1: Read the OpenStack Style Commandments
http://docs.openstack.org/developer/hacking/
- Step 2: Read on
Neutron Specific Commandments
--------------------------
- [N320] Validate that LOG messages, except debug ones, have translations
- [N321] Validate that... | Neutron Style Commandments
=======================
- Step 1: Read the OpenStack Style Commandments
http://docs.openstack.org/developer/hacking/
- Step 2: Read on
Neutron Specific Commandments
--------------------------
- [N319] Validate that debug level logs are not translated
- [N320] Validate that LOG messages, ... |
Update history for v0.2 release | .. :changelog:
History
-------
0.2 (2013-05-28)
++++++++++++++++
- Improve packaging.
0.1 (2013-05-27)
++++++++++++++++
- First proof-of-concept version. | .. :changelog:
History
-------
0.2 (2013-07-16)
++++++++++++++++
- Improve packaging.
- More conformant, passes all relevant tests in the Unicode TR46 test suite.
0.1 (2013-05-27)
++++++++++++++++
- First proof-of-concept version.
|
Update supported Python version in documentation | 安装与升级
==========
目前 wechatpy 支持的 Python 环境有 2.6, 2.7, 3.3, 3.4, 3.5, pypy 和 pypy3。
从 0.8.0 版本开始,wechatpy 消息加解密同时兼容 cryptography 和 PyCrypto, 优先使用 cryptography 库。
因而不再强制依赖 PyCrypto 库。可先自行安装 cryptography 或者 PyCrypto 库::
# 安装 cryptography
pip install cryptography>=0.8.2
# 或者安装 PyCrypto
pip install pycryp... | 安装与升级
==========
目前 wechatpy 支持的 Python 环境有 2.6, 2.7, 3.3, 3.4, 3.5, 3.6 和 pypy。
从 0.8.0 版本开始,wechatpy 消息加解密同时兼容 cryptography 和 PyCrypto, 优先使用 cryptography 库。
因而不再强制依赖 PyCrypto 库。可先自行安装 cryptography 或者 PyCrypto 库::
# 安装 cryptography
pip install cryptography>=0.8.2
# 或者安装 PyCrypto
pip install pycrypto... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.