Skip to content

Instantly share code, notes, and snippets.

@0xgeert
0xgeert / gist:3e84795ed3e0aeb6dde7c03cfb0bce5f
Last active March 1, 2022 11:08
Evmos Initial Liquidity
My initial question around bootstrapping liquidity using funds from the liquidity pool: https://discord.com/channels/809048090249134080/809049009670455338/944685256680804382
I've never written such a proposal but I might be willing to take it on with some help. My general thoughts:
# Advantages for providing initial liquidity
* Aid in price discovery by setting a price floor
* dampen excessive vol
* have 1 or more pools right of the bat with enough liquidity, which will attract liquidity from rektdroppers. Liquidity begets liquidity is a saying for a reason
* at the same time this prevents pools popping up all over the place. This is hazardous for price development, because it fragements liquidity, and thus increases slippages.
* Moreover, an abundance of pools creates confusion by potential buyers. 'Where to go'? Having a couple of 'evmos-backed' pools gives peace of mind
@0xgeert
0xgeert / gist:57689768eceaec43ae0ddd17949d7503
Created January 13, 2018 17:17
x-ray driver extended with proxy
var Request = require('request')
var r = request.defaults({'proxy':'http://localproxy.com'})
function makeDriver(opts) {
if (typeof opts === "function") {
var request = opts
} else {
var request = Request.defaults(opts)
}
@0xgeert
0xgeert / whatsapp_phone_enumerator_floated_div.js
Created May 12, 2017 13:53
PoC WhatsApp enumeration of phonenumbers, profile pics, about texts and online statuses (floated div)
/*
PoC WhatsApp enumeration of phonenumbers, profile pics, about texts and online statuses
Floated div edition
01-05-2017
(c) 2017 - Loran Kloeze - loran@ralon.nl
This script creates a UI on top of the WhatsApp Web interface. It enumerates certain kinds
of information from a range of phonenumbers. It doesn't matter if these numbers are part
of your contact list. At the end a table is displayed containing phonenumbers, profile pics,
about texts and online statuses. The online statuses are being updated every

Advanced Rest Client with OAuth2orize

For this to work you will need to install the Advanced Rest Client for some of these steps. Of course you will need to install OAuth2orize as well.

Run the oauth2orize provider/server example which does server-side OAuth flow:

cd oauth2orize\examples\express2
node app.js
@0xgeert
0xgeert / gist:6173100
Created August 7, 2013 10:59
Docpad Queryengine collection
collections:
pagesInMainMenu: (database) ->
database.findAllLive({pageOrder: {$exists: true}, includenInNavs: {$has: 'main'}}, [pageOrder:1,title:1])