Skip to content
View daisycamber's full-sized avatar
Block or Report

Block or report daisycamber

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

  1. glamgirlx glamgirlx Public

    A website for my glamour photography and blog.

    HTML

  2. femmebabe-2024 femmebabe-2024 Public

    An open source copy of my comprehensive full stack progressive web app focused on machine learning, media, and marketing.

    Python

  3. NFC Security for Django NFC Security for Django
    1
    {% extends 'base.html' %}
    2
    {% block content %}
    3
    <legend>NFC Verification</legend>
    4
    <p>Place the NFC device near the back of the phone. <a href="{% url 'security:mrz' %}" title="Use MRZ instead">Use MRZ instead</a></p>
    5
    <form action="{{ request.path }}{% if request.GET.generate %}?generate=t{% endif %}" id="nfc-form" method="POST" class="hide">
  4. Full text search using Python, with ... Full text search using Python, with autocorrection
    1
    from feed.models import Post
    2
    import regex, datetime
    3
    from autocorrect import Speller
    4
    
    
    5
    SEARCH_REGEX = r'\s({})[\s.,!?:)\-&*\"\';]'
  5. Detect albino birthmarks in skin in ... Detect albino birthmarks in skin in order to pass to kabsch-umeyama algorithm
    1
    import numpy as np
    2
    import cv2
    3
    from PIL import Image
    4
    
    
    5
    def get_image_contours(image_path):
  6. Prototype melanin diffusion for dete... Prototype melanin diffusion for detecting patterns in albino skin
    1
    import numpy as np
    2
    from .contours import get_image_contours
    3
    
    
    4
    MIN_SCORE = 0.70
    5