Bugzilla Korean Translation based on v4.4 and v4.4.6 Under working... Refer for personal use, I do not garrantee its translation accuracy, correctness as I am not good at English. I'll thank for any suggestion or any ideas, but I do not expect any kinds of feedback.
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
| #!/usr/bin/env perl | |
| use 5.010; | |
| use common::sense; | |
| use Math::Prime::TiedArray; | |
| use List::Compare; | |
| # | |
| # 실행전 설치 모듈 확인 | |
| # $ cpanm common::sense Math::Prime::TiedArray List::Compare |
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
| var win = Ti.currentWindow; | |
| var imageCollection = [ | |
| 'http://example.com/images/1.jpg', | |
| 'http://example.com/images/2.jpg', | |
| 'http://example.com/images/3.jpg', | |
| 'http://example.com/images/4.jpg', | |
| 'http://example.com/images/5.jpg', | |
| 'http://example.com/images/6.jpg' | |
| ]; | |
| var scrollGallery = Ti.UI.createScrollableView({ |
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
| 000000 Officially Xerox | |
| 000001 SuperLAN-2U | |
| 000002 BBN (was internal usage only, no longer used) | |
| 000003 XEROX CORPORATION | |
| 000004 XEROX CORPORATION | |
| 000005 XEROX CORPORATION | |
| 000006 XEROX CORPORATION | |
| 000007 XEROX CORPORATION | |
| 000008 XEROX CORPORATION | |
| 000009 powerpipes? |
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
| while (1) | |
| { | |
| WaitChar("Please choose the operation", 0) | |
| BackgroundColor("White") | |
| SendHex("57") | |
| WaitChar("Input Serial Number ==:", 10000) | |
| WaitChar(" TEST ",0) | |
| BackgroundColor("Yellow") | |
| WaitChar("U-Boot ", 0) | |
| BackgroundColor("Red") |
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
| <?xml version="1.0"?> | |
| <FoxTerm windowLayout="tile_vertical" sizeX="1187" sizeY="549" locX="1998" locY="78" xmlVersion="1.1"> | |
| <COMPort alias="COM30"> | |
| <Connection> | |
| <StartupMacro>D:\doc\Downloads\foxterm_1_5_3_0\wizfi630s_v1.1.0.ftm</StartupMacro> | |
| <Port>COM30</Port> | |
| <Baud>115200</Baud> | |
| </Connection> | |
| <Formatting> | |
| <FontColorBkgd>Red</FontColorBkgd> |
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
| try: | |
| while True: | |
| pass | |
| time.sleep(1) | |
| except (KeyboardInterrupt, SystemExit): | |
| pass | |
| finally: | |
| if s_th_enable: | |
| s_th.stop() |
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 time | |
| import threading | |
| class testthread(threading.Thread): | |
| def __init__(self, testvar=None): | |
| threading.Thread.__init__(self) | |
| self.enabled = False | |
| def stop(self): | |
| self.enabled = False |
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 sys | |
| n=input() | |
| a=[sys.stdin.readline() for i in range(n)] | |
| print sum(list(map(int,a)))-n+1 | |
| # https://www.acmicpc.net/board/view/855 |
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
| make 'd:\aliases.cmd' and type following line | |
| doskey az=azsphere $* | |
| set target in property window of azure sphere developer command prompt to | |
| C:\Windows\System32\cmd.exe /k ""C:\Program Files (x86)\Microsoft Azure Sphere SDK\\InitializeCommandPrompt.cmd" & D:\aliases.cmd" |
OlderNewer