- Common used commands to use chia-cli
- https://docs.google.com/document/d/1v9WoRNqjWa90PKTWPxjObC7DnKTMrFtURBLC4FuJ-xA/edit#
- https://www.lautenbacher.ch/en/crypto-en/all-cli-commands-for-chia-network-with-an-explanation/
- https://the-one-and-only.medium.com/guide-on-how-to-mining-the-chia-network-with-ubuntu-with-the-cli-6f5a316dfb08
This file contains hidden or 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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<title>Print Mero - Argentina - Impresión como servicio.</title> | |
<meta name="Description" content="Imprimi lo que necesites, y te lo enviamos a domicilio! A4, Oficio, Incluso PCBs y 3D! Una app para reducir los costos, y especialmente hecha para makers :)."> | |
<meta name="Keywords" content="Imprimir, A4, Oficio, Color, BN, PCBs, 3D"> | |
<meta charset="utf-8"> | |
<base href="/"> |
This file contains hidden or 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
// https://github.com/marce1994/DockerAzureFunctionsDemo/blob/master/FunctionZonapropScrapping.cs | |
//... | |
[FunctionName("FunctionZonapropScrapping")] | |
public static async Task<IActionResult> Run([HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req, ILogger log) | |
{ | |
int pageNumber = 0; | |
if (!int.TryParse(req.Query["pageNumber"], out pageNumber)) return new BadRequestResult(); | |
var scrapper = new ZonapropScrapper(); | |
var result = await scrapper.GetDataAsync(pageNumber); |
This file contains hidden or 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
//192.168.0.1 -> true // domain.domain.com.ar -> false | |
function isIp(str) { | |
return /^(([1-9]?\d|1\d\d|2[0-4]\d|25[0-5])(\.(?!$)|$)){4}$/.test(str); | |
}; |
This file contains hidden or 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 resin/raspberrypi3-buildpack-deps:jessie | |
ENV NODE_VERSION 10.0.0 | |
RUN curl -SLO "http://resin-packages.s3.amazonaws.com/node/v$NODE_VERSION/node-v$NODE_VERSION-linux-armv7hf.tar.gz" \ | |
&& tar -xzf "node-v$NODE_VERSION-linux-armv7hf.tar.gz" -C /usr/local --strip-components=1 \ | |
&& rm "node-v$NODE_VERSION-linux-armv7hf.tar.gz" \ | |
&& npm config set unsafe-perm true -g --unsafe-perm \ | |
&& rm -rf /tmp/* |
This file contains hidden or 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
var express = require("express"); | |
var path = require('path'); | |
var bodyParser = require('body-parser'); | |
var uploadRepository = require("./uploads_repository")(); | |
var router = express.Router(); | |
router.use(bodyParser.urlencoded({ extended: false, limit: '50mb' })); | |
router.use(bodyParser.json()); |
This file contains hidden or 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
var minMaxAvg1Min = []; | |
var lastMin = 0; | |
const { | |
BFX_API_KEY = 'APIKEY', | |
BFX_API_SECRET = 'APISECRET', | |
} = process.env; | |
const opts = { | |
version: 2, |
This file contains hidden or 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
using SuperSocket.ClientEngine; | |
using System; | |
using WebSocket4Net; | |
namespace Collectors | |
{ | |
public class BitfinexCollector | |
{ | |
WebSocket websocket = new WebSocket("wss://api.bitfinex.com/ws"); |