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 | |
| sudo kextunload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport | |
| sudo kextload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport |
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
| alias ls='ls -AhFG' | |
| alias ll='ls -AhlFG' | |
| alias grep='grep -C 2 -n ' |
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
| defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2StandardFontFamily Georgia | |
| defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2DefaultFontSize 16 | |
| defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2FixedFontFamily Menlo | |
| defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2DefaultFixedFontSize 14 |
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 | |
| ############################################ | |
| # Modified from emilis bash prompt script | |
| # from https://github.com/emilis/emilis-config/blob/master/.bash_ps1 | |
| # | |
| # Modified for Mac OS X by | |
| # @corndogcomputer | |
| ########################################### | |
| # Fill with minuses | |
| # (this is recalculated every time the prompt is shown in function prompt_command): |
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
| HISTTIMEFORMAT='%F %T ' | |
| export HISTTIMEFORMAT | |
| . ~/.bash_prompt | |
| . ~/.alias | |
| export THEOS=/opt/theos | |
| export iOSOpenDevPath=/opt/iOSOpenDev | |
| export iOSOpenDevDevice= | |
| export PATH=$THEOS/bin:$iOSOpenDevPath/bin:$PATH |
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
| <html> | |
| <head> | |
| <title>미드 한글자막</title> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/> | |
| <link rel="stylesheet" href="../jquery.mobile.css" /> | |
| <link rel="stylesheet" href="../jquery.mobile.f.css" /> | |
| <style type="text/css"> | |
| .content.pc { float: left; width: 30%; margin-right: 15px } | |
| .ui-li-desc { font-size: 8pt; font-weight: normal } |
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
| @interface UIPopoverController (overrides) | |
| + (BOOL)_popoversDisabled; | |
| @end | |
| @implementation UIPopoverController (overrides) | |
| + (BOOL)_popoversDisabled { | |
| return NO; | |
| } |
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
| set completion-ignore-case on | |
| set show-all-if-ambiguous on | |
| TAB: menu-complete | |
| # history search | |
| "\e[A": history-search-backward | |
| "\e[B": history-search-forward |
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
| # clone theos.git | |
| cd ~ | |
| git clone git://github.com/DHowett/theos.git | |
| # clone iphoneheaders.git | |
| cd ~/theos/ | |
| mv include include.bak | |
| git clone git://github.com/rpetrich/iphoneheaders.git include | |
| for FILE in include.bak/*.h; do mv $FILE include/; done | |
| rmdir include.bak/ |
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
| // Mach-O dynamic library | |
| { | |
| Type = PackageType; | |
| Identifier = com.apple.package-type.mach-o-dylib; | |
| Name = "Mach-O Dynamic Library"; | |
| Description = "Mach-O dynamic library"; | |
| DefaultBuildSettings = { | |
| EXECUTABLE_PREFIX = ""; | |
| EXECUTABLE_SUFFIX = ""; | |
| EXECUTABLE_NAME = "$(EXECUTABLE_PREFIX)$(PRODUCT_NAME)$(EXECUTABLE_VARIANT_SUFFIX)$(EXECUTABLE_SUFFIX)"; |
NewerOlder