git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
# Add the remote, call it "upstream":
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
| Hey, I'm eshaan7-16389167 and I have contributed to the Anon Aadhaar V2 Trusted Setup Ceremony. | |
| The following are my contribution signatures: | |
| Circuit # 1 (aadhaarverifier) | |
| Contributor # 36 | |
| Contribution Hash: bdb8e750 c3d89ba4 df0a9835 a0e2eaff | |
| 84a1a6f3 6132f64b 00ce8371 3ab778ff | |
| b46b85cc 965f431d 0b3ee6c6 6b9d5608 | |
| 47bd568a c4c0c67e 73b24c8c 27c9f530 |
| I contributed to the Semaphore Trusted Setup Multi-Party Ceremony. | |
| The following are my contribution signatures: | |
| Circuit: semaphore16 | |
| Contributor # 267 | |
| Hash: f6240633 39c89148 dc90981a c706331c | |
| 38237746 d9475805 de73900c 2746b740 | |
| f42442e4 0cbe0577 1b11891f 13313993 | |
| 00b447b6 cdcbdc3c d48c2a81 dbd5ccbc | |
| import re | |
| from django.conf import settings | |
| from django.core.management.commands.migrate import Command as MigrateCommand | |
| from django.db import DEFAULT_DB_ALIAS, OperationalError, connections | |
| from django.db.utils import ConnectionHandler | |
| class Command(MigrateCommand): | |
| """ |
| import React from "react"; | |
| import LoadingBar from "react-top-loading-bar"; // https://github.com/klendi/react-top-loading-bar | |
| import axios from "axios"; | |
| export default function TopLoadingBar() { | |
| // loading bar component ref | |
| const ref = React.useRef(null); | |
| React.useEffect(() => { | |
| // Add a request interceptor |
| import pluggy | |
| hookimpl = pluggy.HookimplMarker("myproject") | |
| class PluginXYZ: | |
| """A 2nd hook implementation namespace. | |
| """ | |
| @hookimpl | |
| def myhook(self, arg1, arg2): |
| # Generated on 2021-02-13 | |
| from django.db import migrations | |
| def _get_perm_obj(perm: str, apps=None): | |
| Permission = apps.get_model("auth", "Permission") | |
| app_label, codename = perm.split(".", 1) | |
| perm_obj, _created = Permission.objects.get_or_create(content_type__app_label=app_label, | |
| codename=codename) |
| """ | |
| Helper script for users upgrading to v1.3.0 of Intel Owl from any prior version | |
| """ | |
| import django | |
| if __name__ == "__main__": | |
| django.setup() | |
| from django.db import transaction |
| from django.contrib import admin | |
| from rest_framework_simplejwt.token_blacklist.admin import OutstandingTokenAdmin | |
| from rest_framework_simplejwt.token_blacklist.models import OutstandingToken | |
| from rest_framework_simplejwt.tokens import SlidingToken, RefreshToken | |
| class CustomOutstandingTokenAdmin(OutstandingTokenAdmin): | |
| """ | |
| Custom admin view for OutstandingToken model\n | |
| allows bulk deletion, blacklisting and sliding token creation |
| #!/bin/bash | |
| green='\033[1;32m' | |
| NC='\033[0m' # No Color | |
| function banner () | |
| { | |
| echo -e "\n${green}------------------------------ | |
| \n## Developer: @eshaan7, github.com/eshaan7 | |
| ## Use at your own risk. Usage might be illegal in certain circumstances. |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
# Add the remote, call it "upstream":
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git