I hereby claim:
- I am tonylambiris on github.
- I am tonylambiris (https://keybase.io/tonylambiris) on keybase.
- I have a public key ASDH6G0Q8e4k_7uHjk4_4zzXOzadL7FQ7DeIHgoYW7tIBwo
To claim this, I am signing this object:
| // Save this file somewhere as spotify.preload.c | |
| // Then build the library: | |
| // gcc -fPIC -shared -o ~/spotify.preload.so spotify.preload.c -ldl | |
| // When you execute spotify, you need to preload this library, which wraps the "setsockopt" function call with another function that gives spotify the results it expects: | |
| // LD_PRELOAD=~/spotify.preload.so spotify | |
| // To make the desktop icon work, edit: /usr/share/applications/spotify.desktop | |
| // Change Exec=... to: |
I hereby claim:
To claim this, I am signing this object:
| [Desktop Entry] | |
| Name=Binary Ninja | |
| Exec=/home/user/bin/binaryninja.sh %u | |
| Icon=/home/user/binaryninja/docs/img/logo.png | |
| Terminal=false | |
| Type=Application | |
| MimeType=application/x-binaryninja;x-scheme-handler/binaryninja; | |
| Categories=Utility; | |
| Comment=Binary Ninja: A Reverse Engineering Platform |
| #!/bin/bash | |
| pushd ~/binaryninja &>/dev/null | |
| test -f libcurl.so.4 || ln -sf /usr/lib/libcurl-openssl-1.0.so libcurl.so.4 | |
| cd plugins | |
| test -f libpython2.7.so.1 || ln -sf /usr/lib/libpython2.7.so libpython2.7.so.1 | |
| test -f libpython3.so.1 || ln -sf /usr/lib/libpython3.so libpython3.so.1 | |
| popd &>/dev/null | |
| LD_LIBRARY_PATH=$HOME/binaryninja/plugins $HOME/binaryninja/binaryninja |
| interface=lo | |
| bind-interfaces | |
| localise-queries | |
| strict-order | |
| log-queries | |
| cache-size=1000 | |
| no-negcache | |
| no-hosts | |
| domain-needed | |
| expand-hosts |
| xdg-mime default org.gnome.Nautilus.desktop inode/directory |
| #! /usr/bin/env python | |
| """ Convert values between RGB hex codes and xterm-256 color codes. | |
| Nice long listing of all 256 colors and their codes. Useful for | |
| developing console color themes, or even script output schemes. | |
| Resources: | |
| * http://en.wikipedia.org/wiki/8-bit_color | |
| * http://en.wikipedia.org/wiki/ANSI_escape_code |
| diff --git a/src/CellSearch.cpp b/src/CellSearch.cpp | |
| index 8df062b..22fd03d 100644 | |
| --- a/src/CellSearch.cpp | |
| +++ b/src/CellSearch.cpp | |
| @@ -862,7 +862,7 @@ int config_bladerf( | |
| if (dev!=NULL) {bladerf_close(dev); dev = NULL; return(-1);} | |
| } | |
| - unsigned int actual_frequency; | |
| + long unsigned int actual_frequency; |
| diff --git a/src/Makefile.am b/src/Makefile.am | |
| index 811e2b86b..3826f896c 100644 | |
| --- a/src/Makefile.am | |
| +++ b/src/Makefile.am | |
| @@ -51,6 +51,8 @@ mutter_built_sources = \ | |
| $(dbus_login1_built_sources) \ | |
| meta/meta-enum-types.h \ | |
| meta-enum-types.c \ | |
| + meta-marshal.c \ | |
| + meta-marshal.h \ |