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
unit uIOSUtils; | |
interface | |
uses | |
System.UITypes; | |
procedure SetStatusBarColor(const iColor: TAlphaColor); | |
implementation |
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
(* | |
* Easy Downloader | |
* | |
* Copyright (c) 2015, 2017 HOSOKAWA Jun. | |
* | |
* CONTACT | |
* Twitter @pik or [email protected] | |
* | |
* LAST UPDATE | |
* 2017/12/05 Remove iPort parameter |
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
unit uFileStreamFixForAndroid4; | |
interface | |
uses | |
System.Classes | |
, System.SysUtils | |
; | |
type |
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
(* | |
* Get File Size | |
* | |
* Copyright (c) 2015, 2016 HOSOKAWA Jun. | |
* | |
* CONTACT | |
* Twitter @pik or [email protected] | |
* | |
* LAST UPDATE | |
* 2016/03/30 Delete warning |
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
(* | |
* ExeName method is added to TApplication. | |
* | |
* Made by HOSOKAWA Jun. | |
* | |
* CONTACT | |
* Twitter @pik or [email protected] | |
* | |
* LAST UPDATE | |
* 2015/12/15 First Release |
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
(* | |
* WebBrowserHelper | |
* WebBrowser Utility | |
* | |
* Copyright (c) 2015 HOSOKAWA Jun. | |
* | |
* CONTACT | |
* Twitter @pik or [email protected] | |
* | |
* LAST UPDATE |
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
(* | |
* Switches | |
* Case sentence with Anytype ! | |
* | |
* Copyright (c) 2015 HOSOKAWA Jun. | |
* | |
* CONTACT | |
* Twitter @pik or [email protected] | |
* | |
* LAST UPDATE |
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
program CLikeSwitchCase; | |
function SwitchCase(const A: Integer): Integer; | |
label | |
Case0, Case1, CaseElse; | |
begin | |
Result := 0; | |
case A of | |
0: goto Case0; |
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
{ | |
2015/09/30 検証用プログラム修正 | |
CodeIQ で出題された「先制 hello, world」の僕の解答と、ちょっとだけ解説です。 | |
特設ページ http://nabetani.sakura.ne.jp/codeiq/prehewo/index.html | |
僕が提出したコードは下記(先頭に空白アリ) | |
{'4#()3.}BEGIN WRITE(LOWERCASE('PREEMPTIVE '#34'HELLO'#44' WORLD'#34))END. |
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 is sample code (My memorandum) | |
* System.Net.HttpClient.THttpClient class | |
* | |
* Programmed by HOSOKAWA Jun / twitter @pik | |
*) | |
program MVPCount; | |
{$APPTYPE CONSOLE} |