Skip to content
View daisycamber's full-sized avatar

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
daisycamber/README.md

Hi there 👋

My name is Charlotte Harper. Welcome to my GitHub.

Landing Page Visit my Website Static Badge Static Badge Stack Overflow Bootstrap jQuery Python Badge PyPI Badge Django OpenCV Github Pages Linode Hostinger Badge Ionos Badge Adafruit Badge Arduino Badge NumPy Pandas PyTorch TensorFlow YouTube Music Debian Linux Ubuntu CMake FFmpeg Kubernetes Postman Twilio Apache Apple Git Gmail Nordic Semiconductor ChatGPT Bitcoin Ethereum NiceHash Badge Coinbase Badge Amazon S3 Postgres Redis Stripe Square Badge Dovecot Badge Google Badge Nike Badge

I am a web developer focusing on Python and Linux living in Seattle Washington fluent in a multitude of languages relevant to full stack. I build full stack websites and website generation engines using open source.

  • 🔭 I’m currently working on building open-source Python full-stack software
  • 🌱 I’m currently learning about data security, cosmetics, and witchcraft
  • 👯 I’m looking to collaborate on full-stack projects
  • 🤔 I’m looking for help with things I'm stuck on
  • 💬 Ask me about Linux
  • 📫 How to reach me: ✉️Contact Me
  • 😄 Pronouns: She/her/hers
  • ⚡ Fun fact: I like to base jump

Thank you!

Thank you for your interest in my projects!

  • Charlotte Harper (Daisy)

A photo from my website xoxo <3

Pinned Loading

  1. glamgirlx glamgirlx Public

    A website for my glamour photography and blog.

    HTML

  2. lotteharper lotteharper Public

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

    HTML 1

  3. qoshlli qoshlli Public

    Video chat your family, friends, coworkers and classroom

    JavaScript

  4. 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">
  5. 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.,!?:)\-&*\"\';]'
  6. 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):