Skip to content
View bfpill's full-sized avatar
🤘
🤘
  • undergrad @ the university of melbourne
  • 17:45 (UTC -12:00)
Block or Report

Block or report bfpill

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. solving the alignment problem one st... solving the alignment problem one step at a time
    1
    import os
    2
    import json
    3
    import time
    4
    import random
    5
    import requests
  2. fast_life fast_life Public

    efficient implementation of conways game of life with an RLE parser

    Assembly 3

  3. Gekko Gekko Public

    openAI whisper linked to langchain and then ported to notion - Listens to conversations, decides if they are important or not, and then adds the conversations to a Notion database

    Python 1

  4. Smith Waterman affine local sequence... Smith Waterman affine local sequence alignment on DNA
    1
    
                  
    2
    def align(s1, s2, gap_penalty, match_score = 1, mismatch_penalty = -1):
    3
        m, n = len(s1), len(s2)
    4
    
                  
    5
        H = [[0] * (n + 1) for _ in range(m + 1)]