sudo apt update
sudo apt install software-properties-common -y
| #!/bin/bash | |
| # Written by ChatGPT with some human help 🙂 | |
| # Loop through all apps in your project | |
| for app in $(python manage.py showmigrations -l | grep -v '^\[ \]'); do | |
| echo "Deleting migration files for $app..." | |
| # Delete all migration files except __init__.py | |
| find "$app/migrations" -name '00*.py' -not -name '__init__.py' -exec rm {} \; |
| /* | |
| Author: Tobe :) | |
| ZKP Circuits for a Game of Battleship | |
| Circom: https://github.com/iden3/circom | |
| 3rd-Party circuits gotten from: https://github.com/iden3/circomlib | |
| */ | |
| pragma circom 2.1.5; |
| """ | |
| A cleaner approach to temporarily creating unmanaged model db tables for tests | |
| """ | |
| from unittest import TestCase | |
| from django.db import connections, models | |
| class create_unmanaged_model_tables: | |
| """ |
| """ | |
| Vignere (Keyword) Cipher implementation in Python | |
| """ | |
| import string | |
| def generate_key(keyword: str, keyletter: str = "A") -> str: | |
| """ | |
| Generate a polyalphabetic cipher key |
| import functools | |
| import logging | |
| import pickle | |
| import typing as t | |
| from contextlib import contextmanager | |
| from random import random | |
| from django.conf import settings | |
| from celery import Task |
| import { Dispatch, SetStateAction, useState, useEffect, useCallback, useRef } from 'react'; | |
| export type StorageArea = 'sync' | 'local'; | |
| // custom hook to set chrome local/sync storage | |
| // should also set a listener on this specific key | |
| type SetValue<T> = Dispatch<SetStateAction<T>>; | |
| /** |
| #!/usr/bin/env python | |
| # -*- coding: utf-8; py-indent-offset:4 -*- | |
| ############################################################################### | |
| # | |
| # Copyright (C) 2021 Emmanuel Katchy | |
| # | |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation, either version 3 of the License, or |
Let suppose I have two github accounts, https://github.com/rahul-office and https://github.com/rahul-personal. Now i want to setup my mac to easily talk to both the github accounts.
NOTE: This logic can be extended to more than two accounts also. :)
The setup can be done in 5 easy steps:
| import base64 | |
| import ecdsa | |
| def generate_vapid_keypair(): | |
| """ | |
| Generate a new set of encoded key-pair for VAPID | |
| """ | |
| pk = ecdsa.SigningKey.generate(curve=ecdsa.NIST256p) | |
| vk = pk.get_verifying_key() |