This is a list of URLs to PostgreSQL EXTENSION repos, listed in alphabetical order of parent repo, with active forks listed under each parent.
⭐️ >= 10 stars
⭐️⭐️ >= 100 stars
⭐️⭐️⭐️ >= 1000 stars
Numbers of stars might not be up-to-date.
Based on examination of the source code for e2sEdit and Oe2sSLE.
The file is just a concatenation of WAVE files with a header to indicate where each file begins. Additional metadata such as sample name and loop point are stored in each WAVE file as a RIFF chunk with type "korg", which is conventionally at the end of the file.
Unless otherwise specified, all integers are little-endian unsigned.
package main | |
import ( | |
"github.com/elazarl/goproxy" | |
"github.com/elazarl/goproxy/ext/auth" | |
"log" | |
"net/http" | |
"flag" | |
) |
import com.lambdaworks.redis.RedisAsyncConnection; | |
import com.lambdaworks.redis.RedisClient; | |
import com.lambdaworks.redis.SetArgs; | |
import org.slf4j.Logger; | |
import org.springframework.beans.factory.annotation.Value; | |
import org.springframework.boot.CommandLineRunner; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
import redis.clients.jedis.Jedis; | |
import redis.clients.jedis.JedisPool; |
This document demonstrates a basic pipeline in Go and talks about a risk in in implementing them. Keep in mind that:
package me.grison.redis.foo; | |
import org.springframework.boot.CommandLineRunner; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.EnableAutoConfiguration; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.context.annotation.ComponentScan; | |
import org.springframework.context.annotation.Configuration; | |
import redis.clients.jedis.Jedis; |
import java.io.IOException; | |
import org.apache.logging.log4j.core.appender.AbstractManager; | |
import org.apache.logging.log4j.core.appender.rolling.DefaultRolloverStrategy; | |
import org.apache.logging.log4j.core.appender.rolling.RollingFileManager; | |
import org.apache.logging.log4j.core.appender.rolling.RolloverDescription; | |
import org.apache.logging.log4j.core.appender.rolling.RolloverDescriptionImpl; | |
import org.apache.logging.log4j.core.appender.rolling.RolloverStrategy; | |
import org.apache.logging.log4j.core.appender.rolling.action.AbstractAction; | |
import org.apache.logging.log4j.core.appender.rolling.action.Action; |
{ | |
// http://eslint.org/docs/rules/ | |
"ecmaFeatures": { | |
"binaryLiterals": false, // enable binary literals | |
"blockBindings": false, // enable let and const (aka block bindings) | |
"defaultParams": false, // enable default function parameters | |
"forOf": false, // enable for-of loops | |
"generators": false, // enable generators | |
"objectLiteralComputedProperties": false, // enable computed object literal property names |
Located in alphabetical order (not prefer)
C
ab
), also designed as a more modern replacement, written in C
golang
)#Notes on how to install a missing module from PostgreSQL | |
#Download and Postgresql (no need to make install because we already have it..): | |
#pre-requisites | |
sudo apt-get install gcc | |
sudo apt-get install libreadline-dev | |
sudo apt-get install zlib1g-dev | |
wget http://ftp.postgresql.org/pub/source/v9.3.0/postgresql-9.3.0.tar.gz |