Skip to content

Instantly share code, notes, and snippets.

View franout's full-sized avatar
👾
Sapere aude.

Francesco Angione franout

👾
Sapere aude.
View GitHub Profile
@franout
franout / GitConfigHttpProxy.md
Created July 16, 2023 15:00 — forked from evantoli/GitConfigHttpProxy.md
Configure Git to use a proxy

Configure Git to use a proxy

In Brief

You may need to configure a proxy server if you're having trouble cloning or fetching from a remote repository or getting an error like unable to access '...' Couldn't resolve host '...'.

Consider something like:

@franout
franout / DTPU_delegate.py
Last active May 13, 2020 22:02
create .so library from PYNQ python code for DTPU accelerator
import cffi
##########################################################################
#### create .so library from PYNQ python code for DTPU accelerator ######
##########################################################################
ffibuilder = cffi.FFI()
ffibuilder.cdef("""
extern "Python" {
void destroy_p(void * );