This file contains hidden or 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 | |
LSREGISTER="/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister" | |
echo "Rebuilding LaunchServices database..." | |
"${LSREGISTER}" -kill -r -all system,local,user | |
echo "Done." |
This file contains hidden or 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 <Foundation/Foundation.h> | |
#import <utmpx.h> | |
// CCFLAGS="-std=c99 -framework Foundation -arch i386 -mmacosx-version-min=10.6" | |
NSSet *ConsoleUsers(void) | |
{ | |
NSMutableSet *userList = [NSMutableSet set]; | |
struct utmpx *userTmp = getutxent(); |
This file contains hidden or 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]); | |
} |
This file contains hidden or 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...... |
This file contains hidden or 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; |
This file contains hidden or 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) | |
{ | |
} |
This file contains hidden or 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}" |
This file contains hidden or 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 |
This file contains hidden or 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 -x | |
# This script automatically sets the version and short version string of | |
# an Xcode project from the Git repository containing the project. | |
# | |
# To use this script in Xcode 4, add the contents to a "Run Script" build | |
# phase for your application target. | |
set -o errexit | |
set -o nounset |