Giter VIP home page Giter VIP logo

minotaur's Introduction

Welcome

In theory, I am writing about my programming experiences on a blog. In practice, updates are few and far between. But I do have some future articles bubbling away in the background.

Active Projects

  • ⚡ I'm currently actively working, in my spare time, on xpdt and resynth.
  • 👷 I consider minotaur to be actively maintained
  • 🌱 I’m currently having a great time learning Rust

On Hold / Unreleased

  • hieros - An x86-64 kernel. I'll probably start again using rust, if I ever find time.
  • shaft - A fast SSE-accelerated web-server utilizing io_uring and pre-compiled content
  • radon - An SQL query compiler and database system
  • zipfuel - A graphical order-flow analysis system for high-frequency trading

Inactive Projects

These projects are, in general, over 10 years old and have not been worked on actively by anyone in at least that long:

  • ScaraOS is a toy 32bit operating system kernel
  • ccid-utils is a chip-card and emv driver and middleware
  • firestorm was a network intrusion detection system whose focus was on performance and protocol decodes. I don't work on this any more because I'm working in this area in my professional life instead.

minotaur's People

Contributors

giannitedesco avatar trel avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Forkers

trel gvb84 fxjung

minotaur's Issues

Error building wheel for minotaur

Hi there, this project looks interesting, however I'm having trouble installing. pip install minotaur==0.0.3 generates this:

  Building wheel for minotaur (setup.py): started
  Building wheel for minotaur (setup.py): finished with status 'error'
  ERROR: Command errored out with exit status 1:
   command: /usr/local/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-zgtvfvog/minotaur_70dba2a665fc411581cc3b0700352d54/setup.py'"'"'; __file__='"'"'/tmp/pip-install-zgtvfvog/minotaur_70dba2a665fc411581cc3b0700352d54/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-pybliqpe
       cwd: /tmp/pip-install-zgtvfvog/minotaur_70dba2a665fc411581cc3b0700352d54/
  Complete output (41 lines):
  running bdist_wheel
  running build
  running build_py
  creating build
  creating build/lib.linux-x86_64-3.8
  creating build/lib.linux-x86_64-3.8/minotaur
  copying minotaur/__init__.py -> build/lib.linux-x86_64-3.8/minotaur
  copying minotaur/__version__.py -> build/lib.linux-x86_64-3.8/minotaur
  copying minotaur/_minotaur.py -> build/lib.linux-x86_64-3.8/minotaur
  copying minotaur/_base.py -> build/lib.linux-x86_64-3.8/minotaur
  copying minotaur/_mask.py -> build/lib.linux-x86_64-3.8/minotaur
  copying minotaur/__main__.py -> build/lib.linux-x86_64-3.8/minotaur
  copying minotaur/_event.py -> build/lib.linux-x86_64-3.8/minotaur
  running egg_info
  writing minotaur.egg-info/PKG-INFO
  writing dependency_links to minotaur.egg-info/dependency_links.txt
  writing top-level names to minotaur.egg-info/top_level.txt
  reading manifest file 'minotaur.egg-info/SOURCES.txt'
  writing manifest file 'minotaur.egg-info/SOURCES.txt'
  copying minotaur/_inotify.c -> build/lib.linux-x86_64-3.8/minotaur
  running build_ext
  building 'minotaur._inotify' extension
  creating build/temp.linux-x86_64-3.8
  creating build/temp.linux-x86_64-3.8/minotaur
  gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I/usr/local/include/python3.8 -c minotaur/_inotify.c -o build/temp.linux-x86_64-3.8/minotaur/_inotify.o
  In file included from /usr/local/include/python3.8/Python.h:137,
                   from minotaur/_inotify.c:2:
  minotaur/_inotify.c: In function ‘PyInit__inotify’:
  minotaur/_inotify.c:120:26: error: ‘IN_MASK_CREATE’ undeclared (first use in this function); did you mean ‘IN_MASK_ADD’?
    PyModule_AddIntMacro(m, IN_MASK_CREATE);
                            ^~~~~~~~~~~~~~
  /usr/local/include/python3.8/modsupport.h:139:67: note: in definition of macro ‘PyModule_AddIntMacro’
   #define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant(m, #c, c)
                                                                     ^
  minotaur/_inotify.c:120:26: note: each undeclared identifier is reported only once for each function it appears in
    PyModule_AddIntMacro(m, IN_MASK_CREATE);
                            ^~~~~~~~~~~~~~
  /usr/local/include/python3.8/modsupport.h:139:67: note: in definition of macro ‘PyModule_AddIntMacro’
   #define PyModule_AddIntMacro(m, c) PyModule_AddIntConstant(m, #c, c)
                                                                     ^
  error: command 'gcc' failed with exit status 1
  ----------------------------------------
  ERROR: Failed building wheel for minotaur

Python version: 3.8.6
Base docker image: python:3.8.6-slim-buster

Error when importing the library

Hi,
I was trying to use this library and cannot even import it, fails like this:

    from minotaur import Inotify, Mask
  File "/home/ftr8fe/.local/lib/python3.8/site-packages/minotaur/__init__.py", line 16, in <module>
    from ._base import Inotify, InotifyBase
  File "/home/ftr8fe/.local/lib/python3.8/site-packages/minotaur/_base.py", line 18, in <module>
    class InotifyBase:
  File "/home/ftr8fe/.local/lib/python3.8/site-packages/minotaur/_base.py", line 34, in InotifyBase
    _waitq: Deque[asyncio.Future[None]]
TypeError: 'type' object is not subscriptable

In order to support Python 3.8 and 3.10, would it make sense to put this at the top of _base.py?
from __future__ import annotations

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.