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
| /* Swift 3.0 UINavigationController ๊ธฐ๊ธฐ ๋ฐฉํฅ ๊ณ ์ */ | |
| extension UINavigationController { | |
| override open var shouldAutorotate: Bool { | |
| return false | |
| } | |
| override open var supportedInterfaceOrientations : UIInterfaceOrientationMask { | |
| return .portrait | |
| } | |
| } |
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
| for(index = 0; index < 128; index++) | |
| { | |
| _asm | |
| { | |
| ov al, index | |
| ut 0x70, al | |
| n al, 0x71 | |
| ov tvalue, al | |
| } | |
| } |
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
| @echo off | |
| "%1\bin\cygrunsrv.exe" -E sshd | |
| "%1\bin\cygrunsrv.exe" -R sshd | |
| takeown /r /d y /f "%1" | |
| icacls "%1" /t /grant Everyone:F |
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
| rm -Rf /Applications/Android\ Studio.app | |
| rm -Rf ~/Library/Preferences/AndroidStudio* | |
| rm ~/Library/Preferences/com.google.android.studio.plist | |
| rm -Rf ~/Library/Application\ Support/AndroidStudio* | |
| rm -Rf ~/Library/Logs/AndroidStudio* | |
| rm -Rf ~/Library/Caches/AndroidStudio* | |
| rm -Rf ~/.gradle | |
| rm -Rf ~/.android |
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
| #include <stdio.h> | |
| #ifdef WIN32 | |
| #define popen _popen | |
| #define pclose _pclose | |
| #endif | |
| FILE *stream = popen("ssh pr0ximo@192.168.2.144 cat /home/pr0ximo/2008.csv", "r"); | |
| int main(int argc, char **argv) |
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
| #include <iostream> | |
| #include <string> | |
| #include <vector> | |
| // | |
| // ๋ฌธ์์ด์ ๊ตฌ ๋๋ ๋จ์ด ๋จ์๋ก ๋ถ๋ฆฌํ๋ ํจ์. | |
| // | |
| // str: ๋ถ๋ฆฌํ ๋ฌธ์์ด. | |
| // div: ๋ถ๋ฆฌ๋ ๋ฌธ์์ด์ ๋ฒกํฐ. | |
| // |
NewerOlder