|
You are here |
dusty.phillips.codes | ||
| | | | |
blog.nobugware.com
|
|
| | | | | It's more a reminder to myself, gevent depends on libevent2 but the setup.py doesn't correcty look for it, a simple solution: export CFLAGS=-I/usr/local/include export LDFLAGS=-L/usr/local/lib pip install gevent change it for /opt/local/... if you are on OSX or you will get a bunch of errors /Developer/usr/bin/llvm-gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -pipe -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/opt/local/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c... | |
| | | | |
blog.tafkas.net
|
|
| | | | | After the release of macOS 10.15.2 two days agao I have upgraded my mac at work to latest version today. Immediately, after running pip to install some packages I was greeted with an abort. I checked the crash reporter to find the offender: Application Specific Information: /usr/lib/libcrypto.dylib abort() called Invalid dylib load. Clients should not load the unversioned libcrypto dylib as it does not have a stable ABI. After poking around for a bit I figured out it was because of the asn1crypto library. | |
| | | | |
coornail.net
|
|
| | | | | A recent Hacker News thread got me to revisit my dotfiles repository and reflect on the tools I've been using for the past 10+ years. Technologies like the cloud and docker came, but surprisingly nothing major has changed in these years. | |
| | | | |
isthisit.nz
|
|
| | | Installing an F# development environment on Ubuntu is easy! We use .NET Core as the runtime rather than the traditional Mono, and then install the VS Code editor with the F# extension Ionide. First up install .NET Core. Follow the instructions on the Microsoft website. These will always be up to date and also provide installation options for non Debian based linux distributions. By default Microsoft has telemetry enabled. This collects data about the commands run through the dotnet executable and sends the supposedly anonymised timestamp, operating system information and country it thinks your IP address belongs to. Run the command below to disable it, though one would think it should be disabled by default. | ||