Arshil Hapani
@arshil_hapani
Arshil Hapani
@arshil_hapani
Just ordinary nerd
Just ordinary nerd
Blockchain Engineer, Stellus
Surat, India
Devfolio stats
Devfolio stats
2
projects
2
0
prizes
0
5
hackathons
5
0
Hackathons org.
0
GitHub
GitHub
682
contributions in the last year
Apr
S
M
T
W
T
F
S
Mar
8
stars earned
48
repositories
34
followers
polyMarketClone
End to end polymarket clone build using rust based microservice architecture, following the best system design and devops practices. Go through readme for infra level architecture.
Rust
5Stars
1Forks
Header-remake
This tool generates customizable, visually appealing comment headers for programming files. With options for symbols, length, and format, Header Remake makes it easy to add professional, readable headers to code files.
Rust
1Stars
0Forks
Syncly
Effortlessly synchronize files and directories across devices. Syncly simplifies file management, ensuring your data stays consistent and up-to-date across locations.
Rust
1Stars
0Forks
base_indexer
Indexing the data from Uniswap V2 and V3 contracts from base blockchain. Websocket based subscription mechanism, auto scheduled cron tasks controlled via API controller.
TypeScript
0Stars
0Forks
Medium Posts
Medium Posts
Getting Started with BullMQ: A Complete Guide to Distributed Job Queues in Node.js
medium.com
BullMQ is the fast and robust queue system built on top of Redis for Node.js. It is a rewrite of the previous Bull, with a new API and better performance. It is used for handling distributed jobs and messages in any application. It is backed by Redis and it is designed to have a simple and predictable API, and high reliability. As always without further ado, let’s get started with the practical example. Prerequisites Bun Js you can also use NodeJS Redis TypeScript (optional) Docker / Podman (optional) t...
Master Bash Scripting: A Quickstart Guide!
medium.com
Bash scripting Bash script is used to make linux utilities and in makefile to automate your task. Without wasting anymore time let’s begin the bash quickstart. 💡Note: First line of every script file contains `#!/bin/bash` which tells os to use bash | zsh | fish shell. (It is not require though but it is generally good practice to include it) Creating a bash script file touch <filename>.sh → Used to create bash file. chmod +x <filename>.sh → Make it executable (by default it is only in read and write mo...
NGINX the reverse proxy server
medium.com
usage of NGINX Load balancer Data caching SSL handshaking Reverse proxy server To download the nginx for mac: brew install nginx for linux: sudo apt install nginx Default nginx working dir /etc/nginx To start or stop NGINX `sudo systemctl start nginx` or `nginx` (max) or `sudo nginx` (linux) — for starting nginx server (same goes for docker) or try running `sudo systemctl stop nginx` — for stopping nginx server After starting `nginx`, visit http://localhost:80 it displays whether the nginx server is ...