-
Download Fritzing from here: http://fritzing.org/download/0.9.3b/
-
As suggested by maweski (fritzing/fritzing-app#3245 (comment)), we need to delete all libs and copy ours.
dnf install libgit2-devel qt5-qtserialport-devel
rm lib/*.so*
| const throttle = (func, delay) => { | |
| let timeoutId; | |
| return (...args) => { | |
| if (!timeoutId) { | |
| timeoutId = setTimeout(() => { | |
| func.apply(this, args); | |
| timeoutId = null; | |
| }, delay); | |
| } | |
| }; |
| def generate_coupon(id): | |
| # Generate config | |
| android_id = coupon.get_random_device_id() | |
| vmob_uid = coupon.generate_vmob_uid(android_id) | |
| username = coupon.generate_username(android_id) | |
| password = coupon.generate_password(android_id) | |
| plexurek = coupon.generate_plexure_api_key(vmob_uid) | |
| headers = coupon.strip_unnecessary_headers(coupon.get_random_headers(vmob_uid, plexurek)) |
| package main | |
| import "fmt" | |
| import "math/rand" | |
| import "os" | |
| import "os/exec" | |
| import "time" | |
| func main() { | |
| clearScreen() |
| package main | |
| import "fmt" | |
| import "math/rand" | |
| import "os" | |
| import "os/exec" | |
| import "time" | |
| func main() { | |
| clearScreen() |
Download Fritzing from here: http://fritzing.org/download/0.9.3b/
As suggested by maweski (fritzing/fritzing-app#3245 (comment)), we need to delete all libs and copy ours.
dnf install libgit2-devel qt5-qtserialport-devel
rm lib/*.so*