Skip to content

Instantly share code, notes, and snippets.

@DelphiWorlds
DelphiWorlds / GetTwitterOAuth2Token.pas
Created October 16, 2023 05:54
Get OAuth2 Access Token from Twitter
const
cAuth = 'YourKeyAndSecret';
procedure TForm1.Button1Click(Sender: TObject);
var
LHTTP: THTTPClient;
LResponse: IHTTPResponse;
LContent: TStream;
LBase64: TBase64Encoding;
begin
@DelphiWorlds
DelphiWorlds / Unit1.pas
Created June 12, 2024 10:46
Check Bluetooth state on iOS
unit Unit1;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Controls.Presentation, FMX.StdCtrls,
Macapi.ObjectiveC, Macapi.Bluetooth,
iOSapi.Foundation, iOSapi.CocoaTypes;
@DelphiWorlds
DelphiWorlds / ThemeChange.pas
Created June 27, 2024 12:50
Example of handling theme changes on mobile
unit Unit1;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, System.Messaging,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Controls.Presentation, FMX.StdCtrls, FMX.Platform;
type
TForm1 = class(TForm)