Sergei Basharov
Sergei Basharov
I'd like to prohibit using filename `index.css` in my components but cannot find details about the syntax of regex used in the project to build a proper expression. Please advise.
In the examples I see that ace loads templates just inside the request handler, so that it runs this on each web request to this endpoint: tmpl, err := ace.Load("index",...
So, to run a wallet, I need to run, e.g. `lnd` instance. This instance will manage a single wallet for me. Ok, now when I open BlueWallet, I see that...
I can subscribe to outcoming payments with this: ``` const subPayments = subscribeToPastPayments({ lnd }) subPayments.on('payment', async (payment: any) => {}) ``` When I get this event, I fetch the...
I noticed a bug when I click a link in browser which is a lnurl, e.g. ```html Pay in Bluewallet ``` Which decodes to `http://192.168.0.24/api/payments/lnurl/topup/request?v=50&id=369` When I click it, Bluewallet...
Say, a client of my service will eventually request a payment from it because he/she earned some amount via the service I built. The simplest thing I can implement right...
On https://tvkhoa.github.io/testlib/ I see "React App" as the title page, which seems to be a generic name from some react app generator, should be fixed I suppose?
I see type definitions in the package, but when I try to import and use this way: ``` import { colorConsole } from 'tracer' const logger = colorConsole({}) console.error('some error')...
I am building a diagnostic procedure to check multiple running parts of my app. One of them is LND instance, and before running the app I run the procedure and...
I am running a simple function from docs: ``` ngParse.User.logIn($scope.loginEmail, $scope.loginPassword, { success: function (user) { // Do stuff after successful login. }, error: function (user, error) { // The...