I hereby claim:
- I am thelazyliz on github.
- I am thelazyliz (https://keybase.io/thelazyliz) on keybase.
- I have a public key ASCDOd9cOci9-n4M-vDnHrtmpuFxeaC8c04J4Dq8sI-1qAo
To claim this, I am signing this object:
| I contributed to the ZKOPRU Trusted Setup Multi-Party Ceremony. | |
| The following are my contribution signatures: | |
| Circuit: zk_transaction_1_2 | |
| Contributor # 275 | |
| Hash: d9014af9 31e17180 d6c2d924 0e5ec152 | |
| dafa1d72 90011f41 8c94c183 9617070b | |
| 6a8bc14a bca26334 ac1c29b5 2196424f | |
| 9c4f1e26 9663c6fc d43134f3 35c13933 | |
| import requests | |
| import re | |
| import sys | |
| root_url = "https://api.massive.app/v1" | |
| def get_masv(dl_link, password=None): | |
| print('Retrieving direct link(s)...') | |
| split_link = re.split('[/?=]', dl_link) |
I hereby claim:
To claim this, I am signing this object:
| import gspread | |
| import pandas as pd | |
| from oauth2client.service_account import ServiceAccountCredentials | |
| def main(): | |
| df_tracking = read_sheet('Olympus Labs tracking spreadsheet') | |
| df_movement = read_sheet('Olympus Labs TG movement spreadsheet') | |
| get_invites_count(df_movement, 366664457) # specific example of user_id given here | |
| get_eth_address(df_tracking, 359780450) # specific example of user_id given here | |
| return |
| from django.contrib import admin | |
| from django.contrib.admin import AdminSite | |
| from django.contrib.auth.models import User, Group | |
| from . models import Book | |
| class MyAdminSite(AdminSite): | |
| site_header = 'New Admin Interface' | |
| admin_site = MyAdminSite(name='new_admin') |
| from django.contrib import admin | |
| from . models import Book | |
| class BookAdmin(admin.ModelAdmin): | |
| list_display = ('book_title', 'author', 'ISBN_code') | |
| admin.site.register(Book, BookAdmin) |