Skip to content

Instantly share code, notes, and snippets.

View Utkarshbhimte's full-sized avatar
💭
One push at a time

Utkarsh Bhimte Utkarshbhimte

💭
One push at a time
View GitHub Profile

Keybase proof

I hereby claim:

  • I am utkarshbhimte on github.
  • I am dardnivarak (https://keybase.io/dardnivarak) on keybase.
  • I have a public key ASDJThqS4FhaFzN3oYoHktvgNSTo-KkcaGvf9vqS8QUpUwo

To claim this, I am signing this object:

package com.bhimtemachine.cointickerirl.cointickerirl
import android.app.Activity
import android.os.Bundle
import com.android.volley.Request
import com.android.volley.Response
import com.android.volley.toolbox.JsonArrayRequest
import com.android.volley.toolbox.NetworkImageView
@Utkarshbhimte
Utkarshbhimte / reset commit author.sh
Created October 31, 2019 11:15
When there is a fuck up in the commits, and you want to edit commit authors
git config --local user.name "Utkarsh Bhimte" && # saving config for future commits
git config --local user.email "utkarshbhimte95@gmail.com" &&
git filter-branch -f --env-filter '
WRONG_EMAIL="utkarsh@example.com"
NEW_NAME="Utkarsh Bhimte"
NEW_EMAIL="utkarshbhimte95@gmail.com"
if [ "$GIT_COMMITTER_EMAIL" = "$WRONG_EMAIL" ]
then
export GIT_COMMITTER_NAME="$NEW_NAME"
pragma solidity 0.8.0;
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "hardhat/console.sol";
// We need to import the helper functions from the contract that we copy/pasted.
import { Base64 } from "./libraries/Base64.sol";