Skip to content

Instantly share code, notes, and snippets.

View ammarhaiderak's full-sized avatar
💭
Sr. Software Engineer

Ammar Haider ammarhaiderak

💭
Sr. Software Engineer
  • Pakistan
View GitHub Profile
@ammarhaiderak
ammarhaiderak / docker-compose.mongo.yaml
Created January 16, 2025 17:09
Docker Compose for Mongodb and Mongoexpress
version: '3'
services:
mongodb:
image: mongo
ports:
- '27017:27017'
volumes:
- dbdata:/data/db
environment:
@ammarhaiderak
ammarhaiderak / solidity-cheatsheet.md
Last active August 2, 2024 12:05
Solidity Cheatsheet

Cheat Sheet for common solidity functions

Gas Consumption inside contract

function foo() public {
        uint256 initialGas = gasleft();
        
        /* 
        
 Your function logic here
@ammarhaiderak
ammarhaiderak / DevOps-cheatsheet.md
Last active August 2, 2024 12:05
DevOps Cheat Sheet

Find process by port

sudo ss -lptn 'sport = :9000' 

Find process by process id

ps -p 1366 -o comm=
@ammarhaiderak
ammarhaiderak / gist:c007926a8e10925efec6d1232fe3ab01
Last active January 28, 2025 23:15
Deploying Self-Hosted Gnosis Safe Wallet for Custom Blockchain

Gnosis Safe Clone (custom blockchain)

Transaction Service

  • create env file from .env.l2.sample

    cp .env.l2.sample .env
@ammarhaiderak
ammarhaiderak / connorsrsi.ipynb
Last active April 18, 2024 13:38
Apple Stock Analysis using yFinance and Pandas
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ammarhaiderak
ammarhaiderak / emailscrapper2.ipynb
Last active April 18, 2024 13:40
Email Scrapper
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.