Skip to content

Instantly share code, notes, and snippets.

View pauliusuza's full-sized avatar
🔥
On fire

Paulius Uza pauliusuza

🔥
On fire
View GitHub Profile
I am attesting that this GitHub handle pauliusuza is linked to the Tezos account tz1Ymzr9jiMCBYpAiYENcvbTXqg6RhXWkC8w for tzprofiles
sig:edsigtcZTm6LABbHVX1Tc39EBs7sfKrdR4eLCqAwdCQiwCfBTnBh1x2AeXeiocXjgjUSiU48PVubTJ6K1VL6eApRXHdwxnTSDTt
This post links my 3Box profile to my Github account! Web3 social profiles by 3Box.
✅ did:3:bafyreia2yimm5tq5xxkw3spjn7blkfwr6wnkdtrq6a7defkglpqxgugxm4 ✅
Create your profile today to start building social connection and trust online at https://3Box.io/
@pauliusuza
pauliusuza / STEEM_SBD_for_STELLAR.md
Last active October 26, 2018 18:19
Kelp v1.1.1 setup for STEEM and SBD on Stellar

Hello!

For those of you interested in providing liquidity to STEEM/SBD market on Stellar Network, you can automate the setup using Kelp bot

To get started:

  1. Build Kelp from source or download a pre-built binary from Github
  2. Download the config files and modify them to your liking
  3. Add your trading account's private key to the c_trader... files
  4. Run the Bot:
const {
Client,
Signature,
cryptoUtils,
} = require('dsteem');
const client = new Client('https://api.steemit.com');
const args = process.argv.slice(2);
@pauliusuza
pauliusuza / zlo_blacklist.txt
Created August 14, 2018 09:46
zlo_blacklist.txt
serg2018
stikshot
seruncik37
sanata1961
nizirofayabo
chirickmsf
cekilesodoyi
bidon123
svjatoslav77
shjiviemio

Keybase proof

I hereby claim:

  • I am pauliusuza on github.
  • I am upheaver (https://keybase.io/upheaver) on keybase.
  • I have a public key ASCrAUji5QDF8F_i5fDLMoEWff-D8NRe_YDqyJsQVWAiGAo

To claim this, I am signing this object:

@pauliusuza
pauliusuza / ArtistList.js
Created March 13, 2017 13:07 — forked from n1ru4l/ArtistList.js
mobx + apollo-client + react
import React from 'react'
import { observer } from 'mobx-react'
function ArtistList({ uiState: { artistData } }) {
const { data } = artistData;
if ( !data || !data.artists || !data.artists.length ) {
return <div>No artists bruh.</div>
}
const { artists } = data
return (
@pauliusuza
pauliusuza / package_info2dot.js
Created May 6, 2016 12:00 — forked from pmuellr/package_info2dot.js
Generate a diagram of package deps for running N|Solid instances, in graphviz dot notation, using the N|Solid agent `package_info` command. For more info on N|Solid, head over to https://nodesource.com/products/nsolid
#!/usr/bin/env node
// Generate a graphviz (graphviz.org) .dot file for the package relationships
// of the currently running N|Solid instances, using the N|Solid 1.3
// package_info command.
'use strict'
var fs = require('fs')
var path = require('path')
with
dau as (
-- This part of the query can be pretty much anything.
-- The only requirement is that it have three columns:
-- dt, user_id, inc_amt
-- Where dt is a date and user_id is some unique identifier for a user.
-- Each dt-user_id pair should be unique in this table.
-- inc_amt represents the amount of value that this user created on dt.
-- The most common case is
-- inc_amt = incremental revenue from the user on dt
var TodoList = React.createClass({
render: function() {
var createItem = function(itemText) {
return <li>{itemText}</li>;
};
return <ul>{this.props.items.map(createItem)}</ul>;
}
});
var TodoApp = React.createClass({
getInitialState: function() {