hexsha stringlengths 40 40 | size int64 3 1.05M | ext stringclasses 163
values | lang stringclasses 53
values | max_stars_repo_path stringlengths 3 945 | max_stars_repo_name stringlengths 4 112 | max_stars_repo_head_hexsha stringlengths 40 78 | max_stars_repo_licenses listlengths 1 10 | max_stars_count float64 1 191k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 3 945 | max_issues_repo_name stringlengths 4 113 | max_issues_repo_head_hexsha stringlengths 40 78 | max_issues_repo_licenses listlengths 1 10 | max_issues_count float64 1 116k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 3 945 | max_forks_repo_name stringlengths 4 113 | max_forks_repo_head_hexsha stringlengths 40 78 | max_forks_repo_licenses listlengths 1 10 | max_forks_count float64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 3 1.05M | avg_line_length float64 1 966k | max_line_length int64 1 977k | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
17df8c18b868b83ab4cb729df47470e1fa8bd097 | 1,457 | pas | Pascal | lib/msvcrt.pas | alpet83/alpet-libs | 11d29593a56ae9956d1370220965e839f8c12a4f | [
"Apache-2.0"
] | null | null | null | lib/msvcrt.pas | alpet83/alpet-libs | 11d29593a56ae9956d1370220965e839f8c12a4f | [
"Apache-2.0"
] | null | null | null | lib/msvcrt.pas | alpet83/alpet-libs | 11d29593a56ae9956d1370220965e839f8c12a4f | [
"Apache-2.0"
] | null | null | null | unit Msvcrt;
interface
uses Windows, SysUtils, Classes;
const
MSVCRT_LIB = 'msvcr120.dll';
FT_DIFF = 116444736000000000;
type
__time64_t = UInt64;
__utimbuf64 = record
actime: __time64_t;
modtime: __time64_t;
end;
// set file modification time
function _utime64(filename... | 24.694915 | 126 | 0.735758 |
445a0165c5e0e51fd36c9a3aec3f2599d1b5d39d | 4,979 | pas | Pascal | SieveOfEratosthenes.pas | omonien/sieve-of-eratosthenes-delphi | d0ccd7d4e57be92dff126fd9665f7a15e11fe3db | [
"MIT"
] | null | null | null | SieveOfEratosthenes.pas | omonien/sieve-of-eratosthenes-delphi | d0ccd7d4e57be92dff126fd9665f7a15e11fe3db | [
"MIT"
] | null | null | null | SieveOfEratosthenes.pas | omonien/sieve-of-eratosthenes-delphi | d0ccd7d4e57be92dff126fd9665f7a15e11fe3db | [
"MIT"
] | null | null | null | //
// Copyright (c) Jasper Schellingerhout. All rights reserved.
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
// I kindly request that you notify me if you use this in your software projects.
// Project located at: https://github.com/schellingerhout/sieve... | 28.129944 | 103 | 0.688492 |
bc713f69d057d866182c83669eab502d197c99c3 | 7,771 | pas | Pascal | testcase.pas | rsmaxwell/pyrunner-pascal | ca17fb1a70a1e1e4f77530ad6188208ff5d13747 | [
"Apache-2.0"
] | null | null | null | testcase.pas | rsmaxwell/pyrunner-pascal | ca17fb1a70a1e1e4f77530ad6188208ff5d13747 | [
"Apache-2.0"
] | null | null | null | testcase.pas | rsmaxwell/pyrunner-pascal | ca17fb1a70a1e1e4f77530ad6188208ff5d13747 | [
"Apache-2.0"
] | null | null | null | unit TestCase;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, fpjson, jsonparser, DateUtils, Runner, RunnerLogger, RunnerException;
type
MyTestCase = class(TInterfacedObject, IMyRunnerLogger)
private
client : MyRunner;
procedure log( lines: TStrings );
public
procedure s... | 27.853047 | 94 | 0.48089 |
aaaa22bdab99a45c234ff29fc5e011717bc3ff59 | 285 | pas | Pascal | CAT/tests/06. procedures/binding/bind_1.pas | SkliarOleksandr/NextPascal | 4dc26abba6613f64c0e6b5864b3348711eb9617a | [
"Apache-2.0"
] | 19 | 2018-10-22T23:45:31.000Z | 2021-05-16T00:06:49.000Z | CAT/tests/06. procedures/binding/bind_1.pas | SkliarOleksandr/NextPascal | 4dc26abba6613f64c0e6b5864b3348711eb9617a | [
"Apache-2.0"
] | 1 | 2019-06-01T06:17:08.000Z | 2019-12-28T10:27:42.000Z | CAT/tests/06. procedures/binding/bind_1.pas | SkliarOleksandr/NextPascal | 4dc26abba6613f64c0e6b5864b3348711eb9617a | [
"Apache-2.0"
] | 6 | 2018-08-30T05:16:21.000Z | 2021-05-12T20:25:43.000Z | unit bind_1;
interface
implementation
function Sum(a, b, c: Int32): Int32;
begin
Result := (a + b)*c;
end;
var G: int32;
procedure Test;
begin
var F := bind Sum(a, b, 10);
G := F(1, 2);
end;
initialization
Test();
finalization
Assert(G = 30);
end. | 10.961538 | 36 | 0.578947 |
17c8aa6b8cdd1c615ca0af5d0ef0479433611b15 | 5,918 | pas | Pascal | SensorFusion/Om.Sensor.iOS.pas | atkins126/BoatAttitude | 9ac35b89be61c06284ac4e3b99f6d12ef593eb97 | [
"MIT"
] | 3 | 2020-06-19T09:51:30.000Z | 2020-10-29T00:13:56.000Z | SensorFusion/Om.Sensor.iOS.pas | atkins126/BoatAttitude | 9ac35b89be61c06284ac4e3b99f6d12ef593eb97 | [
"MIT"
] | null | null | null | SensorFusion/Om.Sensor.iOS.pas | atkins126/BoatAttitude | 9ac35b89be61c06284ac4e3b99f6d12ef593eb97 | [
"MIT"
] | 4 | 2020-09-11T15:09:52.000Z | 2020-10-22T00:09:03.000Z | unit Om.Sensor.iOS; // derived from DW.Sensor.Android,
// to bring cross platform functionality to DW.Sensor ( by Dave Nottage )
// code adapted by Omar ago19
interface
uses
System.Sensors, {TCustomMotionSensor,TCustomOrientationSensor}
FMX.Types, {TTimer}
DW.Sensor;
type
TPlatformSensor =... | 30.663212 | 159 | 0.639743 |
17d7a8d346a674fe39cf328f1cdc084ff6b70a8f | 7,397 | pas | Pascal | crypto/shacal/sc_cbc.pas | amikey/delphi-crypto | a79895f25bff69819f354e9bf27c19e2f00fed19 | [
"Unlicense"
] | 6 | 2019-02-15T02:47:02.000Z | 2021-08-02T22:34:34.000Z | crypto/shacal/sc_cbc.pas | amikey/delphi-crypto | a79895f25bff69819f354e9bf27c19e2f00fed19 | [
"Unlicense"
] | null | null | null | crypto/shacal/sc_cbc.pas | amikey/delphi-crypto | a79895f25bff69819f354e9bf27c19e2f00fed19 | [
"Unlicense"
] | 7 | 2020-05-04T21:44:13.000Z | 2021-04-02T12:42:23.000Z | unit SC_CBC;
(*************************************************************************
DESCRIPTION : SHACAL-2 CBC functions
REQUIREMENTS : TP5-7, D1-D7/D9-D10/D12, FPC, VP
EXTERNAL DATA : ---
MEMORY USAGE : ---
DISPLAY MODE : ---
REFERENCES : B.Schneier, Applied Cryptography, 2nd... | 29.007843 | 100 | 0.587671 |
17a8889682ad5c00ae1c820aa6860d494b96da4b | 1,122 | pas | Pascal | Usplash.pas | jcorcko/mitramite | 878375f655875798a0ba33c29a42f773a5ae9adb | [
"MIT"
] | null | null | null | Usplash.pas | jcorcko/mitramite | 878375f655875798a0ba33c29a42f773a5ae9adb | [
"MIT"
] | null | null | null | Usplash.pas | jcorcko/mitramite | 878375f655875798a0ba33c29a42f773a5ae9adb | [
"MIT"
] | null | null | null | unit Usplash;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Objects,
FMX.Effects;
type
TSplashForm = class(TForm)
Rectangle1: TRectangle;
StartupTimer: TTimer;
ShadowEf... | 19.344828 | 82 | 0.706774 |
1773014167e8c19da088e4837e109daf80345767 | 953 | pas | Pascal | network/0019.pas | nickelsworth/swag | 7c21c0da2291fc249b9dc5cfe121a7672a4ffc08 | [
"BSD-2-Clause"
] | 11 | 2015-12-12T05:13:15.000Z | 2020-10-14T13:32:08.000Z | network/0019.pas | nickelsworth/swag | 7c21c0da2291fc249b9dc5cfe121a7672a4ffc08 | [
"BSD-2-Clause"
] | null | null | null | network/0019.pas | nickelsworth/swag | 7c21c0da2291fc249b9dc5cfe121a7672a4ffc08 | [
"BSD-2-Clause"
] | 8 | 2017-05-05T05:24:01.000Z | 2021-07-03T20:30:09.000Z |
{
MB> First - How can I detect if Novell netware is running on a
MB> computer? and if you can tell me that... how can I get the
MB> current version? }
uses dos ;
var Regs : registers ;
ReplyBuffer : array[1..40] of char ;
function IPX_Loaded:boolean;
begin
Regs.AX := $7A00 ;
intr($2F... | 22.162791 | 68 | 0.593914 |
176d2dd8fa18c5ee76bb9bd8aa587c0c1988eb90 | 6,267 | dfm | Pascal | uASMProgress.dfm | agebhar1/sim8008-shared | 3f0b4adfe247936489ca97ad9ae778f9cfef71ee | [
"MIT"
] | null | null | null | uASMProgress.dfm | agebhar1/sim8008-shared | 3f0b4adfe247936489ca97ad9ae778f9cfef71ee | [
"MIT"
] | null | null | null | uASMProgress.dfm | agebhar1/sim8008-shared | 3f0b4adfe247936489ca97ad9ae778f9cfef71ee | [
"MIT"
] | null | null | null | object ASMProgressForm: TASMProgressForm
Left = 292
Top = 289
BorderIcons = []
BorderStyle = bsDialog
Caption = 'Assemblieren'
ClientHeight = 178
ClientWidth = 420
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'... | 23.211111 | 43 | 0.505665 |
174264ffa3a0c9800ac5246d65833ce25f067eb4 | 2,620 | pas | Pascal | Tests/Mock.Indy.HTTPRequestInfo.pas | fschetterer/Delphi-WebMocks | eac1571ddd066449ff16016b6749adecaaa5e483 | [
"Apache-2.0"
] | null | null | null | Tests/Mock.Indy.HTTPRequestInfo.pas | fschetterer/Delphi-WebMocks | eac1571ddd066449ff16016b6749adecaaa5e483 | [
"Apache-2.0"
] | null | null | null | Tests/Mock.Indy.HTTPRequestInfo.pas | fschetterer/Delphi-WebMocks | eac1571ddd066449ff16016b6749adecaaa5e483 | [
"Apache-2.0"
] | null | null | null | {******************************************************************************}
{ }
{ Delphi-WebMocks }
{ ... | 43.666667 | 80 | 0.374427 |
bc00b14da7fdf043880c669ea5fee6e846956245 | 10,273 | pas | Pascal | src/delphi/TLevelUnit.pas | ellotecnologia/log4delphi | 01e56d9a6c0b0edec4cb088657df7188e93f478c | [
"Apache-2.0"
] | 1 | 2021-02-17T01:03:07.000Z | 2021-02-17T01:03:07.000Z | src/delphi/TLevelUnit.pas | ellotecnologia/log4delphi | 01e56d9a6c0b0edec4cb088657df7188e93f478c | [
"Apache-2.0"
] | null | null | null | src/delphi/TLevelUnit.pas | ellotecnologia/log4delphi | 01e56d9a6c0b0edec4cb088657df7188e93f478c | [
"Apache-2.0"
] | 2 | 2019-11-25T06:55:36.000Z | 2020-06-09T15:58:04.000Z | {
Copyright 2005-2006 Log4Delphi Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agree... | 39.664093 | 85 | 0.403582 |
441a1da9ef84fecd374b04522416e43fefde9b67 | 4,362 | pas | Pascal | Scripts/Delphiscript Scripts/PCB/SwapOrRotateComponents/SwapComponentsUnit.pas | spoilsport/Yazgac-Libraries | 276edeca757c524f7b6c04495d07bd41f6a2f691 | [
"MIT"
] | null | null | null | Scripts/Delphiscript Scripts/PCB/SwapOrRotateComponents/SwapComponentsUnit.pas | spoilsport/Yazgac-Libraries | 276edeca757c524f7b6c04495d07bd41f6a2f691 | [
"MIT"
] | null | null | null | Scripts/Delphiscript Scripts/PCB/SwapOrRotateComponents/SwapComponentsUnit.pas | spoilsport/Yazgac-Libraries | 276edeca757c524f7b6c04495d07bd41f6a2f691 | [
"MIT"
] | null | null | null | {..............................................................................}
{ Summary Swaps two similar components or rotate a component. }
{ }
{ A script to ask the user to select two components then ... | 45.4375 | 147 | 0.458964 |
17beba3b2a3c53e9c13a69fd9cf6979c8fbd530a | 6,886 | pas | Pascal | src/libraries/hashlib4pascal/HlpHashResult.pas | O1OOO111/PascalCoin | a1725b674c45ebf380c2fb132454439e58f7119a | [
"MIT"
] | 1 | 2021-06-07T13:20:04.000Z | 2021-06-07T13:20:04.000Z | src/libraries/hashlib4pascal/HlpHashResult.pas | O1OOO111/PascalCoin | a1725b674c45ebf380c2fb132454439e58f7119a | [
"MIT"
] | null | null | null | src/libraries/hashlib4pascal/HlpHashResult.pas | O1OOO111/PascalCoin | a1725b674c45ebf380c2fb132454439e58f7119a | [
"MIT"
] | 1 | 2021-06-02T23:57:38.000Z | 2021-06-02T23:57:38.000Z | unit HlpHashResult;
{$I HashLib.inc}
interface
uses
{$IFDEF HAS_UNITSCOPE}
System.SysUtils,
{$IFDEF DELPHIXE7_UP}
System.NetEncoding,
{$ELSE}
System.Classes,
Soap.EncdDecd,
{$ENDIF DELPHIXE7_UP}
{$ELSE}
SysUtils,
{$IFDEF DELPHI}
Classes,
EncdDecd,
{$ENDIF DELPHI}
{$IFDEF FPC}
base64,
{$ENDIF FPC}
{$... | 24.505338 | 79 | 0.718995 |
afe7f05691f12783252cc7a5a8d4df7078538e61 | 9,205 | pas | Pascal | source/Plugins/API/API_Task.pas | atkins126/CodeImatic.build | 00af106c2e300d57c7cc8bcd81fec442325dfc25 | [
"Apache-2.0"
] | 1 | 2021-03-04T02:11:47.000Z | 2021-03-04T02:11:47.000Z | source/Plugins/API/API_Task.pas | atkins126/CodeImatic.build | 00af106c2e300d57c7cc8bcd81fec442325dfc25 | [
"Apache-2.0"
] | 2 | 2020-03-10T00:00:18.000Z | 2020-03-14T13:16:49.000Z | source/Plugins/API/API_Task.pas | atkins126/CodeImatic.build | 00af106c2e300d57c7cc8bcd81fec442325dfc25 | [
"Apache-2.0"
] | 4 | 2019-12-26T05:41:42.000Z | 2021-03-04T02:11:51.000Z | unit API_Task;
interface
uses Classes, APIBase, SysUtils, NovusWindows, API_Output, Plugin_TaskRunner, uPSRuntime, Project, ProjectTask ;
type
TTaskEvent = procedure of object;
TTaskFailed = class(TPersistent)
protected
fiRetry: Integer;
fbAbort: boolean;
fbSkip: Boolean;
private
public
co... | 21.015982 | 126 | 0.646822 |
17d00b9cd53e2ae7e18e673ca92487d01f71aa64 | 299 | pas | Pascal | Source/VCL/Graphics.pas | atkins126/DelphiRTL | f0ea29598025346577870cc9a27338592c4dac1b | [
"BSD-2-Clause"
] | 40 | 2016-09-28T21:34:23.000Z | 2021-12-25T23:02:09.000Z | Source/VCL/Graphics.pas | anomous/DelphiRTL | 0bd427025b479a1356da846b7788e3ba3bc9a3c8 | [
"BSD-2-Clause"
] | 11 | 2017-08-30T13:03:00.000Z | 2020-08-25T13:46:05.000Z | Source/VCL/Graphics.pas | anomous/DelphiRTL | 0bd427025b479a1356da846b7788e3ba3bc9a3c8 | [
"BSD-2-Clause"
] | 15 | 2016-11-24T05:52:39.000Z | 2021-11-11T00:50:12.000Z | namespace RemObjects.Elements.RTL.Delphi.VCL;
{$IF (ISLAND AND (WEBASSEMBLY OR WINDOWS) AND NOT DARWIN) OR ECHOESWPF OR (MACOS AND NOT (ISLAND AND DARWIN))}
interface
{$GLOBALS ON}
uses
RemObjects.Elements.RTL.Delphi;
const clWindowText = Integer($FF000008);
implementation
{$ENDIF}
end. | 15.736842 | 110 | 0.749164 |
17c7b615e6849a48d202bde81a0e96efb80a1db1 | 15,719 | pas | Pascal | ideexpert/DMVC.Expert.CodeGen.Templates.pas | segovoni/delphimvcframework | f48fddecbf31b9bed4456bd44a9aaba813cfaa7f | [
"Apache-2.0"
] | null | null | null | ideexpert/DMVC.Expert.CodeGen.Templates.pas | segovoni/delphimvcframework | f48fddecbf31b9bed4456bd44a9aaba813cfaa7f | [
"Apache-2.0"
] | null | null | null | ideexpert/DMVC.Expert.CodeGen.Templates.pas | segovoni/delphimvcframework | f48fddecbf31b9bed4456bd44a9aaba813cfaa7f | [
"Apache-2.0"
] | null | null | null | // ***************************************************************************
//
// Delphi MVC Framework
//
// Copyright (c) 2010-2019 Daniele Teti and the DMVCFramework Team
//
// https://github.com/danieleteti/delphimvcframework
//
// ***************************************************************************
//
// ... | 42.483784 | 152 | 0.606018 |
44c409ad56ba9b0105131ea77b4d87bcfb18a728 | 2,647 | pas | Pascal | InternalPlugins/TextProcessors/AGTH/AGTHTextProcessor.pas | Tsukihime/Easy-Text-Hooker | 18196bf39083f284f40fc08a56a8140674545c8a | [
"Unlicense"
] | 12 | 2015-07-13T15:22:55.000Z | 2021-06-22T04:04:25.000Z | InternalPlugins/TextProcessors/AGTH/AGTHTextProcessor.pas | Tsukihime/Easy-Text-Hooker | 18196bf39083f284f40fc08a56a8140674545c8a | [
"Unlicense"
] | null | null | null | InternalPlugins/TextProcessors/AGTH/AGTHTextProcessor.pas | Tsukihime/Easy-Text-Hooker | 18196bf39083f284f40fc08a56a8140674545c8a | [
"Unlicense"
] | 6 | 2015-02-21T03:23:36.000Z | 2020-10-30T06:57:55.000Z | unit AGTHTextProcessor;
interface
uses
PluginAPI_TLB,
AGTHServer,
AGTHUI;
type
TAGTHTextProcessor = class(TInterfacedObject, ITextEvents, ITextProcessor)
protected
// ITextProcessor
procedure ShowSettingsWindow; safecall;
procedure HideSettingsWindow; safecall;
procedure SetTextReceiver(con... | 22.243697 | 79 | 0.772195 |
17f06f39b8b4ef0e913c702553ccf6b1f166abbb | 630 | pas | Pascal | FirstQuarter/informatics/exercices/vectores/09/vectores.pas | AndresNakanishi/CAECE-LESYN | 3537a198b4392b259d12cb8c6214f1f618a7ca50 | [
"MIT"
] | null | null | null | FirstQuarter/informatics/exercices/vectores/09/vectores.pas | AndresNakanishi/CAECE-LESYN | 3537a198b4392b259d12cb8c6214f1f618a7ca50 | [
"MIT"
] | null | null | null | FirstQuarter/informatics/exercices/vectores/09/vectores.pas | AndresNakanishi/CAECE-LESYN | 3537a198b4392b259d12cb8c6214f1f618a7ca50 | [
"MIT"
] | null | null | null | PROGRAM ascendente;
TYPE
vector = array[1..100] of integer;
VAR
v: vector;
n: byte;
PROCEDURE LeerArchivo(var v:vector;var n:byte);
VAR arch: text;
BEGIN
n := 0;
assign(arch, 'vector.txt');
reset(arch);
while not eoln(arch) do
begin
n := n + 1;
read(arch, v[n]);
end;
close(arch);
END;
FUNCTION Verifica... | 15.75 | 55 | 0.647619 |
aa1d53a21a7b3fdb8efbcd63197cdd31bc79ec28 | 328 | dpr | Pascal | DDCS/DDCSFormBuilder/DDCSFormBuilder.dpr | Veratics/Maternity-Tracker | bc28178d832960ca2f543b0667c075e33f45a93e | [
"Apache-2.0"
] | 2 | 2016-05-20T22:11:42.000Z | 2021-02-21T17:31:05.000Z | DDCS/DDCSFormBuilder/DDCSFormBuilder.dpr | Veratics/Maternity-Tracker | bc28178d832960ca2f543b0667c075e33f45a93e | [
"Apache-2.0"
] | 43 | 2015-05-15T22:21:21.000Z | 2017-01-06T17:39:09.000Z | DDCS/DDCSFormBuilder/DDCSFormBuilder.dpr | VHAINNOVATIONS/Maternity-Tracker | fca505195c458ca1e5f08fbfe40f7303cd1c25bb | [
"Apache-2.0"
] | 11 | 2015-05-20T15:15:40.000Z | 2017-09-05T13:43:15.000Z | library DDCSFormBuilder;
uses
ComServ,
DDCSFormBuilder_TLB in 'DDCSFormBuilder_TLB.pas',
CPRSChart_TLB in 'CPRSChart_TLB.pas',
uMain in 'uMain.pas' {DDCSCPRSDefault: CoClass};
exports
DllGetClassObject,
DllCanUnloadNow,
DllRegisterServer,
DllUnregisterServer,
DllInstall;
{$R *.TLB}
{$R *.RES}
beg... | 14.909091 | 51 | 0.746951 |
aab0432449ec95f2b2b8742aade258a4df200017 | 9,243 | pas | Pascal | Version7/Source/CMD/CmdForms.pas | PMeira/electricdss-src | fab07b5584090556b003ef037feb25ec2de3b7c9 | [
"BSD-3-Clause"
] | 1 | 2018-10-10T01:38:14.000Z | 2018-10-10T01:38:14.000Z | Version7/Source/CMD/CmdForms.pas | PMeira/electricdss-src | fab07b5584090556b003ef037feb25ec2de3b7c9 | [
"BSD-3-Clause"
] | 7 | 2018-08-15T04:00:26.000Z | 2018-10-25T10:15:59.000Z | Version7/Source/CMD/CmdForms.pas | PMeira/electricdss-src | fab07b5584090556b003ef037feb25ec2de3b7c9 | [
"BSD-3-Clause"
] | null | null | null | unit CmdForms;
{
----------------------------------------------------------
Copyright (c) 2008-2015, Electric Power Research Institute, Inc.
All rights reserved.
----------------------------------------------------------
}
{
08/17/2016 Created from OpenDSS
----------------------------------------... | 27.508929 | 116 | 0.636482 |
aaec6d34a7c63683f8c6feab6919634971bbf9ca | 10,288 | dfm | Pascal | src/CanTxForm.dfm | MHS-Elektronik/CANcool | baf10b1de1d97d995ed542ae1f966dcb60d068ef | [
"MIT"
] | 38 | 2016-03-25T19:04:21.000Z | 2022-03-02T10:57:13.000Z | src/CanTxForm.dfm | MHS-Elektronik/CANcool | baf10b1de1d97d995ed542ae1f966dcb60d068ef | [
"MIT"
] | null | null | null | src/CanTxForm.dfm | MHS-Elektronik/CANcool | baf10b1de1d97d995ed542ae1f966dcb60d068ef | [
"MIT"
] | 12 | 2016-08-29T22:18:33.000Z | 2021-11-07T22:43:14.000Z | object CanTxWin: TCanTxWin
Left = 221
Top = 1590
Width = 1053
Height = 314
BorderIcons = [biSystemMenu, biMinimize]
Caption = 'Senden'
Color = clBtnFace
Constraints.MinHeight = 160
Constraints.MinWidth = 570
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
... | 23.119101 | 94 | 0.533923 |
17c451d77ef979f1b7e2bb201b7d7ec1a2d8f7e9 | 1,569 | pas | Pascal | src/Error/Factories/AjaxErrorHandlerFactoryImpl.pas | atkins126/fano | 472679437cb42637b0527dda8255ec52a3e1e953 | [
"MIT"
] | null | null | null | src/Error/Factories/AjaxErrorHandlerFactoryImpl.pas | atkins126/fano | 472679437cb42637b0527dda8255ec52a3e1e953 | [
"MIT"
] | null | null | null | src/Error/Factories/AjaxErrorHandlerFactoryImpl.pas | atkins126/fano | 472679437cb42637b0527dda8255ec52a3e1e953 | [
"MIT"
] | null | null | null | {*!
* Fano Web Framework (https://fanoframework.github.io)
*
* @link https://github.com/fanoframework/fano
* @copyright Copyright (c) 2018 - 2020 Zamrony P. Juhara
* @license https://github.com/fanoframework/fano/blob/master/LICENSE (MIT)
*}
unit AjaxErrorHandlerFactoryImpl;
interface
{$MODE OBJFPC}
us... | 28.527273 | 98 | 0.494583 |
aa6c02362de4481ccbfb703f74a97f9c1deb3a63 | 422,100 | dfm | Pascal | FX ownCloud Client/Wersja 0.7.0/Okna/AOknoGl_frm.dfm | CloudDelphi/ownCLOUD-Client | 04ca6aec4a6ad8656a2a801895b1fb2b78326ad5 | [
"MIT"
] | 2 | 2020-07-19T12:07:49.000Z | 2020-08-29T03:04:50.000Z | FX ownCloud Client/Wersja 0.7.0/Okna/AOknoGl_frm.dfm | CloudDelphi/ownCLOUD-Client | 04ca6aec4a6ad8656a2a801895b1fb2b78326ad5 | [
"MIT"
] | null | null | null | FX ownCloud Client/Wersja 0.7.0/Okna/AOknoGl_frm.dfm | CloudDelphi/ownCLOUD-Client | 04ca6aec4a6ad8656a2a801895b1fb2b78326ad5 | [
"MIT"
] | 1 | 2020-08-29T03:04:51.000Z | 2020-08-29T03:04:51.000Z | object AOknoGl: TAOknoGl
Left = 0
Top = 0
Caption = 'ownCLOUD Client'
ClientHeight = 594
ClientWidth = 1004
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poScreenC... | 64.699571 | 78 | 0.855548 |
bcecbfe8ebb5670eaf884e3cfb7d48840b511213 | 1,388 | dfm | Pascal | Post/pp_2.dfm | zag82/magnum3d | 7ce784b8579b1aa5a1fc3e6dc8b1b1a4eb79d48d | [
"MIT"
] | null | null | null | Post/pp_2.dfm | zag82/magnum3d | 7ce784b8579b1aa5a1fc3e6dc8b1b1a4eb79d48d | [
"MIT"
] | null | null | null | Post/pp_2.dfm | zag82/magnum3d | 7ce784b8579b1aa5a1fc3e6dc8b1b1a4eb79d48d | [
"MIT"
] | null | null | null | object fmPostProcessor2: TfmPostProcessor2
Left = 197
Top = 118
Width = 544
Height = 375
Caption = 'PostProcessor - 2D'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
FormStyle = fsMDIChild
O... | 23.133333 | 62 | 0.626081 |
1749bc5994feae09f7f97b179cafb49dd49d91a3 | 992 | pas | Pascal | Projects/CL.Ag5/Source/CL.Ag5Client/Financeiro/Relatorios/UFIN_FluxoCaixaRealizadoDatamodule.pas | iclinicadoleite/controle-ag5 | 2e315c4a7c9bcb841a8d2f2390ae9d7c2c2cb721 | [
"Apache-2.0"
] | 1 | 2020-05-07T07:51:27.000Z | 2020-05-07T07:51:27.000Z | Projects/CL.Ag5/Source/CL.Ag5Client/Financeiro/Relatorios/UFIN_FluxoCaixaRealizadoDatamodule.pas | iclinicadoleite/controle-ag5 | 2e315c4a7c9bcb841a8d2f2390ae9d7c2c2cb721 | [
"Apache-2.0"
] | null | null | null | Projects/CL.Ag5/Source/CL.Ag5Client/Financeiro/Relatorios/UFIN_FluxoCaixaRealizadoDatamodule.pas | iclinicadoleite/controle-ag5 | 2e315c4a7c9bcb841a8d2f2390ae9d7c2c2cb721 | [
"Apache-2.0"
] | 3 | 2020-02-17T18:01:52.000Z | 2020-05-07T07:51:28.000Z | unit UFIN_FluxoCaixaRealizadoDatamodule;
interface
uses
System.SysUtils, UdtmSYS_BASE, System.Classes, Datasnap.Provider, Data.FMTBcd, Data.DB, Tc.Data.DB.Helpers, Data.SqlExpr, DataSnap.DBClient, Tc.DataSnap.DBClient.Helpers ;
type
TFIN_FluxoCaixaRealizadoDatamodule = class(T_dtmBASE)
private
{ Private de... | 21.106383 | 173 | 0.766129 |
bcbeb8deb22e8df24128bc65fe9b4c743eace1c8 | 6,940 | pas | Pascal | Codigo_Telas/UnitLocFornec.pas | MDsolucoesTI/AutomaCafeteria | 4be9f94226dacbe7178244d2eda9b42710040635 | [
"MIT"
] | null | null | null | Codigo_Telas/UnitLocFornec.pas | MDsolucoesTI/AutomaCafeteria | 4be9f94226dacbe7178244d2eda9b42710040635 | [
"MIT"
] | null | null | null | Codigo_Telas/UnitLocFornec.pas | MDsolucoesTI/AutomaCafeteria | 4be9f94226dacbe7178244d2eda9b42710040635 | [
"MIT"
] | 1 | 2021-12-03T08:12:18.000Z | 2021-12-03T08:12:18.000Z | //////////////////////////////////////////////////////////////////////////
// Cria��o...........: 05-02-2001
// Ultima modifica��o: 05-07-2007
// Sistema...........: Olimpo Cafe - Automa��o de Cafeterias
// Analistas.........: Marilene Esquiavoni & Denny Paulista Azevedo Filho
// Desenvolvedores...: Marilene Esqui... | 28.677686 | 99 | 0.668588 |
aa14606675f23e466d9206b742ddc60bedb79065 | 421 | pas | Pascal | dkspreadsheet.pas | DmitriyKornilov/DKSpreadSheet | e608002f351d26d9570627adce11abb894e071aa | [
"MIT"
] | null | null | null | dkspreadsheet.pas | DmitriyKornilov/DKSpreadSheet | e608002f351d26d9570627adce11abb894e071aa | [
"MIT"
] | null | null | null | dkspreadsheet.pas | DmitriyKornilov/DKSpreadSheet | e608002f351d26d9570627adce11abb894e071aa | [
"MIT"
] | null | null | null | { This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit DKSpreadSheet;
{$warn 5023 off : no warning about unused units}
interface
uses
DK_SheetConst, DK_SheetExporter, DK_SheetWriter, DK_SheetUtils,
LazarusPackageIntf;
implementation... | 18.304348 | 66 | 0.783848 |
179f9a90ccf4ae43eac415f3e95115520499e355 | 16,412 | pas | Pascal | Texture Packager/optipng-0.6.4/lib/zlib/contrib/delphi/ZLib.pas | kiefferbros/specter | 66075b974887d59f61bcd0eef0f2a1203c8a50ab | [
"MIT"
] | null | null | null | Texture Packager/optipng-0.6.4/lib/zlib/contrib/delphi/ZLib.pas | kiefferbros/specter | 66075b974887d59f61bcd0eef0f2a1203c8a50ab | [
"MIT"
] | null | null | null | Texture Packager/optipng-0.6.4/lib/zlib/contrib/delphi/ZLib.pas | kiefferbros/specter | 66075b974887d59f61bcd0eef0f2a1203c8a50ab | [
"MIT"
] | null | null | null | {*******************************************************}
{ }
{ Borland Delphi Supplemental Components }
{ ZLIB Data Compression Interface Unit }
{ }
{ Copyright (c) 1997,99 ... | 29.412186 | 88 | 0.689252 |
1739392f691de30c683177232e16eb72054565fc | 247 | dpr | Pascal | samples/Samples.dpr | claudneysessa/Horse-XSuperObjects | 77003c5b573865bfdd1a16535a0e044f128fd6fc | [
"MIT"
] | 5 | 2021-06-01T04:14:56.000Z | 2022-03-12T02:20:37.000Z | samples/Samples.dpr | claudneysessa/Horse-XSuperObjects | 77003c5b573865bfdd1a16535a0e044f128fd6fc | [
"MIT"
] | null | null | null | samples/Samples.dpr | claudneysessa/Horse-XSuperObjects | 77003c5b573865bfdd1a16535a0e044f128fd6fc | [
"MIT"
] | null | null | null | program Samples;
uses
Vcl.Forms,
ExemploXSUperObject in 'ExemploXSUperObject.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
| 16.466667 | 59 | 0.748988 |
17119f61c54e2db70f881b90208cab3557303b6c | 473 | pas | Pascal | samples/SimpleSample/frmmain.pas | getavares/pascal-data-layer | eb4650c7e866690a9604d18fc6c7c1cf8964d3f9 | [
"MIT"
] | null | null | null | samples/SimpleSample/frmmain.pas | getavares/pascal-data-layer | eb4650c7e866690a9604d18fc6c7c1cf8964d3f9 | [
"MIT"
] | null | null | null | samples/SimpleSample/frmmain.pas | getavares/pascal-data-layer | eb4650c7e866690a9604d18fc6c7c1cf8964d3f9 | [
"MIT"
] | null | null | null | unit frmMain;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls,
PDL.Connection;
type
{ TForm1 }
TForm1 = class(TForm)
procedure Button1Click(Sender: TObject);
private
FConnection: TPDLConnection;
public
end;
var
Form1: TForm1;
implementa... | 11.825 | 66 | 0.714588 |
bc8481213b3013f6a7423db9d0b1150073bc3bfd | 5 | pas | Pascal | Test/FailureScripts/conditionals4.pas | skolkman/dwscript | b9f99d4b8187defac3f3713e2ae0f7b83b63d516 | [
"Condor-1.1"
] | 79 | 2015-03-18T10:46:13.000Z | 2022-03-17T18:05:11.000Z | Test/FailureScripts/conditionals4.pas | skolkman/dwscript | b9f99d4b8187defac3f3713e2ae0f7b83b63d516 | [
"Condor-1.1"
] | 6 | 2016-03-29T14:39:00.000Z | 2020-09-14T10:04:14.000Z | Test/FailureScripts/conditionals4.pas | skolkman/dwscript | b9f99d4b8187defac3f3713e2ae0f7b83b63d516 | [
"Condor-1.1"
] | 25 | 2016-05-04T13:11:38.000Z | 2021-09-29T13:34:31.000Z | {$IFi | 5 | 5 | 0.6 |
f3327f04b3f661e1a7103d609eb8e1d45e950b6f | 210,516 | pas | Pascal | OtlParallel.pas | jpluimers/OmniThreadLibrary | 69b34d7cd5bc01a2fdc9de81fd96550382c6e595 | [
"BSD-3-Clause"
] | null | null | null | OtlParallel.pas | jpluimers/OmniThreadLibrary | 69b34d7cd5bc01a2fdc9de81fd96550382c6e595 | [
"BSD-3-Clause"
] | null | null | null | OtlParallel.pas | jpluimers/OmniThreadLibrary | 69b34d7cd5bc01a2fdc9de81fd96550382c6e595 | [
"BSD-3-Clause"
] | null | null | null | ///<summary>High-level parallel execution management.
/// Part of the OmniThreadLibrary project. Requires Delphi 2009 or newer.</summary>
///<author>Primoz Gabrijelcic</author>
///<license>
///This software is distributed under the BSD license.
///
///Copyright (c) 2019 Primoz Gabrijelcic
///All rights reserv... | 37.639192 | 191 | 0.725209 |
bc9aa8a00d5e1dea133a3d7368b7532b37cc273b | 14,253 | pas | Pascal | client/Sound.pas | prplz/soldat | 7b123618eadbd20a314ea4a389e8391cdd600725 | [
"MIT"
] | 2 | 2020-05-26T16:44:23.000Z | 2020-10-08T16:58:11.000Z | client/Sound.pas | Shoozza/soldat | 7b123618eadbd20a314ea4a389e8391cdd600725 | [
"MIT"
] | null | null | null | client/Sound.pas | Shoozza/soldat | 7b123618eadbd20a314ea4a389e8391cdd600725 | [
"MIT"
] | 2 | 2021-01-11T17:49:23.000Z | 2021-01-19T19:57:21.000Z | {*******************************************************}
{ }
{ Sound Unit for SOLDAT }
{ }
{ Copyright (c) 2002-2003 Michal Marcinkowski }
{ ... | 24.405822 | 101 | 0.642742 |
aa5e6af3f58c711f2fa08eeae0bd33189119fc62 | 201,438 | pas | Pascal | src/regexpr.pas | mvancanneyt/TRegExpr | 85b20bde027d0759ad93a6a745b0fc5c8c7a1b58 | [
"MIT"
] | null | null | null | src/regexpr.pas | mvancanneyt/TRegExpr | 85b20bde027d0759ad93a6a745b0fc5c8c7a1b58 | [
"MIT"
] | null | null | null | src/regexpr.pas | mvancanneyt/TRegExpr | 85b20bde027d0759ad93a6a745b0fc5c8c7a1b58 | [
"MIT"
] | null | null | null | unit regexpr;
{
TRegExpr class library
Delphi Regular Expressions
Copyright (c) 1999-2004 Andrey V. Sorokin, St.Petersburg, Russia
You can choose to use this Pascal unit in one of the two following licenses:
Option 1>
You may use this software in any kind of development,
including comercial, redistr... | 29.428488 | 137 | 0.573551 |
17e73164e5fd6f4cf73c160bd218b3e37aebdb5a | 889 | pas | Pascal | src/finalizers/finalizers.pas | Warfley/LazBaseUtils | 1063a6d243705f35acf03679de5e9d542b7810ca | [
"BSD-2-Clause"
] | 4 | 2022-03-26T17:57:16.000Z | 2022-03-27T10:24:44.000Z | src/finalizers/finalizers.pas | Warfley/ObjPasUtils | 1063a6d243705f35acf03679de5e9d542b7810ca | [
"BSD-2-Clause"
] | 1 | 2022-03-27T11:25:38.000Z | 2022-03-27T13:54:07.000Z | src/finalizers/finalizers.pas | Warfley/LazBaseUtils | 1063a6d243705f35acf03679de5e9d542b7810ca | [
"BSD-2-Clause"
] | null | null | null | unit finalizers;
{$mode ObjFPC}{$H+}
{$ModeSwitch advancedrecords}
interface
uses
Classes, SysUtils;
type
{ TClassFinalizer }
generic TClassFinalizer<T> = record
class procedure Finalize(var AInstance: T); static; inline;
end;
{ TObjectFinalizer }
generic TObjectFinalizer<T> = record
class p... | 15.875 | 63 | 0.736783 |
17eab1a8e67f5b66c67950d916ba261c690286b2 | 912 | pas | Pascal | src/Core/Contracts/RunnableIntf.pas | atkins126/fano | 472679437cb42637b0527dda8255ec52a3e1e953 | [
"MIT"
] | null | null | null | src/Core/Contracts/RunnableIntf.pas | atkins126/fano | 472679437cb42637b0527dda8255ec52a3e1e953 | [
"MIT"
] | null | null | null | src/Core/Contracts/RunnableIntf.pas | atkins126/fano | 472679437cb42637b0527dda8255ec52a3e1e953 | [
"MIT"
] | null | null | null | {*!
* Fano Web Framework (https://fanoframework.github.io)
*
* @link https://github.com/fanoframework/fano
* @copyright Copyright (c) 2018 - 2020 Zamrony P. Juhara
* @license https://github.com/fanoframework/fano/blob/master/LICENSE (MIT)
*}
unit RunnableIntf;
interface
{$MODE OBJFPC}
type
(*!-----... | 26.057143 | 77 | 0.438596 |
aac0ca9b405be8ae25ac56169e0e7690929104a7 | 288 | dpr | Pascal | Components/D24/Prj_test.dpr | joecare99/Public | 9eee060fbdd32bab33cf65044602976ac83f4b83 | [
"MIT"
] | 11 | 2017-06-17T05:13:45.000Z | 2021-07-11T13:18:48.000Z | Components/D24/Prj_test.dpr | joecare99/Public | 9eee060fbdd32bab33cf65044602976ac83f4b83 | [
"MIT"
] | 2 | 2019-03-05T12:52:40.000Z | 2021-12-03T12:34:26.000Z | Components/D24/Prj_test.dpr | joecare99/Public | 9eee060fbdd32bab33cf65044602976ac83f4b83 | [
"MIT"
] | 6 | 2017-09-07T09:10:09.000Z | 2022-02-19T20:19:58.000Z | program Prj_test;
uses
Forms,
Frm_test in '..\Test\Frm_test.pas' {Form1},
Unt_FileProcs in '..\Unt_FileProcs.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
| 18 | 46 | 0.680556 |
aadf917629f84d7e9f0872781be098846cc13627 | 9,418 | dfm | Pascal | ssEnt/ssServer/Reg.dfm | kadavris/ok-sklad | f9cd84be7bf984104d9af93d83c0719f2d5668c5 | [
"MIT"
] | 1 | 2016-04-04T18:11:56.000Z | 2016-04-04T18:11:56.000Z | ssEnt/ssServer/Reg.dfm | kadavris/ok-sklad | f9cd84be7bf984104d9af93d83c0719f2d5668c5 | [
"MIT"
] | null | null | null | ssEnt/ssServer/Reg.dfm | kadavris/ok-sklad | f9cd84be7bf984104d9af93d83c0719f2d5668c5 | [
"MIT"
] | 5 | 2016-02-15T02:08:05.000Z | 2021-04-05T08:57:58.000Z | object frmReg: TfrmReg
Left = 558
Top = 233
Width = 490
Height = 432
Caption = #1054#1050'-'#1057#1077#1088#1074#1077#1088': '#1056#1077#1075#1080#1089#1090#1088#1072#1094#1080#1103' '#1087#1088#1086#1075#1088#1072#1084#1084#1099
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWi... | 36.503876 | 313 | 0.690486 |
17a1c958fbbfab58d6e82f6e132ee90bd3a9c502 | 400 | lpr | Pascal | GVOnlineQuoteHelper.lpr | gvonline/gvo_quote | 3d01b64b0606047ef3e39ca4910f309aa25f55d6 | [
"MIT"
] | 3 | 2019-01-20T11:00:05.000Z | 2021-05-29T17:40:34.000Z | GVOnlineQuoteHelper.lpr | gvonline/gvo_quote | 3d01b64b0606047ef3e39ca4910f309aa25f55d6 | [
"MIT"
] | null | null | null | GVOnlineQuoteHelper.lpr | gvonline/gvo_quote | 3d01b64b0606047ef3e39ca4910f309aa25f55d6 | [
"MIT"
] | null | null | null | program GVOnlineQuoteHelper;
uses
Interfaces, Forms, Windows,
main in 'main.pas' {FormQuote},
gamestate in 'gamestate.pas',
request in 'request.pas';
{$R *.res}
begin
CreateMutex(nil, true, '547F8B98-116B-41FC-A858-1CB9DDC752BF');
if GetLastError = ERROR_ALREADY_EXISTS then
exit;
Application.Initi... | 20 | 65 | 0.7375 |
17b1baeb1c57c100b8ad0a6f051680e29533cf32 | 5,328 | dfm | Pascal | gerber_import.dfm | frankkaktus/GRBLize | d9874a8072989fc28658d022e7dca7acfa087a39 | [
"Linux-OpenIB"
] | null | null | null | gerber_import.dfm | frankkaktus/GRBLize | d9874a8072989fc28658d022e7dca7acfa087a39 | [
"Linux-OpenIB"
] | null | null | null | gerber_import.dfm | frankkaktus/GRBLize | d9874a8072989fc28658d022e7dca7acfa087a39 | [
"Linux-OpenIB"
] | null | null | null | object FormGerber: TFormGerber
Left = 227
Top = 108
BorderIcons = [biSystemMenu]
BorderStyle = bsSizeToolWin
BorderWidth = 4
Caption = 'Convert Gerber to GCode'
ClientHeight = 519
ClientWidth = 731
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Fon... | 22.386555 | 74 | 0.61524 |
44fb12995a640644a67f8adbcde9d48e429a5c3a | 19,592 | pas | Pascal | pxl/Source/PXL.Canvas.DX9.pas | randydom/commonx | 2315f1acf41167bd77ba4d040b3f5b15a5c5b81a | [
"MIT"
] | 48 | 2018-11-19T22:13:00.000Z | 2021-11-02T17:25:41.000Z | pxl/Source/PXL.Canvas.DX9.pas | randydom/commonx | 2315f1acf41167bd77ba4d040b3f5b15a5c5b81a | [
"MIT"
] | 6 | 2018-11-24T17:15:29.000Z | 2019-05-15T14:59:56.000Z | pxl/Source/PXL.Canvas.DX9.pas | adaloveless/commonx | ed37b239e925119c7ceb3ac7949eefb0259c7f77 | [
"MIT"
] | 12 | 2018-11-20T15:15:44.000Z | 2021-09-14T10:12:43.000Z | unit PXL.Canvas.DX9;
{
This file is part of Asphyre Framework, also known as Pascal eXtended Library (PXL).
Copyright (c) 2000 - 2015 Yuriy Kotsarenko
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
Public License as published by the Free Softw... | 29.068249 | 147 | 0.743569 |
1714cb8b88eca1c939aafb3d061122e321af234a | 548 | dpr | Pascal | ABM/ImpuestoServicio/Project/ImpuestoServicio.dpr | Civeloo/GeN-XE7 | 638b59def20424955972a568817d012df4cf2cde | [
"Apache-2.0"
] | null | null | null | ABM/ImpuestoServicio/Project/ImpuestoServicio.dpr | Civeloo/GeN-XE7 | 638b59def20424955972a568817d012df4cf2cde | [
"Apache-2.0"
] | null | null | null | ABM/ImpuestoServicio/Project/ImpuestoServicio.dpr | Civeloo/GeN-XE7 | 638b59def20424955972a568817d012df4cf2cde | [
"Apache-2.0"
] | null | null | null | program ImpuestoServicio;
uses
Forms,
ImpuestosServicios in '..\Form\ImpuestosServicios.pas' {ImpuestosServiciosFrom},
DataModule in '..\..\..\DataModule\DataModule.pas' {DM: TDataModule},
BuscarImpuestosServicios in '..\..\..\Buscar\ImpuestoServicio\Form\BuscarImpuestosServicios.pas' {BuscarImpuestosServicios... | 30.444444 | 130 | 0.773723 |
17bc91d09303753d21df7a734546df54275512fb | 1,822 | pas | Pascal | example/map_bench/hashlist_bench.pas | avk959/LazGenerics | e6ff772baa97e80f5f527a887aebadae51229def | [
"Apache-2.0"
] | 76 | 2018-06-20T07:36:46.000Z | 2022-03-17T19:19:46.000Z | example/map_bench/hashlist_bench.pas | avk959/LazGenerics | e6ff772baa97e80f5f527a887aebadae51229def | [
"Apache-2.0"
] | 6 | 2019-02-04T10:09:49.000Z | 2022-03-10T07:54:41.000Z | example/map_bench/hashlist_bench.pas | avk959/LazGenerics | e6ff772baa97e80f5f527a887aebadae51229def | [
"Apache-2.0"
] | 13 | 2019-11-15T10:54:17.000Z | 2022-01-02T15:13:35.000Z | unit hashlist_bench;
{$mode objfpc}{$H+}
interface
uses
SysUtils, DateUtils, contnrs, LGUtils, LGArrayHelpers, bench_util;
procedure RunHashList(aSeed, aSize, aInterval: Integer; aBenchBy: TBenchBy);
implementation
{$B-}{$coperators on}{$macro on}
{$I RunBenchBody.inc}
type
TMapEntry = specialize TGMapE... | 26.028571 | 88 | 0.741493 |
17c1c76e6e321f9c24f5074613166d899f371163 | 13,006 | pas | Pascal | frameservertaskunit.pas | DenisDx/EmerAPI_KeyKeeper | c6921710413871ca039e5bebea0877aceb9a8b74 | [
"MIT"
] | 2 | 2019-02-05T18:34:05.000Z | 2019-04-14T13:52:44.000Z | frameservertaskunit.pas | DenisDx/EmerAPI_KeyKeeper | c6921710413871ca039e5bebea0877aceb9a8b74 | [
"MIT"
] | null | null | null | frameservertaskunit.pas | DenisDx/EmerAPI_KeyKeeper | c6921710413871ca039e5bebea0877aceb9a8b74 | [
"MIT"
] | 2 | 2019-04-10T21:23:42.000Z | 2020-12-11T20:59:13.000Z | unit FrameServerTaskUnit;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, ExtCtrls, StdCtrls, Buttons
,EmerAPIServerTasksUnit;
type
{ TFrameServerTask }
TFrameServerTask = class(TFrame)
bDelete: TBitBtn;
bExecute: TBitBtn;
bDetails: TBitBtn;
chDebug: TCheck... | 30.38785 | 169 | 0.711825 |
f35f7d9ac96b347de28c4f690e9cf750e8b907b6 | 141,173 | pas | Pascal | library/cda/cda_narrative.pas | grahamegrieve/fhirserver | 28f69977bde75490adac663e31a3dd77bc016f7c | [
"BSD-3-Clause"
] | 132 | 2015-02-02T00:22:40.000Z | 2021-08-11T12:08:08.000Z | library/cda/cda_narrative.pas | grahamegrieve/fhirserver | 28f69977bde75490adac663e31a3dd77bc016f7c | [
"BSD-3-Clause"
] | 113 | 2015-03-20T01:55:20.000Z | 2021-10-08T16:15:28.000Z | library/cda/cda_narrative.pas | grahamegrieve/fhirserver | 28f69977bde75490adac663e31a3dd77bc016f7c | [
"BSD-3-Clause"
] | 49 | 2015-04-11T14:59:43.000Z | 2021-03-30T10:29:18.000Z | Unit cda_narrative;
{
Copyright (c) 2011+, Health Intersections Pty Ltd (http://www.healthintersections.com.au)
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source c... | 27.50302 | 195 | 0.71027 |
179aa4028a51a1369667a17fa60e3e6c47338bc7 | 3,907 | pas | Pascal | frmUIMain.pas | gkoehn2020/ThinfinityScreenshotByHTML2Canvas | 63ac43935deb0afb225d5108aaf55260fd578b92 | [
"Unlicense"
] | null | null | null | frmUIMain.pas | gkoehn2020/ThinfinityScreenshotByHTML2Canvas | 63ac43935deb0afb225d5108aaf55260fd578b92 | [
"Unlicense"
] | null | null | null | frmUIMain.pas | gkoehn2020/ThinfinityScreenshotByHTML2Canvas | 63ac43935deb0afb225d5108aaf55260fd578b92 | [
"Unlicense"
] | null | null | null | unit frmUIMain;
{$WARN SYMBOL_PLATFORM OFF}
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, VirtualUI_SDK,
Vcl.ExtCtrls;
type
TUIMain = class(TForm)
btnScreenshot: TButton;
GroupBox1: TG... | 25.703947 | 98 | 0.660609 |
17e561ad039e911d9ecfb43b6024022aec2663f1 | 1,420 | pas | Pascal | src/Lock/Terasoft_git.Framework.Lock.pas | Terasoft-git/MultiConfig | 291e1a1eb6151c02a12249bb99747e45c5054086 | [
"MIT"
] | 1 | 2020-08-01T13:45:23.000Z | 2020-08-01T13:45:23.000Z | src/Lock/Terasoft_git.Framework.Lock.pas | Terasoft-git/MultiConfig | 291e1a1eb6151c02a12249bb99747e45c5054086 | [
"MIT"
] | null | null | null | src/Lock/Terasoft_git.Framework.Lock.pas | Terasoft-git/MultiConfig | 291e1a1eb6151c02a12249bb99747e45c5054086 | [
"MIT"
] | null | null | null | unit Terasoft_git.Framework.Lock;
interface
uses
Terasoft_git.Framework.Types,Classes, System.Variants, SysUtils, WinApi.Windows,
Terasoft_git.Framework.VisualMessage;
type
TLockType = (
ltNone,
ltExclusive,
ltReadOnly
);
ILock = interface
['{1057F19E-9AFE-4BF6-9B2A-365... | 30.212766 | 129 | 0.737324 |
174e7cd6e91c72bb9764dd43d21e0d3b156e21b9 | 27,539 | dfm | Pascal | JPG_Album/Mnf.dfm | delphi-pascal-archive/jpg-album | fdb96871950d17f2415f96c750ba6687213b1a65 | [
"Unlicense"
] | null | null | null | JPG_Album/Mnf.dfm | delphi-pascal-archive/jpg-album | fdb96871950d17f2415f96c750ba6687213b1a65 | [
"Unlicense"
] | null | null | null | JPG_Album/Mnf.dfm | delphi-pascal-archive/jpg-album | fdb96871950d17f2415f96c750ba6687213b1a65 | [
"Unlicense"
] | null | null | null | object JpgAlbum: TJpgAlbum
Left = 239
Top = 254
Width = 614
Height = 468
Caption = 'JPGAlbum - Creator'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = True
PixelsPerInch = 96... | 51.092764 | 127 | 0.807582 |
17f3855dc84d5ff4cd88ff89dfb74c53ca5d6fb7 | 137 | dpr | Pascal | Projects/Lazarus_Bible/D25/Addpage.dpr | joecare99/Public | 9eee060fbdd32bab33cf65044602976ac83f4b83 | [
"MIT"
] | 11 | 2017-06-17T05:13:45.000Z | 2021-07-11T13:18:48.000Z | Projects/Lazarus_Bible/D24/Addpage.dpr | joecare99/Public | 9eee060fbdd32bab33cf65044602976ac83f4b83 | [
"MIT"
] | 2 | 2019-03-05T12:52:40.000Z | 2021-12-03T12:34:26.000Z | Projects/Lazarus_Bible/2009/Addpage.dpr | joecare99/Public | 9eee060fbdd32bab33cf65044602976ac83f4b83 | [
"MIT"
] | 6 | 2017-09-07T09:10:09.000Z | 2022-02-19T20:19:58.000Z | program Addpage;
uses
Forms;
{$E EXE}
{$R *.RES}
begin
Application.Title := 'Demo: Add Page';
Application.Run;
end.
| 10.538462 | 41 | 0.583942 |
aa979cece078e8a74ebffa4b8d58a2fda2118f4e | 3,966 | pas | Pascal | Source/ObjectSpace/IDE/AttributeWizard/BoldOTACodeGen.pas | LenakeTech/BoldForDelphi | 3ef25517d5c92ebccc097c6bc2f2af62fc506c71 | [
"MIT"
] | 121 | 2020-09-22T10:46:20.000Z | 2021-11-17T12:33:35.000Z | Source/ObjectSpace/IDE/AttributeWizard/BoldOTACodeGen.pas | LenakeTech/BoldForDelphi | 3ef25517d5c92ebccc097c6bc2f2af62fc506c71 | [
"MIT"
] | 8 | 2020-09-23T12:32:23.000Z | 2021-07-28T07:01:26.000Z | Source/ObjectSpace/IDE/AttributeWizard/BoldOTACodeGen.pas | LenakeTech/BoldForDelphi | 3ef25517d5c92ebccc097c6bc2f2af62fc506c71 | [
"MIT"
] | 42 | 2020-09-22T14:37:20.000Z | 2021-10-04T10:24:12.000Z | unit BoldOTACodeGen;
interface
uses
toolsapi;
type
TUnitFile = class(TNotifierObject, IOTAFile)
private
fSource: string;
public
constructor Create(aSource: string);
function GetSource: string;
function GetAge: TDateTime;
property Source: string read fSource write fSource;
end;
TUnitC... | 22.662857 | 99 | 0.755673 |
aabbd5ee23583b198988e7bca88bb5f8db325d5b | 3,155 | pas | Pascal | Client/UnitFormCall.pas | zhen08/iRadio | 6bf77fe0657d01822399777074d01e65ca20b6cf | [
"MIT"
] | 1 | 2021-03-22T03:26:23.000Z | 2021-03-22T03:26:23.000Z | Client/UnitFormCall.pas | zhen08/iRadio | 6bf77fe0657d01822399777074d01e65ca20b6cf | [
"MIT"
] | null | null | null | Client/UnitFormCall.pas | zhen08/iRadio | 6bf77fe0657d01822399777074d01e65ca20b6cf | [
"MIT"
] | null | null | null | unit UnitFormCall;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ComCtrls, ExtCtrls, Menus, ACMWaveOut, ACMWaveIn,
MMSystem, MSAcm, ACMDialog;
type
TACMWaveFormat = packed record
case integer of
0 : (Format : TWaveFormatEx);... | 26.291667 | 77 | 0.712837 |
aa12ad326f649dac37103e660a2f5994e3abbf48 | 283 | dpr | Pascal | Threading/Embarcadero/Parallel Library/VCL/ConwaysLife.dpr | pisfu/losapr | dfd19520c820259c719b9e7ad2a4e61540213380 | [
"MIT"
] | 1 | 2020-12-16T07:25:07.000Z | 2020-12-16T07:25:07.000Z | Threading/Embarcadero/Parallel Library/VCL/ConwaysLife.dpr | pisfu/losapr | dfd19520c820259c719b9e7ad2a4e61540213380 | [
"MIT"
] | null | null | null | Threading/Embarcadero/Parallel Library/VCL/ConwaysLife.dpr | pisfu/losapr | dfd19520c820259c719b9e7ad2a4e61540213380 | [
"MIT"
] | 2 | 2018-04-23T03:31:58.000Z | 2020-12-16T07:25:08.000Z | program ConwaysLife;
uses
Forms,
LifeUnit in 'LifeUnit.pas' {LifeForm},
LifeEngine in '..\Shared_Code\LifeEngine.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TLifeForm, LifeForm);
Application.Run;
end.
| 17.6875 | 48 | 0.738516 |
17a4eb31a357cf9359be85d2c5be14fd109d3a04 | 329 | dfm | Pascal | forms/uCGenOptions.dfm | atkins126/Win32-API-Spy | 00efe1d5d51c7f52bb092dfe35f0f41f6c593778 | [
"Apache-2.0"
] | 1 | 2021-11-06T12:34:26.000Z | 2021-11-06T12:34:26.000Z | forms/uCGenOptions.dfm | bravesoftdz/Win32-API-Spy | 00efe1d5d51c7f52bb092dfe35f0f41f6c593778 | [
"Apache-2.0"
] | 4 | 2020-06-08T14:23:50.000Z | 2021-08-02T17:04:20.000Z | core/keisuke/test/data/commentS/root10/test/comment2.dfm | strikebuster/keisuke | f842ce7ff264b6bb9b657b93cf87496325cc4f02 | [
"Apache-2.0"
] | null | null | null | object Form1: TForm1
Left = 0
Top = 0
Caption = 'Form1'
ClientHeight = 206
ClientWidth = 339
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = ... | 19.352941 | 33 | 0.644377 |
44904adacde05aefa24253162dc59a51366e2a16 | 2,738 | pas | Pascal | Demos/OracleClient/TOracleClientQuery/CachedUpdates/fCachedUpdates.pas | CrystalNet-Tech/ADONetDAC4Delphi_Tutorials | 7b0ad4f962b5d2075a90e451b57257596b41ed62 | [
"Apache-2.0"
] | 1 | 2020-09-24T23:26:35.000Z | 2020-09-24T23:26:35.000Z | Demos/OracleClient/TOracleClientQuery/CachedUpdates/fCachedUpdates.pas | CrystalNet-Tech/ADONetDAC4Delphi_Tutorials | 7b0ad4f962b5d2075a90e451b57257596b41ed62 | [
"Apache-2.0"
] | null | null | null | Demos/OracleClient/TOracleClientQuery/CachedUpdates/fCachedUpdates.pas | CrystalNet-Tech/ADONetDAC4Delphi_Tutorials | 7b0ad4f962b5d2075a90e451b57257596b41ed62 | [
"Apache-2.0"
] | null | null | null | unit fCachedUpdates;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics,
Controls, Forms, Dialogs, fMainQueryBase, CNClrLib.ADONet.Enums,
CNClrLib.ADONet.Error, CNClrLib.ADONet.EventArgs,
CNClrLib.ADONet.OracleEventArgs, DB, CNClrLib.ADONet.Client,
CNClrLib.ADONet.OracleClient,... | 28.226804 | 115 | 0.724982 |
aa1c1e40c47dac9147e36d0cd095a61535c59208 | 10,215 | pas | Pascal | Source/Core/Utilities/NovusWebUtils.pas | atkins126/NovuscodeLibrary | fac415cf62a3925590762ed8c060c335f5a0541d | [
"Apache-2.0"
] | 15 | 2017-02-02T17:43:01.000Z | 2021-03-04T02:12:03.000Z | Source/Core/Utilities/NovusWebUtils.pas | atkins126/NovuscodeLibrary | fac415cf62a3925590762ed8c060c335f5a0541d | [
"Apache-2.0"
] | 12 | 2017-04-18T23:51:00.000Z | 2021-01-30T06:36:53.000Z | Source/Core/Utilities/NovusWebUtils.pas | atkins126/NovuscodeLibrary | fac415cf62a3925590762ed8c060c335f5a0541d | [
"Apache-2.0"
] | 5 | 2016-11-28T21:38:29.000Z | 2021-02-04T06:22:20.000Z | {$I ..\..\core\NovusCodeLibrary.inc}
unit NovusWebUtils;
interface
Uses Classes, NovusUtilities, SysUtils, SHDocVw, VCL.forms, NovusShell,
ActiveX, NovusNumUtils, UrlMon, Windows, System.Net.URLClient;
Type
TMIMEType = record
Extension: String;
Kindofdocument: string;
MIMEType: String;
end;
... | 43.283898 | 138 | 0.694763 |
1796883688a9ef5fec31d59e6ef8ed624949ad05 | 2,244 | pas | Pascal | Source/BCEditor.Editor.SkipRegions.pas | EricGrange/TBCEditor | ef037fc3638b9bcf4ecacafcfc30fac745712460 | [
"MIT"
] | 2 | 2018-01-03T03:48:19.000Z | 2021-12-08T14:54:20.000Z | Source/BCEditor.Editor.SkipRegions.pas | EricGrange/TBCEditor | ef037fc3638b9bcf4ecacafcfc30fac745712460 | [
"MIT"
] | null | null | null | Source/BCEditor.Editor.SkipRegions.pas | EricGrange/TBCEditor | ef037fc3638b9bcf4ecacafcfc30fac745712460 | [
"MIT"
] | 1 | 2021-04-29T08:09:41.000Z | 2021-04-29T08:09:41.000Z | unit BCEditor.Editor.SkipRegions;
interface
uses
Classes, SysUtils, BCEditor.Consts;
type
TBCEditorSkipRegionItemType = (ritUnspecified, ritMultiLineString, ritSingleLineString, ritMultiLineComment, ritSingleLineComment);
TBCEditorSkipRegionItem = class(TCollectionItem)
strict private
FClose... | 31.166667 | 134 | 0.766934 |
cd00cd01e022b595b794b8aa1401f975fa42f732 | 2,518 | pas | Pascal | delphi/0356.pas | nickelsworth/swag | 7c21c0da2291fc249b9dc5cfe121a7672a4ffc08 | [
"BSD-2-Clause"
] | 11 | 2015-12-12T05:13:15.000Z | 2020-10-14T13:32:08.000Z | delphi/0356.pas | nickelsworth/swag | 7c21c0da2291fc249b9dc5cfe121a7672a4ffc08 | [
"BSD-2-Clause"
] | null | null | null | delphi/0356.pas | nickelsworth/swag | 7c21c0da2291fc249b9dc5cfe121a7672a4ffc08 | [
"BSD-2-Clause"
] | 8 | 2017-05-05T05:24:01.000Z | 2021-07-03T20:30:09.000Z |
{ This code came from Lloyd's help file! }
Soundex function--determines whether two words sound alike. Written after reading an article in PC Magazine about the Soundex algorithm. Pass the function a string. It returns a Soundex value string. This value can be saved in a database or compared to another Soundex val... | 42.677966 | 357 | 0.620334 |
aa6782165e199c5b8222d4f3c7e651f0ee0ba17c | 1,536 | pas | Pascal | windows/src/global/delphi/general/USendInputString.pas | bravogeorge/keyman | c0797e36292de903d7313214d1f765e3d9a2bf4d | [
"MIT"
] | 219 | 2017-06-21T03:37:03.000Z | 2022-03-27T12:09:28.000Z | windows/src/global/delphi/general/USendInputString.pas | bravogeorge/keyman | c0797e36292de903d7313214d1f765e3d9a2bf4d | [
"MIT"
] | 4,451 | 2017-05-29T02:52:06.000Z | 2022-03-31T23:53:23.000Z | windows/src/global/delphi/general/USendInputString.pas | bravogeorge/keyman | c0797e36292de903d7313214d1f765e3d9a2bf4d | [
"MIT"
] | 72 | 2017-05-26T04:08:37.000Z | 2022-03-03T10:26:20.000Z | unit USendInputString;
interface
uses
Winapi.Windows;
function SendInputString(hwnd: THandle; const text: string): Boolean; overload;
function SendInputString(hwnd: THandle; const UTF32Char: DWord): Boolean; overload;
implementation
uses
Unicode;
function SendInputString(hwnd: THandle; const UTF32Char: DWord)... | 24 | 109 | 0.688802 |
aae8764f74414fa9bc732e3adfe80a110dfa3e4e | 2,691 | pas | Pascal | Source/Persistence/Core/Spring.Persistence.Core.Session.MongoDB.pas | VSoftTechnologies/Spring4DMirror | 083931ede091613e82173fa41da413bb9ffcebea | [
"Apache-2.0"
] | 1 | 2021-02-17T12:38:20.000Z | 2021-02-17T12:38:20.000Z | Source/Persistence/Core/Spring.Persistence.Core.Session.MongoDB.pas | VSoftTechnologies/Spring4DMirror | 083931ede091613e82173fa41da413bb9ffcebea | [
"Apache-2.0"
] | null | null | null | Source/Persistence/Core/Spring.Persistence.Core.Session.MongoDB.pas | VSoftTechnologies/Spring4DMirror | 083931ede091613e82173fa41da413bb9ffcebea | [
"Apache-2.0"
] | 2 | 2021-03-17T07:42:29.000Z | 2021-05-03T13:55:00.000Z | {***************************************************************************}
{ }
{ Spring Framework for Delphi }
{ }
{ ... | 36.364865 | 80 | 0.425121 |
aaa39cbdbdde95d13421d3638ed4c0af5fdfbbf3 | 3,282 | pas | Pascal | src/Config/Implementations/Ini/IniConfigImpl.pas | atkins126/fano | 472679437cb42637b0527dda8255ec52a3e1e953 | [
"MIT"
] | null | null | null | src/Config/Implementations/Ini/IniConfigImpl.pas | atkins126/fano | 472679437cb42637b0527dda8255ec52a3e1e953 | [
"MIT"
] | null | null | null | src/Config/Implementations/Ini/IniConfigImpl.pas | atkins126/fano | 472679437cb42637b0527dda8255ec52a3e1e953 | [
"MIT"
] | null | null | null | {*!
* Fano Web Framework (https://fanoframework.github.io)
*
* @link https://github.com/fanoframework/fano
* @copyright Copyright (c) 2018 - 2020 Zamrony P. Juhara
* @license https://github.com/fanoframework/fano/blob/master/LICENSE (MIT)
*}
unit IniConfigImpl;
interface
{$MODE OBJFPC}
{$H+}
uses
... | 29.836364 | 107 | 0.625229 |
bcc5ada6368104b5b5960f0df42171dee64cc48b | 2,706 | pas | Pascal | HODLER_Multiplatform_Win_And_iOS_Linux/components/HistoryPanelData.pas | devilking6105/HODLER-Open-Source-Multi-Asset-Wallet | 2554bce0ad3e3e08e4617787acf93176243ce758 | [
"Unlicense"
] | 35 | 2018-11-04T12:02:34.000Z | 2022-02-15T06:00:19.000Z | HODLER_Multiplatform_Win_And_iOS_Linux/components/HistoryPanelData.pas | Ecoent/HODLER-Open-Source-Multi-Asset-Wallet | a8c54ecfc569d0ee959b6f0e7826c4ee4b5c4848 | [
"Unlicense"
] | 85 | 2018-10-23T17:09:20.000Z | 2022-01-12T07:12:54.000Z | HODLER_Multiplatform_Win_And_iOS_Linux/components/HistoryPanelData.pas | Ecoent/HODLER-Open-Source-Multi-Asset-Wallet | a8c54ecfc569d0ee959b6f0e7826c4ee4b5c4848 | [
"Unlicense"
] | 34 | 2018-10-30T00:40:37.000Z | 2022-02-15T06:00:15.000Z | unit HistoryPanelData;
interface
uses
System.SysUtils, System.UITypes, System.Classes, FMX.Types, FMX.Controls,
FMX.Layouts,
FMX.Edit, FMX.StdCtrls, FMX.Clipboard, FMX.Platform, FMX.Objects,
FMX.Graphics,
System.Types, StrUtils, FMX.Dialogs, CrossPlatformHeaders, TAddressLabelData,
cryptoCurrencyData, Wal... | 21.822581 | 91 | 0.719143 |
17f36dd94307cc9064461758853c175635542c6a | 21,790 | pas | Pascal | mutils.pas | MrShoor/SnowFlaker | 2fb40144c9e265023a70f4d9be455d8f28d49606 | [
"BSD-3-Clause"
] | 3 | 2016-02-29T21:40:11.000Z | 2017-03-30T17:37:51.000Z | mutils.pas | MrShoor/SnowFlaker | 2fb40144c9e265023a70f4d9be455d8f28d49606 | [
"BSD-3-Clause"
] | null | null | null | mutils.pas | MrShoor/SnowFlaker | 2fb40144c9e265023a70f4d9be455d8f28d49606 | [
"BSD-3-Clause"
] | null | null | null | unit mutils;
{$mode objfpc}{$H+}
{$modeswitch advancedrecords}
{$define NoInline}
interface
uses
Classes, SysUtils;
const
EPS = 0.000005;
type
{ TVec2 }
TVec2 = record
x, y: Single;
end;
{ TVec3 }
TVec3 = record
case Byte of
0: (x, y, z: Single);
1: (xy: TVec2);
end;
{ TMat2 }
... | 31.352518 | 141 | 0.63575 |
bcb18baeff539b70df38a9b1dea601ecde6d7077 | 12,971 | pas | Pascal | Source/Equation.pas | jpluimers/TEquation | 7a19c762900fdb5f8f71d44409462d3a3c19d424 | [
"MIT"
] | 3 | 2019-05-28T15:51:00.000Z | 2021-09-25T07:18:26.000Z | Source/Equation.pas | jpluimers/TEquation | 7a19c762900fdb5f8f71d44409462d3a3c19d424 | [
"MIT"
] | null | null | null | Source/Equation.pas | jpluimers/TEquation | 7a19c762900fdb5f8f71d44409462d3a3c19d424 | [
"MIT"
] | 2 | 2020-03-24T11:53:59.000Z | 2021-09-25T07:36:00.000Z | unit Equation;
interface
uses
Complex, System.Math, Generics.Collections, System.SysUtils, Polynomial;
//Type of the equation that has to be solved
type
TEquationType = (FirstDegree = 0, SecondDegree, ThirdDegree, FourthDegree, NthDegree);
//With Nth degree equations you have to use a root finding algo... | 25.433333 | 140 | 0.602652 |
170ea23ec8070090712325fa31f5abf2ff1a7656 | 937 | pas | Pascal | src/Http/Header/Contracts/HeaderAwareIntf.pas | atkins126/fano | 472679437cb42637b0527dda8255ec52a3e1e953 | [
"MIT"
] | null | null | null | src/Http/Header/Contracts/HeaderAwareIntf.pas | atkins126/fano | 472679437cb42637b0527dda8255ec52a3e1e953 | [
"MIT"
] | null | null | null | src/Http/Header/Contracts/HeaderAwareIntf.pas | atkins126/fano | 472679437cb42637b0527dda8255ec52a3e1e953 | [
"MIT"
] | null | null | null | {*!
* Fano Web Framework (https://fanoframework.github.io)
*
* @link https://github.com/fanoframework/fano
* @copyright Copyright (c) 2018 - 2020 Zamrony P. Juhara
* @license https://github.com/fanoframework/fano/blob/master/LICENSE (MIT)
*}
unit HeaderAwareIntf;
interface
{$MODE OBJFPC}
uses
Head... | 24.025641 | 77 | 0.482391 |
aaeef6e013ebb9805d18998dada9f7638aa31285 | 84,720 | pas | Pascal | src/gui-classic/UFRMWallet.pas | godlovedamian/PascalCoin-1 | 4cf1045855a720d7dc1b6058a2b75f81327397b8 | [
"MIT"
] | 1 | 2021-06-07T13:20:04.000Z | 2021-06-07T13:20:04.000Z | src/gui-classic/UFRMWallet.pas | godlovedamian/PascalCoin-1 | 4cf1045855a720d7dc1b6058a2b75f81327397b8 | [
"MIT"
] | null | null | null | src/gui-classic/UFRMWallet.pas | godlovedamian/PascalCoin-1 | 4cf1045855a720d7dc1b6058a2b75f81327397b8 | [
"MIT"
] | null | null | null | unit UFRMWallet;
{ Copyright (c) 2016 by Albert Molina
Distributed under the MIT software license, see the accompanying file LICENSE
or visit http://www.opensource.org/licenses/mit-license.php.
This unit is a part of the PascalCoin Project, an infinitely scalable
cryptocurrency. Find us here:
Web: https://... | 36.143345 | 315 | 0.735269 |
aa355b2a5f54a994718347c88d95802c7fa6e845 | 13,631 | pas | Pascal | Libraries/SimpleServer/dwsDirectoryNotifier.pas | skolkman/dwscript | b9f99d4b8187defac3f3713e2ae0f7b83b63d516 | [
"Condor-1.1"
] | 79 | 2015-03-18T10:46:13.000Z | 2022-03-17T18:05:11.000Z | Libraries/SimpleServer/dwsDirectoryNotifier.pas | skolkman/dwscript | b9f99d4b8187defac3f3713e2ae0f7b83b63d516 | [
"Condor-1.1"
] | 3 | 2015-07-12T13:32:43.000Z | 2020-09-30T05:49:59.000Z | Libraries/SimpleServer/dwsDirectoryNotifier.pas | skolkman/dwscript | b9f99d4b8187defac3f3713e2ae0f7b83b63d516 | [
"Condor-1.1"
] | 21 | 2015-08-01T07:20:32.000Z | 2021-09-16T15:16:51.000Z | {**********************************************************************}
{ }
{ "The contents of this file are subject to the Mozilla Public }
{ License Version 1.1 (the "License"); you may not use this }
{ file except in comp... | 32.300948 | 117 | 0.589465 |
17aa1400dada0b5cc74e0b2a30358a616fcdce8d | 7,243 | pas | Pascal | MyAcquireThreadNEW_RS232.pas | mickyvac/fc-measure | 0b6db36af01f25479a956138cfceddd02a88d14d | [
"MIT"
] | null | null | null | MyAcquireThreadNEW_RS232.pas | mickyvac/fc-measure | 0b6db36af01f25479a956138cfceddd02a88d14d | [
"MIT"
] | null | null | null | MyAcquireThreadNEW_RS232.pas | mickyvac/fc-measure | 0b6db36af01f25479a956138cfceddd02a88d14d | [
"MIT"
] | null | null | null | unit MyAcquireThreadNEW_RS232;
{
MyAquireThreadNEW_RS232.pas
Copyright 2017 Michal Vaclavu <michal.vaclavu@gmail.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either ve... | 34.990338 | 187 | 0.710341 |
44a14ea5b1287a1e503456a5700842e5b97f18db | 102,992 | pas | Pascal | src/Q3BSP.pas | xackery/openzone | c9d4c91515ea10a206cefe3f104c730ad4abcc02 | [
"MIT"
] | null | null | null | src/Q3BSP.pas | xackery/openzone | c9d4c91515ea10a206cefe3f104c730ad4abcc02 | [
"MIT"
] | null | null | null | src/Q3BSP.pas | xackery/openzone | c9d4c91515ea10a206cefe3f104c730ad4abcc02 | [
"MIT"
] | null | null | null | unit Q3BSP;
interface
uses Windows, Classes, Dialogs, math3d, q3shaders, q3types, GL;
procedure ChangeGamma(var color : array of byte; factor : single);
type
TBSPFaceSort = record
FaceIndex : integer;
distance : single;
end;
var
numSolid,
numAdditive,
numTransparent : integer;
... | 34.900712 | 238 | 0.602357 |
bcae2ae407b6f0a7ee200b7aea58687c1b72e7d6 | 3,888 | pas | Pascal | MULTIMEDIA/Hiragana-Katakana/pagesMateriPenjelasan.pas | teknologi-pendidikan/matkul-pemrograman-visual | aa9faca0f17a53369760a952dea631b917d3abe7 | [
"MIT"
] | null | null | null | MULTIMEDIA/Hiragana-Katakana/pagesMateriPenjelasan.pas | teknologi-pendidikan/matkul-pemrograman-visual | aa9faca0f17a53369760a952dea631b917d3abe7 | [
"MIT"
] | null | null | null | MULTIMEDIA/Hiragana-Katakana/pagesMateriPenjelasan.pas | teknologi-pendidikan/matkul-pemrograman-visual | aa9faca0f17a53369760a952dea631b917d3abe7 | [
"MIT"
] | null | null | null | unit pagesMateriPenjelasan;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, MPlayer, jpeg, ExtCtrls, StdCtrls;
type
TpageMateriPenjelasan = class(TForm)
img_background: TImage;
L_titleMateri: TLabel;
L_pagesLocation: TLabel;
img_buttonKembali: ... | 24.923077 | 76 | 0.778807 |
aaf583949e8370dc3bf073a5e31f9d147caa706d | 53,551 | pas | Pascal | contrib/ParseExpression/ParseExpr.pas | Razor12911/xtool | 4797195ad310e8f6dc2eae8eb86fe14683f77cf0 | [
"MIT"
] | 11 | 2022-01-17T22:05:37.000Z | 2022-02-23T19:18:19.000Z | contrib/ParseExpression/ParseExpr.pas | Razor12911/xtool | 4797195ad310e8f6dc2eae8eb86fe14683f77cf0 | [
"MIT"
] | null | null | null | contrib/ParseExpression/ParseExpr.pas | Razor12911/xtool | 4797195ad310e8f6dc2eae8eb86fe14683f77cf0 | [
"MIT"
] | null | null | null | unit ParseExpr;
{ --------------------------------------------------------------
| TExpressionParser
| a flexible and fast expression parser for logical and
| mathematical functions
| Author: Egbert van Nes (Egbert.vanNes@wur.nl)
| With contributions of: John Bultena, Ralf Junker, Arnulf Sortland
| and Xa... | 27.891146 | 96 | 0.621333 |
aa8e06c8e48ad3669fcd75d65c7112853848be01 | 5,397 | pas | Pascal | LogViewer.Subscribers.ComPort.pas | atkins126/LogViewer | 47b331478b74c89ffffc48bb20bbe62f4362c556 | [
"Apache-2.0"
] | 38 | 2016-04-19T04:05:31.000Z | 2022-03-16T12:34:52.000Z | LogViewer.Subscribers.ComPort.pas | atkins126/LogViewer | 47b331478b74c89ffffc48bb20bbe62f4362c556 | [
"Apache-2.0"
] | 4 | 2018-01-04T12:12:49.000Z | 2021-03-09T16:38:55.000Z | LogViewer.Subscribers.ComPort.pas | atkins126/LogViewer | 47b331478b74c89ffffc48bb20bbe62f4362c556 | [
"Apache-2.0"
] | 12 | 2016-08-29T20:34:52.000Z | 2022-01-06T00:23:46.000Z | {
Copyright (C) 2013-2021 Tim Sinaeve tim.sinaeve@gmail.com
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable... | 25.7 | 74 | 0.707059 |
173148da0e543e5653fee5ae255bbd0486fcacd3 | 2,657 | dfm | Pascal | Demos/OleDb/MSAccess/TOleDbQuery/LiveUpdates/fLiveUpdates.dfm | CrystalNet-Tech/ADONetDAC4Delphi_Tutorials | 7b0ad4f962b5d2075a90e451b57257596b41ed62 | [
"Apache-2.0"
] | 1 | 2020-09-24T23:26:35.000Z | 2020-09-24T23:26:35.000Z | Demos/OleDb/MSAccess/TOleDbQuery/LiveUpdates/fLiveUpdates.dfm | CrystalNet-Tech/ADONetDAC4Delphi_Tutorials | 7b0ad4f962b5d2075a90e451b57257596b41ed62 | [
"Apache-2.0"
] | null | null | null | Demos/OleDb/MSAccess/TOleDbQuery/LiveUpdates/fLiveUpdates.dfm | CrystalNet-Tech/ADONetDAC4Delphi_Tutorials | 7b0ad4f962b5d2075a90e451b57257596b41ed62 | [
"Apache-2.0"
] | null | null | null | inherited frmLiveUpdates: TfrmLiveUpdates
Caption = 'Live Updates and OnUpdateRecord'
PixelsPerInch = 96
TextHeight = 13
inherited pnlTitle: TPanel
inherited lblTitle: TLabel
Width = 364
Caption = 'Live Updates and OnUpdateRecord'
ExplicitWidth = 364
end
end
inherited pn... | 26.838384 | 53 | 0.496425 |
1733fe44e9bd88b9043e42fb58c830f66b9361bf | 1,197 | pas | Pascal | SHA-256/src/DCPcrypt/DCPconst.pas | NigrumAquila/subject_cryptography | 4e417ee8c06cfc5fac55e71e65a998179bdf88c5 | [
"MIT"
] | null | null | null | SHA-256/src/DCPcrypt/DCPconst.pas | NigrumAquila/subject_cryptography | 4e417ee8c06cfc5fac55e71e65a998179bdf88c5 | [
"MIT"
] | null | null | null | SHA-256/src/DCPcrypt/DCPconst.pas | NigrumAquila/subject_cryptography | 4e417ee8c06cfc5fac55e71e65a998179bdf88c5 | [
"MIT"
] | null | null | null | unit DCPconst;
interface
{******************************************************************************}
const
{ Component registration }
DCPcipherpage = 'DCPciphers';
DCPhashpage = 'DCPhashes';
{ ID values }
DCP_rc2 = 1;
DCP_sha1 = 2;
DCP_rc5 = 3;
DCP_rc6 ... | 23.94 | 80 | 0.367586 |
17b8ca542c427e582c0afdf2c3ad5e15f73868a3 | 9,580 | pas | Pascal | windows/src/ext/jedi/jvcl/jvcl/devtools/UnitVersioning/Main.pas | bravogeorge/keyman | c0797e36292de903d7313214d1f765e3d9a2bf4d | [
"MIT"
] | 219 | 2017-06-21T03:37:03.000Z | 2022-03-27T12:09:28.000Z | windows/src/ext/jedi/jvcl/jvcl/devtools/UnitVersioning/Main.pas | bravogeorge/keyman | c0797e36292de903d7313214d1f765e3d9a2bf4d | [
"MIT"
] | 4,451 | 2017-05-29T02:52:06.000Z | 2022-03-31T23:53:23.000Z | windows/src/ext/jedi/jvcl/jvcl/devtools/UnitVersioning/Main.pas | bravogeorge/keyman | c0797e36292de903d7313214d1f765e3d9a2bf4d | [
"MIT"
] | 72 | 2017-05-26T04:08:37.000Z | 2022-03-03T10:26:20.000Z | unit Main;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, XPMan, Mask, JvExMask, JvToolEdit, ComCtrls,
JvComponent, JvSearchFiles, dpp_PascalParser, JvComponentBase;
type
TFormMain = class(TForm)
BtnExecute: TButton;
BtnQuit: TButton;
... | 30.22082 | 99 | 0.55929 |
aa2c1ddd74818316460f946ed611b19b6c08ca1e | 7,697 | pas | Pascal | unittests/general/Several/RESTAdapterTestsU.pas | JensMertelmeyer/delphimvcframework | 1c9bcea41cbded5eacffeaab3275b9b9aa9761de | [
"Apache-2.0"
] | 1 | 2021-09-08T12:47:24.000Z | 2021-09-08T12:47:24.000Z | unittests/general/Several/RESTAdapterTestsU.pas | JensMertelmeyer/delphimvcframework | 1c9bcea41cbded5eacffeaab3275b9b9aa9761de | [
"Apache-2.0"
] | null | null | null | unittests/general/Several/RESTAdapterTestsU.pas | JensMertelmeyer/delphimvcframework | 1c9bcea41cbded5eacffeaab3275b9b9aa9761de | [
"Apache-2.0"
] | 1 | 2021-09-08T12:47:25.000Z | 2021-09-08T12:47:25.000Z | // ***************************************************************************
//
// Delphi MVC Framework
//
// Copyright (c) 2010-2020 Daniele Teti and the DMVCFramework Team
//
// https://github.com/danieleteti/delphimvcframework
//
// ***************************************************************************
//
// ... | 25.486755 | 82 | 0.700143 |
cd04bedddc29419f04a392bde73a4f72930d5886 | 1,881 | dfm | Pascal | DTF/DTF.Frame.StrGrid.dfm | devgear/DTF | af82ec847f4c867f4b47bfa864e922108d3a4c67 | [
"MIT"
] | 3 | 2020-11-12T17:47:19.000Z | 2021-07-21T12:31:41.000Z | DTF/DTF.Frame.StrGrid.dfm | devgear/DTF | af82ec847f4c867f4b47bfa864e922108d3a4c67 | [
"MIT"
] | 1 | 2021-04-21T14:43:57.000Z | 2021-04-21T14:43:57.000Z | DTF/DTF.Frame.StrGrid.dfm | devgear/DTF | af82ec847f4c867f4b47bfa864e922108d3a4c67 | [
"MIT"
] | 1 | 2021-01-26T06:36:34.000Z | 2021-01-26T06:36:34.000Z | inherited DTFStrGridFrame: TDTFStrGridFrame
Width = 724
ExplicitWidth = 724
inherited DTFTitleFrame1: TDTFTitleFrame
Width = 724
TabOrder = 3
ExplicitWidth = 724
inherited pnlCaption: TPanel
Width = 720
ExplicitWidth = 720
end
end
object tlbDataSet: TToolBar
Left = 0
To... | 21.134831 | 49 | 0.612972 |
17b359011ecd1564a9434b8133a9f51dd466f345 | 2,131 | pas | Pascal | oop/0061.pas | nickelsworth/swag | 7c21c0da2291fc249b9dc5cfe121a7672a4ffc08 | [
"BSD-2-Clause"
] | 11 | 2015-12-12T05:13:15.000Z | 2020-10-14T13:32:08.000Z | oop/0061.pas | nickelsworth/swag | 7c21c0da2291fc249b9dc5cfe121a7672a4ffc08 | [
"BSD-2-Clause"
] | null | null | null | oop/0061.pas | nickelsworth/swag | 7c21c0da2291fc249b9dc5cfe121a7672a4ffc08 | [
"BSD-2-Clause"
] | 8 | 2017-05-05T05:24:01.000Z | 2021-07-03T20:30:09.000Z | {
> I need help with the turbo vision handleevent procedure...I can't get a
> dialog box to handle any events of its own...I got Tapplications
> handlevent to work for me, but it just won't work in a dialog box. Please
> help.
Normally a dialog can handle some 4 types of events - that is END the dialog
with th... | 23.417582 | 78 | 0.719381 |
178959dca04985a98f2ef432d9913783d1dd9244 | 843 | pas | Pascal | Core/DW.Sensors.pas | barlone/Kastri | fb12d9eba242e67efd87eb1cb7acd123601a58ed | [
"MIT"
] | 259 | 2020-05-27T03:15:19.000Z | 2022-03-24T16:35:02.000Z | Core/DW.Sensors.pas | talentedexpert0057/Kastri | aacc0db96957ea850abb7b407be5a0722462eb5a | [
"MIT"
] | 95 | 2020-06-16T09:46:06.000Z | 2022-03-28T00:27:07.000Z | Core/DW.Sensors.pas | talentedexpert0057/Kastri | aacc0db96957ea850abb7b407be5a0722462eb5a | [
"MIT"
] | 56 | 2020-06-04T19:32:40.000Z | 2022-03-26T15:32:47.000Z | unit DW.Sensors;
interface
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library ... | 29.068966 | 64 | 0.349941 |
171bbaadfc5e87eea3815c49acc24afcf34e0191 | 3,026 | pas | Pascal | Program/Wizards/NewCollection/frame_NCWOperation.pas | aleXela17/MyHomeLib | 7c1c7596b2bd1f1186aae4b213de27b7fc440b33 | [
"MIT"
] | 80 | 2019-05-08T15:26:06.000Z | 2022-03-18T17:53:13.000Z | Program/Wizards/NewCollection/frame_NCWOperation.pas | alex80/MyHomeLib | 00b22041449ee243759e76f6130839bc9cd74953 | [
"MIT"
] | 7 | 2019-07-17T07:26:13.000Z | 2021-09-01T19:00:19.000Z | Program/Wizards/NewCollection/frame_NCWOperation.pas | alex80/MyHomeLib | 00b22041449ee243759e76f6130839bc9cd74953 | [
"MIT"
] | 40 | 2019-06-02T10:23:13.000Z | 2022-03-29T08:58:46.000Z | {******************************************************************************}
{ }
{ MyHomeLib }
{ ... | 27.017857 | 104 | 0.512227 |
176e02dd48a3df79b00b48d873183ce151f558ea | 1,345 | pas | Pascal | Examples/trunk/mssql/dbloginform.pas | joecare99/Public | 9eee060fbdd32bab33cf65044602976ac83f4b83 | [
"MIT"
] | 11 | 2017-06-17T05:13:45.000Z | 2021-07-11T13:18:48.000Z | Examples/trunk/mssql/dbloginform.pas | joecare99/Public | 9eee060fbdd32bab33cf65044602976ac83f4b83 | [
"MIT"
] | 2 | 2019-03-05T12:52:40.000Z | 2021-12-03T12:34:26.000Z | Examples/trunk/mssql/dbloginform.pas | joecare99/Public | 9eee060fbdd32bab33cf65044602976ac83f4b83 | [
"MIT"
] | 6 | 2017-09-07T09:10:09.000Z | 2022-02-19T20:19:58.000Z | unit dbloginform;
{$mode objfpc}{$H+}
interface
uses
Forms, StdCtrls;
type
{ TLoginForm }
TLoginForm = class(TForm)
OSAuthentication: TCheckBox;
DatabaseType: TComboBox;
Label6: TLabel;
LocalMachine: TButton;
OKButton: TButton;
CancelButton: TButton;
User: TEd... | 17.697368 | 62 | 0.655019 |
bca5337b07f9576b3f073d6eda1789e315be0211 | 82 | pas | Pascal | Test/InterfacesPass/declare_interface.pas | synapsea/DW-Script | b36c2e57f0285c217f8f0cae8e4e158d21127163 | [
"Condor-1.1"
] | 1 | 2022-02-18T22:14:44.000Z | 2022-02-18T22:14:44.000Z | Test/InterfacesPass/declare_interface.pas | synapsea/DW-Script | b36c2e57f0285c217f8f0cae8e4e158d21127163 | [
"Condor-1.1"
] | null | null | null | Test/InterfacesPass/declare_interface.pas | synapsea/DW-Script | b36c2e57f0285c217f8f0cae8e4e158d21127163 | [
"Condor-1.1"
] | null | null | null | type
IMyInterface = interface
procedure A;
function B: Integer;
end;
| 13.666667 | 27 | 0.658537 |
aa2ea7aa7eb669c7386dba7761c715eea85bc970 | 289 | dpr | Pascal | Projects/Lazarus_Bible/2010/Except1.dpr | joecare99/Public | 9eee060fbdd32bab33cf65044602976ac83f4b83 | [
"MIT"
] | 11 | 2017-06-17T05:13:45.000Z | 2021-07-11T13:18:48.000Z | Projects/Lazarus_Bible/D25/Except1.dpr | joecare99/Public | 9eee060fbdd32bab33cf65044602976ac83f4b83 | [
"MIT"
] | 2 | 2019-03-05T12:52:40.000Z | 2021-12-03T12:34:26.000Z | Projects/Lazarus_Bible/DXE2/Except1.dpr | joecare99/Public | 9eee060fbdd32bab33cf65044602976ac83f4b83 | [
"MIT"
] | 6 | 2017-09-07T09:10:09.000Z | 2022-02-19T20:19:58.000Z | program Except1;
uses
Forms,
Frm_Except1MAIN in '..\Source\EXCEPT1\Frm_Except1MAIN.PAS' {MainForm};
{$R *.RES}
{$E EXE}
begin
Application.Initialize;
Application.Title := 'Demo: Except1';
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.
| 22.230769 | 74 | 0.67474 |
17863dd7f94dfd8a3cf2082b07d83440d4440f6f | 374 | lpr | Pascal | samples/92_MultiReadTest/Lazarus/MultiReadTest.lpr | noomox/dexif | 2c069a1b39db7e835852ad899c2200e604e0c41f | [
"FSFAP"
] | 13 | 2016-10-21T14:18:48.000Z | 2021-06-27T18:00:50.000Z | samples/92_MultiReadTest/Lazarus/MultiReadTest.lpr | noomox/dexif | 2c069a1b39db7e835852ad899c2200e604e0c41f | [
"FSFAP"
] | 6 | 2016-12-04T17:55:38.000Z | 2021-01-29T02:08:32.000Z | samples/92_MultiReadTest/Lazarus/MultiReadTest.lpr | noomox/dexif | 2c069a1b39db7e835852ad899c2200e604e0c41f | [
"FSFAP"
] | 18 | 2016-04-16T00:20:25.000Z | 2022-03-15T19:49:07.000Z | program MultiReadTest;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, mrtmain
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Initialize;
Application.Crea... | 17 | 48 | 0.708556 |
bc63010abb4a7f9975304ba0fef52aa929945cc7 | 1,154 | pas | Pascal | Capitulo4/Essentials.4/Form.Cadastro.Pessoa.pas | diondcm/exemplos-delphi | 16b4d195981e5f3161d0a2c62f778bec5ba9f3d4 | [
"MIT"
] | 10 | 2017-08-02T00:44:41.000Z | 2021-10-13T21:11:28.000Z | Capitulo4/Essentials.4/Form.Cadastro.Pessoa.pas | diondcm/exemplos-delphi | 16b4d195981e5f3161d0a2c62f778bec5ba9f3d4 | [
"MIT"
] | 10 | 2019-12-30T04:09:37.000Z | 2022-03-02T06:06:19.000Z | Capitulo4/Essentials.4/Form.Cadastro.Pessoa.pas | diondcm/exemplos-delphi | 16b4d195981e5f3161d0a2c62f778bec5ba9f3d4 | [
"MIT"
] | 9 | 2017-04-29T16:12:21.000Z | 2020-11-11T22:16:32.000Z | unit Form.Cadastro.Pessoa;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Buttons, Vcl.ExtCtrls,
Vcl.Mask, Vcl.DBCtrls, Data.Pessoa, Data.DB, Vcl.ComCtrls;
type
TfrmCadPessoa = class(TForm... | 23.55102 | 104 | 0.754766 |
bc994394f2e997cc68bb3ec1d166882cecb459a8 | 268,043 | pas | Pascal | Source/Components/DirectX/DirectDraw.pas | jaksco/cubicexplorer | 7bf2513700477d753fd8ea1c6226ddab0175df91 | [
"Condor-1.1"
] | 1 | 2021-09-23T17:32:49.000Z | 2021-09-23T17:32:49.000Z | Source/Components/DirectX/DirectDraw.pas | jaksco/cubicexplorer | 7bf2513700477d753fd8ea1c6226ddab0175df91 | [
"Condor-1.1"
] | null | null | null | Source/Components/DirectX/DirectDraw.pas | jaksco/cubicexplorer | 7bf2513700477d753fd8ea1c6226ddab0175df91 | [
"Condor-1.1"
] | null | null | null | {******************************************************************************}
{* *}
{* Copyright (C) Microsoft Corporation. All Rights Reserved. *}
{* ... | 37.462334 | 201 | 0.656369 |
8ad9916655636adfa72c6dd927347094925f0ea6 | 12,081 | pas | Pascal | CPKeyHook.pas | IncorexLLC/TilchiAgent | 5e37931a0c97435fc016265d55f4ed135d4f6b0a | [
"MIT"
] | 1 | 2016-01-16T05:40:36.000Z | 2016-01-16T05:40:36.000Z | CPKeyHook.pas | IncorexLLC/TilchiAgent | 5e37931a0c97435fc016265d55f4ed135d4f6b0a | [
"MIT"
] | null | null | null | CPKeyHook.pas | IncorexLLC/TilchiAgent | 5e37931a0c97435fc016265d55f4ed135d4f6b0a | [
"MIT"
] | null | null | null | {*****************************************************************************
* UnitName: CPKeyHook
* Version: 1.8 Experimental
* Created: 23/04/2005
* Purpose: Global Keyboard Hook Unit and DLL.
* Developer: BITLOGIC Software
* Email: development@bitlogic.co.uk
* WebPage: http://www.bitlogic.co.uk... | 31.460938 | 131 | 0.727837 |
aae88242a39da23e86bb2b91da0f8caf275bb745 | 2,620 | dfm | Pascal | Src/Graphics32/Examples/General/Image32/MainUnit.dfm | ryujt/ryulib-delphi | a59d308d6535de6a2fdb1ac49ded981849031c60 | [
"MIT"
] | 12 | 2019-11-09T11:44:47.000Z | 2022-03-01T23:38:30.000Z | Src/Graphics32/Examples/General/Image32/MainUnit.dfm | ryujt/ryulib-delphi | a59d308d6535de6a2fdb1ac49ded981849031c60 | [
"MIT"
] | 1 | 2019-11-08T08:27:34.000Z | 2019-11-08T08:43:51.000Z | Src/Graphics32/Examples/General/Image32/MainUnit.dfm | ryujt/ryulib-delphi | a59d308d6535de6a2fdb1ac49ded981849031c60 | [
"MIT"
] | 15 | 2019-10-15T12:34:29.000Z | 2021-02-23T08:25:48.000Z | object FormImage32Example: TFormImage32Example
Left = 224
Top = 159
HorzScrollBar.Visible = False
VertScrollBar.Visible = False
Caption = 'TImage32 Example'
ClientHeight = 418
ClientWidth = 542
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name... | 20.96 | 53 | 0.577863 |
bc406e050325d04a4a93c4e235bee0810572a8f3 | 98 | pas | Pascal | tests/semantics/20-array-access-04.pas | ZeroICQ/pascal-compiler | be7fce3ea610bae8a7b7917c9f568f5552d7b08d | [
"MIT"
] | null | null | null | tests/semantics/20-array-access-04.pas | ZeroICQ/pascal-compiler | be7fce3ea610bae8a7b7917c9f568f5552d7b08d | [
"MIT"
] | null | null | null | tests/semantics/20-array-access-04.pas | ZeroICQ/pascal-compiler | be7fce3ea610bae8a7b7917c9f568f5552d7b08d | [
"MIT"
] | null | null | null | var
a : Array[1..100] of integer;
b : double;
begin
b := a[20*2 - 7];
end.
| 12.25 | 33 | 0.438776 |
172cf572792ccfc9c92ddc3973f3548f9775f195 | 3,518 | pas | Pascal | Source/dlgConfirmReplace.pas | sajithanangolath/pyscripter | 00a9ba8a1c8357df6e055dd79fa8065702f3b211 | [
"MIT"
] | 1 | 2019-07-12T21:11:32.000Z | 2019-07-12T21:11:32.000Z | Source/dlgConfirmReplace.pas | sajithanangolath/pyscripter | 00a9ba8a1c8357df6e055dd79fa8065702f3b211 | [
"MIT"
] | null | null | null | Source/dlgConfirmReplace.pas | sajithanangolath/pyscripter | 00a9ba8a1c8357df6e055dd79fa8065702f3b211 | [
"MIT"
] | null | null | null | {-------------------------------------------------------------------------------
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
So... | 31.981818 | 81 | 0.698692 |
8a53acfeae783cdb070961bcef4dc80f57dbdf66 | 4,080 | pas | Pascal | Client/fSpecModelVariantsCopyTo.pas | Sembium/Sembium3 | 0179c38c6a217f71016f18f8a419edd147294b73 | [
"Apache-2.0"
] | null | null | null | Client/fSpecModelVariantsCopyTo.pas | Sembium/Sembium3 | 0179c38c6a217f71016f18f8a419edd147294b73 | [
"Apache-2.0"
] | null | null | null | Client/fSpecModelVariantsCopyTo.pas | Sembium/Sembium3 | 0179c38c6a217f71016f18f8a419edd147294b73 | [
"Apache-2.0"
] | 3 | 2021-06-30T10:11:17.000Z | 2021-07-01T09:13:29.000Z | unit fSpecModelVariantsCopyTo;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
uClientTypes, Db, DBClient, AbmesClientDataSet, ImgList, ActnList, StdCtrls,
Buttons, ExtCtrls, GridsEh, DBGridEh, AbmesDBGrid, DBCtrls, ColorNavigator,
AbmesFields, Menus, JvButton... | 30 | 106 | 0.747549 |
17bd2f0c84423b8a501b9cd2e0cdf7f0009cb67d | 651 | pas | Pascal | systemdep.pas | chainq/pmclient | 62ed73559c41af35670a4c94e26981d9df5fe5af | [
"WTFPL"
] | null | null | null | systemdep.pas | chainq/pmclient | 62ed73559c41af35670a4c94e26981d9df5fe5af | [
"WTFPL"
] | null | null | null | systemdep.pas | chainq/pmclient | 62ed73559c41af35670a4c94e26981d9df5fe5af | [
"WTFPL"
] | null | null | null | {
Copyright (c) 2016 Karoly Balogh <charlie@amigaspirit.hu>
This work is free. You can redistribute it and/or modify it under the
terms of the Do What The Fuck You Want To Public License, Version 2,
as published by Sam Hocevar. See the COPYING file for more details.
}
{$MODE OBJFPC}
unit systemdep;
interface... | 17.594595 | 71 | 0.741935 |
17f49077e4264257a1fd64556d932e4254edafa3 | 2,451 | pas | Pascal | Demos/Arabic_Units/Data.Win.ADOConst.pas | sy-it/Arabic-Delphi-VCL-Units | 3353d113ea36273de4371037fe9cdb5f90a84412 | [
"MIT"
] | 18 | 2016-12-27T13:19:31.000Z | 2021-12-24T22:26:28.000Z | Demos/Arabic_Units/Data.Win.ADOConst.pas | sy-it/Arabic-Delphi-VCL-Units | 3353d113ea36273de4371037fe9cdb5f90a84412 | [
"MIT"
] | null | null | null | Demos/Arabic_Units/Data.Win.ADOConst.pas | sy-it/Arabic-Delphi-VCL-Units | 3353d113ea36273de4371037fe9cdb5f90a84412 | [
"MIT"
] | 6 | 2018-07-21T19:47:31.000Z | 2021-09-14T10:03:18.000Z | {*******************************************************}
{ }
{ Arabic Delphi VCL Units }
{ }
{ Modified by : Orwah Ali Issa (www.orwah.net) }
{ ... | 49.02 | 181 | 0.476948 |
bca769d13854361c517cf0a41c0dbe7b879642c7 | 3,599 | pas | Pascal | encrypt/0034.pas | nickelsworth/swag | 7c21c0da2291fc249b9dc5cfe121a7672a4ffc08 | [
"BSD-2-Clause"
] | 11 | 2015-12-12T05:13:15.000Z | 2020-10-14T13:32:08.000Z | encrypt/0034.pas | nickelsworth/swag | 7c21c0da2291fc249b9dc5cfe121a7672a4ffc08 | [
"BSD-2-Clause"
] | null | null | null | encrypt/0034.pas | nickelsworth/swag | 7c21c0da2291fc249b9dc5cfe121a7672a4ffc08 | [
"BSD-2-Clause"
] | 8 | 2017-05-05T05:24:01.000Z | 2021-07-03T20:30:09.000Z |
Hi Gayle, I have this contribution for SWAG Archives.
This source is an easy-to-use (I hope) encoding/decoding engine (it
includes a demo).
Unit EncDec;
{EncDec is copyrighted by Salvatore Meschini - FREEWARE -
Salvatore Meschini - smeschini@ermes.it - http://www.ermes.it/pws/mesk
Please report: bugs,sugge... | 26.659259 | 79 | 0.571826 |
17c630520af4fec698b70c43fd73b21b09aeb629 | 5,676 | dfm | Pascal | Source/frmBreakPoints.dfm | sajithanangolath/pyscripter | 00a9ba8a1c8357df6e055dd79fa8065702f3b211 | [
"MIT"
] | 1 | 2019-07-12T21:11:32.000Z | 2019-07-12T21:11:32.000Z | Source/frmBreakPoints.dfm | sajithanangolath/pyscripter | 00a9ba8a1c8357df6e055dd79fa8065702f3b211 | [
"MIT"
] | null | null | null | Source/frmBreakPoints.dfm | sajithanangolath/pyscripter | 00a9ba8a1c8357df6e055dd79fa8065702f3b211 | [
"MIT"
] | null | null | null | inherited BreakPointsWindow: TBreakPointsWindow
Left = 491
Top = 381
HelpContext = 495
Caption = 'Breakpoints'
ClientHeight = 244
ClientWidth = 379
Icon.Data = {
0000010001001010000001002000280400001600000028000000100000002000
00000100200000000000000000000000000000000000000000000000000000... | 40.255319 | 197 | 0.735025 |
aa7d9d8fe41799b3610027a0ded210d857358d94 | 24,890 | pas | Pascal | Source/vteExcelFormula.pas | alexeysmorkalov/vtkTools.PReport | f07e1189ad0a4beaf00cdc3e4a4f5f29e000cf55 | [
"MIT"
] | null | null | null | Source/vteExcelFormula.pas | alexeysmorkalov/vtkTools.PReport | f07e1189ad0a4beaf00cdc3e4a4f5f29e000cf55 | [
"MIT"
] | null | null | null | Source/vteExcelFormula.pas | alexeysmorkalov/vtkTools.PReport | f07e1189ad0a4beaf00cdc3e4a4f5f29e000cf55 | [
"MIT"
] | 1 | 2021-05-19T15:45:14.000Z | 2021-05-19T15:45:14.000Z |
{******************************************}
{ }
{ vtk Export library }
{ }
{ Copyright (c) 2002 by vtkTools }
{ }
{******************************************}
uni... | 28.251986 | 119 | 0.593893 |
172f17cf4cf31ce4b7328e06580d05cbd44e6ba3 | 494 | pas | Pascal | source/commom/PraRegister.pas | carloBarazzetta/Delphi-PraButtonStyle | 0ba4f89871b6f8a79a47cfffd4feb21df80dedbe | [
"MIT"
] | 2 | 2020-05-29T13:24:51.000Z | 2021-04-14T08:41:40.000Z | source/commom/PraRegister.pas | wwq0071/Delphi-PraButtonStyle | 0ba4f89871b6f8a79a47cfffd4feb21df80dedbe | [
"MIT"
] | null | null | null | source/commom/PraRegister.pas | wwq0071/Delphi-PraButtonStyle | 0ba4f89871b6f8a79a47cfffd4feb21df80dedbe | [
"MIT"
] | 2 | 2021-02-10T08:19:48.000Z | 2021-12-15T06:20:28.000Z | { ****************************************************************************** }
{ }
{ pra components library 2020 }
{ pauloalvis@hotmail.com | github.com/pauloalvis }
{ }
{ ****************************************************************************** }
unit PraRegister;
interface
uses
System.Classes;... | 18.296296 | 83 | 0.459514 |
8a0209f07956c7a35cef18e446b3213f3d5e1854 | 409 | pas | Pascal | Components/DelphiX/ClFunc.pas | 98kmir2/98kmir2 | 46196a161d46cc7a85d168dca683b4aff477a709 | [
"BSD-3-Clause"
] | 15 | 2020-02-13T11:59:11.000Z | 2021-12-31T14:53:44.000Z | Components/DelphiX/ClFunc.pas | bsjzx8/98 | 46196a161d46cc7a85d168dca683b4aff477a709 | [
"BSD-3-Clause"
] | null | null | null | Components/DelphiX/ClFunc.pas | bsjzx8/98 | 46196a161d46cc7a85d168dca683b4aff477a709 | [
"BSD-3-Clause"
] | 13 | 2020-02-20T07:22:09.000Z | 2021-12-31T14:56:09.000Z | unit ClFunc;
interface
uses
Windows, Messages, SysUtils, DXDraws;
procedure DxBoldTextOut(Surface: TDirectDrawSurface; X, Y, fcolor, bcolor: Integer; szText: string; bold: Byte = 1; bk: Integer = 1; Alpha: Integer = 255);
implementation
procedure DxBoldTextOut(Surface: TDirectDrawSurface; X, Y, fcolor, bcolor: I... | 21.526316 | 155 | 0.735941 |
bce5173f276a62a06313d96a6f571cb9fb2ddf03 | 9,657 | pas | Pascal | src/esiassets.pas | seryal/laz-eve-esi | 6f03cc3467f62658c5f2ff4aa13c5f0c5ed112a1 | [
"MIT"
] | 1 | 2022-01-16T20:12:00.000Z | 2022-01-16T20:12:00.000Z | src/esiassets.pas | seryal/laz-eve-esi | 6f03cc3467f62658c5f2ff4aa13c5f0c5ed112a1 | [
"MIT"
] | null | null | null | src/esiassets.pas | seryal/laz-eve-esi | 6f03cc3467f62658c5f2ff4aa13c5f0c5ed112a1 | [
"MIT"
] | null | null | null | {==============================================================================|
| Project : EVE Online ESI Library |
|==============================================================================|
| Copyright (c)2021, Yuri Serebrennikov ... | 33.415225 | 168 | 0.704256 |
bca2a2bc62ad95535a141e0ff18efdc48232e83b | 1,168 | dfm | Pascal | rad/13102020 (repeticoes, memo e listbox)/exercicios/ex1 (coelhos e ratos)/uEx1.dfm | mateusschwede/delphi | 9aa9e6cde1370c1ce52a6ab8db59b30fd557fe6d | [
"MIT"
] | null | null | null | rad/13102020 (repeticoes, memo e listbox)/exercicios/ex1 (coelhos e ratos)/uEx1.dfm | mateusschwede/delphi | 9aa9e6cde1370c1ce52a6ab8db59b30fd557fe6d | [
"MIT"
] | null | null | null | rad/13102020 (repeticoes, memo e listbox)/exercicios/ex1 (coelhos e ratos)/uEx1.dfm | mateusschwede/delphi | 9aa9e6cde1370c1ce52a6ab8db59b30fd557fe6d | [
"MIT"
] | 1 | 2021-12-14T01:14:55.000Z | 2021-12-14T01:14:55.000Z | object Form1: TForm1
Left = 0
Top = 0
Caption = 'Form1'
ClientHeight = 89
ClientWidth = 307
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object Lab... | 17.176471 | 32 | 0.58476 |
bcce6a02cfe0195ac46b0e5581e9260b04a4a041 | 3,810 | pas | Pascal | dependencies/Indy10/Protocols/IdSASLUserPass.pas | 17-years-old/fhirserver | 9575a7358868619311a5d1169edde3ffe261e558 | [
"BSD-3-Clause"
] | 132 | 2015-02-02T00:22:40.000Z | 2021-08-11T12:08:08.000Z | dependencies/Indy10/Protocols/IdSASLUserPass.pas | 17-years-old/fhirserver | 9575a7358868619311a5d1169edde3ffe261e558 | [
"BSD-3-Clause"
] | 113 | 2015-03-20T01:55:20.000Z | 2021-10-08T16:15:28.000Z | dependencies/Indy10/Protocols/IdSASLUserPass.pas | 17-years-old/fhirserver | 9575a7358868619311a5d1169edde3ffe261e558 | [
"BSD-3-Clause"
] | 49 | 2015-04-11T14:59:43.000Z | 2021-03-30T10:29:18.000Z | {
$Project$
$Workfile$
$Revision$
$DateUTC$
$Id$
This file is part of the Indy (Internet Direct) project, and is offered
under the dual-licensing agreement described on the Indy website.
(http://www.indyproject.org/)
Copyright:
(c) 1993-2005, Chad Z. Hower and the Indy Pit Crew. All r... | 28.646617 | 101 | 0.735696 |
Subsets and Splits
HTML Code Excluding Scripts
The query retrieves a limited set of HTML content entries that are longer than 8 characters and do not contain script tags, offering only basic filtering with minimal analytical value.