Lyndsy Simon

Results 11 issues of Lyndsy Simon

I've had some free time in the past few days, and have gotten far enough along in throwing together a Python SDK for Pipedream that I thought it might be...

The following `init.sql` fails for MySQL: ```sql create table foo (id int not null auto_increment primary key); --;; create table baz (id int not null auto_increment primary key); ``` Error...

enhancement
help wanted

The current implementation in the `v3.1.x` branch provides support for PostgreSQL columns of type `text[]`. While exploring the codebase I discovered that there is no support of array columns of...

enhancement

## Current Behavior ```javascript api.getUser('LyndsySimon') ``` ## Desired Behavior ```javascript api.getUser('LyndsySimon') // OR api.getUser(60129) ```

enhancement

## Existing Behavior: ```javascript var api = new Gab({ authToken: '' }) ``` ## Desired Behavior ```javascript var api = new Gab({ username: 'LyndsySimon', password: 'NotR3411yMyP4ssw0rd' }) ```

enhancement

When instantiating a new `Gab` object, passing the option `async: false` should allow the library to function without returning promises. ```javascript var Gab = require('gab.ai').Gab; var api_client = new Gab({...

enhancement

Define how transactions will be built and signed.

documentation
★★☆

A `Wallet` object will basically be a collection of keys. Some attributes of the component keys will be exposed in aggregate (simple `Wallet.balance`, for instance, will be the sum of...

documentation
★★☆

Write documentation for the `Key` object, or whatever it will turn into. Overall concept: The `Key` object will represent a single Bitcoin address. This is a bit fuzzy, as at...

documentation
★★☆

`Key`s should have a property `script_address`, which represents the P2SH address.

enhancement