View gdbinit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# INSTALL INSTRUCTIONS: save as ~/.gdbinit | |
# | |
# DESCRIPTION: A user-friendly gdb configuration file. | |
# | |
# REVISION : 7.3 (16/04/2010) | |
# | |
# CONTRIBUTORS: mammon_, elaine, pusillus, mong, zhang le, l0kit, | |
# truthix the cyberpunk, fG!, gln | |
# | |
# FEEDBACK: https://www.reverse-engineering.net |
View config.fish
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
######################################################################################## | |
### Fish Custom Overrides | |
### Creates a shell prompt in the form of: | |
### | |
### ----------------------------------------------------------------------- 11:56:05 | |
### kevin@kross /S/L/F/C/V/A/F/L/V/A/Support > | |
######################################################################################## | |
set --global fish_prompt_username_color 555555 |
View 4CF.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <mach/port.h> /* mach_port_t */ | |
#include <mach/mach.h> /* mach_port_allocate(), mach_task_self(), mach_port_insert_member() */ | |
#include <sys/event.h> /* kqueue(), kevent64(), struct kevent64_s, EVFILT_MACHPORT, EV_SET64, EV_ADD */ | |
#include <sys/time.h> /* struct timespec */ | |
//#include <dispatch/private.h> | |
extern mach_port_t _dispatch_get_main_queue_port_4CF(void); | |
extern void _dispatch_main_queue_callback_4CF(void); | |
#include <stdio.h> |
View CurrentScriptPath.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
SCRIPT_PATH="${0}" | |
SCRIPT_DIR=`dirname "${SCRIPT_PATH}"` | |
SCRIPT_DIR=`cd "${SCRIPT_DIR}"; pwd` | |
echo "$SCRIPT_DIR" |
View .gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# OS X Finder | |
.DS_Store | |
# Xcode per-user config | |
*.mode1 | |
*.mode1v3 | |
*.mode2v3 | |
*.perspective | |
*.perspectivev3 | |
*.pbxuser |
View StringsLintCheck.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# for LocalizableStringsIn in $(find "${PROJECT_DIR}"/Languages -name "Localizable.strings.in" -print) | |
# do | |
# LocalizableStrings="${LocalizableStringsIn/Localizable.strings.in/Localizable.strings}" | |
# iconv -f UTF-8 -t UTF-16BE < "${LocalizableStringsIn}" > "${LocalizableStrings}" | |
# done | |
# NEEDLE='\( -path "*.lproj/*.strings" \! \( -path "*/build/*" \) \)' | |
HAYSTACK="${PROJECT_DIR}" |
View OOPinC.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct { | |
int (*AND_function_ptr)(int, int); | |
int (*math_funct_ptr)(float, char, float); | |
int (*comp_funct_ptr)(double); | |
int (*regul_funct_ptr)(char*, char*, int); | |
}functions; | |
int AND_function (int parameter1, int parameter2) | |
{ | |
} |
View GetRunningBSDProcesses.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* This returns the full process name, rather than the 16 char limit | |
the p_comm field of the proc struct is limited to. | |
Note that this only works if the process is running under the same | |
user you are, or you are running this code as root. If not, then | |
the p_comm field is used (this function returns nil). | |
*/ | |
NSString *GetNameForProcessWithPID(pid_t pidNum) | |
{ | |
NSString *returnString = nil; |
View gist:6074002
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define $(...) ((NSString *)[NSString stringWithFormat:__VA_ARGS__,nil]) | |
// use like so...[$(@"whatever%ld %@", 2, obj ) stringByRemoving...... |
View PrintStackTrace.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <execinfo.h> | |
#import <stdio.h> | |
void PrintStackTrace(void) | |
{ | |
void* callstack[128]; | |
int i, frames = backtrace(callstack, 128); | |
char** strs = backtrace_symbols(callstack, frames); | |
for (i = 0; i < frames; ++i) { | |
printf("%s\n", strs[i]); | |
} |
NewerOlder