Address Jakub's concerns regarding the performance impact of PIE. See
https://lists.fedoraproject.org/pipermail/devel/2013-April/181171.html
The basic idea behind RpmGrill project is to run automated tests on Koji packages as well as Fedora stable & testing repositories. RpmGrill analyzes _builds_, not individual rpms: this allows it to detect problems such as compiler warnings (from the build logs) or multilib inconsistencies (by matching 32- and 64-bit rpms) which cannot be identified by examining a single rpm file.
// gcc -c -O2 too-much-optimization.c | |
// | |
// objdump -d too-much-optimization.o | |
// | |
// the overflow check in gdk_pixbuf_new_reduced function disappears under Fedora 24 GCC 6.1.1 | |
// | |
// http://c-faq.com/misc/intovf.html | |
// http://c-faq.com/misc/sd26.html | |
#include <stdio.h> |
I hereby claim:
To claim this, I am signing this object:
/** | |
* A BLE client example that is rich in capabilities. | |
* There is a lot new capabilities implemented. | |
* author unknown | |
* updated by chegewara | |
*/ | |
// QnD support for "UT353-BT Mini Sound Level Meter" by Dhiru Kholia (March 2020) | |
// - Publishes sensor data to a Redis server on LAN |
#!/usr/bin/python3 | |
import quick2wire.i2c as i2c | |
import time | |
import RPi.GPIO as GPIO | |
import alsaaudio | |
import threading | |
import logging | |
import sys | |
#Work in progress library for Si473x for Raspberry Pi by Jonathan Thorpe <[email protected]> |