This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.top-header {background-color: #fff;} | |
.top-header .timer-row__progress-bar {background:#D00AAA;} | |
.top-header .timer-row {background: #AAAAAA;} | |
.close-icon {color:#000;} | |
.payment-tabs__slider {background: #D00AAA; } | |
.separatorGem {background: #D00AAA;} | |
.action-button {color: #fff; background-color: #D00AAA;border-color: #D00AAA;} | |
.action-button:hover {background-color: #7faacc;} | |
.action-button:focus, .action-button.focus {color: #fff;background-color: #D00AAA; | |
border-color: #D00AAA;} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export TERM="xterm-256color" | |
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=/Users/sokardys/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#------------------ | |
# Shell Variables | |
#------------------ | |
# Specify VS Code as default editor for the React Native Simulator | |
export REACT_EDITOR=code-insiders | |
# Set VS Code Insiders as default code editor | |
export EDITOR=code-insiders | |
# Android SDK | |
export ANDROID_HOME=~/Library/Android/sdk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.4" | |
networks: | |
web: | |
external: true | |
default: | |
services: | |
rasa-x: | |
restart: always | |
image: "rasa/rasa-x:latest" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.6-slim as builder | |
# if this installation process changes, the enterprise container needs to be | |
# updated as well | |
WORKDIR /build | |
COPY . . | |
RUN python setup.py sdist bdist_wheel | |
RUN find dist -maxdepth 1 -mindepth 1 -name '*.tar.gz' -print0 | xargs -0 -I {} mv {} rasa.tar.gz | |
FROM python:3.6-slim |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
const User = use("App/Models/User"); | |
const Invoice = use("App/Models/Invoice"); | |
const Refill = use("App/Models/Refill"); | |
const lnService = require("ln-service"); | |
const { subscribeToInvoices } = require("ln-service"); | |
const { subscribeToTransactions } = require("ln-service"); | |
const { getChainTransactions } = require("ln-service"); | |
const LndService = use("App/Services/LndService"); | |
const Logger = use("Logger"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
const User = use("App/Models/User"); | |
const Invoice = use("App/Models/Invoice"); | |
const Refill = use("App/Models/Refill"); | |
const lnService = require("ln-service"); | |
const { subscribeToInvoices } = require("ln-service"); | |
const { subscribeToTransactions } = require("ln-service"); | |
const { getChainTransactions } = require("ln-service"); | |
const LndService = use("App/Services/LndService"); | |
const Logger = use("Logger"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import LndService from "./services/LndService"; | |
import paymentsService from "./services/paymentsService"; | |
const { subscribeToInvoices } = require("ln-service"); | |
const lnService = require('ln-service'); | |
class Subscriptions { | |
public initWS = async () => { | |
// Since BTCPay Server closes WS every 90 seconds it must be looped | |
try { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying my Blockstack ID is secured with the address 12TwTCpT9HATMP6AX3C61XKZzmPXZj3A4B https://explorer.blockstack.org/address/12TwTCpT9HATMP6AX3C61XKZzmPXZj3A4B |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CXX(target) Release/obj.target/secp256k1/src/publickey.o | |
In file included from ../src/publickey.cc:7:0: | |
../src/publickey.cc: In function 'Nan::NAN_METHOD_RETURN_TYPE publicKeyCreate(Nan::NAN_METHOD_ARGS_TYPE)': | |
../src/util.h:15:76: warning: 'v8::Maybe<bool> v8::Value::BooleanValue(v8::Local<v8::Context>) const' is deprecated: BooleanValue can never throw. Use Isolate version. [-Wdeprecated-declarations] | |
compressed = value->BooleanValue(info.GetIsolate()->GetCurrentContext()).ToChecked() ? v_true : v_false; \ | |
^ | |
../src/publickey.cc:20:3: note: in expansion of macro 'UPDATE_COMPRESSED_VALUE' | |
UPDATE_COMPRESSED_VALUE(flags, info[1], SECP256K1_EC_COMPRESSED, SECP256K1_EC_UNCOMPRESSED); | |
^~~~~~~~~~~~~~~~~~~~~~~ | |
In file included from /root/.node-gyp/12.6.0/include/node/v8-internal.h:14:0, |
NewerOlder