astrand
astrand
NFC readers from ST (https://www.st.com/en/nfc/st25-nfc-rfid-readers.html) are fairly popular. Support is provided via the RFAL library (https://www.st.com/en/embedded-software/st25-nfc-rfid-software.html). Any plans for making a libnfc driver for this API? Any hints regarding how...
NXP is pushing new NCI based chips, and refer to https://github.com/NXPNFCLinux/linux_libnfc-nci. Is it possible to use "libnfc" (and/or libfreefare) on top of this project? Or is it so that the...
This PR builds upon #5187. With these commits, I can successfully build wfreerdp.exe in our Linux based MinGW environment, which is based on mingw-w64-v3.3.0 and gcc-5.1.0.
Is it possible to use the web interface "Try it out" feature, with a REST endpoing which sends data incrementally, and never returns a response code? The server does like...
Moved from http://bugzilla.lysator.liu.se/show_bug.cgi?id=1691: ``` Opened: 2010-09-15 00:08 ``` IE. class foo: @staticmethod def bar(x): pass ------- Comment #1 From Al Gettier 2010-09-15 00:11:52 [reply] ------- class foo: @staticmethod def bar():...
From http://bugzilla.lysator.liu.se/show_bug.cgi?id=1606: Here is the source code "setup.py": from distutils.core import setup import py2exe setup( # The first three parameters are not required, if at least a # 'version' is...
Moved from http://bugzilla.lysator.liu.se/show_bug.cgi?id=1605: The following code d = {"a": "A", "b": "B", # comment "c": "C"} is not correctly handled: the last line containing the dictionary key "c" is ignored,...
Moved from http://bugzilla.lysator.liu.se/show_bug.cgi?id=1603: Dear Sirs: the following Python code line f = lambda x: [v for v in x] does not get through the pyobfuscate and generates an error when...
From http://bugzilla.lysator.liu.se/show_bug.cgi?id=1585: If you have a construction like this: foo = [1, # My number one 2, 3] the obfuscated code will look like: oo000 = [ 1 ,if 9...
Moved from http://bugzilla.lysator.liu.se/show_bug.cgi?id=1583: As seen by the below example, pyobfuscate incorrectly obfuscates function parameters when they are used in lambdas. cat ~/slask/pyobf_lambda.py def foo(bar): lambda x: x.startswith(bar) pyobfuscate ~/slask/pyobf_lambda.py def...