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:
xdg-mime default org.gnome.Nautilus.desktop inode/directory |
interface=lo | |
bind-interfaces | |
localise-queries | |
strict-order | |
log-queries | |
cache-size=1000 | |
no-negcache | |
no-hosts | |
domain-needed | |
expand-hosts |
#!/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 |
[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 |
I hereby claim:
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: |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <dlfcn.h> | |
int (*initialize_tagger)(char *envp); | |
void (*destroy_tagger)(void); | |
char *(*Tokenizer)(char *buff); | |
char *(*tag)(char *buf, int enhanced_penntag); | |
int main(int argc, char **argv) { |
# vim: ft=python sw=4 ts=4 et | |
from pprint import pprint | |
mgr = RepositoryManager() | |
# add third-party plugins with the following: | |
# mgr.add_repository(url="https://github.com/GitMirar/BinaryNinjaYaraPlugin.git", | |
# repopath="plugins", | |
# localreference="master", |
#!/bin/bash | |
# copy video stream instead of re-encoding | |
ffmpeg -i input.mkv -acodec mp3 -strict -2 -vcodec copy output.mp4 |