https://memnarch.bplaced.net/blog/delphinus/#projects
https://github.com/DGH2112/Package-Viewer
DGH Package Viewer
You can install Delphinus package manager and then install Package Viewer there. (Delphinus-Support)
Delphinus | Sparetime-Development
https://memnarch.bplaced.net/blog/delphinus/#projects
delphi tools api get all installed packages IOTAToDoServices IOTAProjectFileStorage IOTAProjectFileStorageNotifier IOTAProjectFileStorageNotifier
https://www.davidghoyle.co.uk/WordPress/
Notify me of everything… – Part 1 – Dave's Development Blog
https://www.davidghoyle.co.uk/WordPress/?p=1272
https://stackoverflow.com/questions/691989/full-vcl-class-browser-for-delphi
https://blog.dummzeuch.de/delphi-ide-explorer-expert/
https://docwiki.embarcadero.com/RADStudio/Sydney/en/Viewing_Hierarchy_of_Classes,_Interfaces,_and_Types_in_the_Class_Explorer
https://theroadtodelphi.com/2010/10/04/fun-with-delphi-rtti-rtti-explorer-lite/
https://theroadtodelphi.com/2010/10/04/fun-with-delphi-rtti-rtti-explorer-lite/types-view/
http://etutorials.org/Programming/mastering+delphi+7/Part+IV+Delphi+the+Internet+and+a+.NET+Preview/Chapter+22+Using+XML+Technologies/Programming+with+the+DOM/
https://blog.dummzeuch.de/delphi-ide-explorer-expert/
https://www.delphipraxis.net/140771-delphi-2010-rtti-demo-delphidiver%99.html
Delphi 2010 RTTI-Demo: DelphiDiver™
http://essmodel.sourceforge.net/
https://www.drbob42.com/delphi/property.htm
https://torry.net/pages.php?id=270
https://www.delphipraxis.net/
http://www.festra.com/eng/les03.htm
https://smartmobilestudio.com/
https://blog.dummzeuch.de/delphi-ide-explorer-expert/
https://www.drbob42.com/delphi/property.htm
http://www.choosepill.com/components/cpcrbtree.htm
https://delphisources.ru/pages/faq/master-delphi-7/content/LiB0097.html
DELPHI Object Inspector TPropertyAttributes
https://blog.karatos.in/a?ID=00100-8e5ec27e-d7c6-49f6-a6ab-4da08ef2cf04
RegisterPropertyEditorProc DesignEditors.TVariantProperty.GetAttributes
https://www.davidghoyle.co.uk/WordPress/
https://edn.embarcadero.com/article/40882
https://sourceforge.net/projects/radstudiodemos/
A JSON Media Type for Describing the Structure and Meaning of JSON
Current mirror drives multiple pulsed-current mirror comprising drives thermal-runaway effect
MOSFET - Current Mirror Explained
https://www.edn.com/current-mirror-drives-multiple-leds-from-a-low-supply-voltage/
https://www.youtube.com/watch?v=Jmu02dErhdg
paraffin Pickering emulsion
https://zh.wikipedia.org/wiki/%E7%9A%AE%E5%85%8B%E6%9E%97%E4%B9%B3%E6%B6%B2
https://www.sciencedirect.com/science/article/abs/pii/S1226086X17302824
https://www.mdpi.com/2073-4360/11/7/1115/htm
https://www.researchgate.net/publication/343387125_Water-in-oil_emulsions_stabilized_by_surfactants_biopolymers_andor_particles_A_review
surfactants emulsification water-in-oil emulsion wax
Saponification esterification Petrochemistry
SIO2 Sol-gel
iscussion of Sol-gel Preparation of Nanoscaled SiO2 Particles
https://hackaday.io/project/158802/logs
https://www.swmath.org/?term=traveling%20salesman
concorde directory Concorde TSP Travelling Salesperson Problems Solver qsopt
TSPLIB
Referenced in 696 articles [sw00983]
following problem classes are available. Symmetric traveling salesman problem (TSP) Hamiltonian cycle problem (HCP) Asymmetric ... traveling salesman problem (ATSP) Sequential ordering problem (SOP) Capacitated vehicle routing problem (CVRP...
Concorde
Referenced in 312 articles [sw04770]
computer code for the symmetric traveling salesman problem (TSP) and some related network optimization problems...
LKH
Referenced in 138 articles [sw04735]
Kernighan heuristic for solving the traveling salesman problem. Computational experiments have shown that...
TSPTW
Referenced in 37 articles [sw04709]
with time windows. The Traveling Salesman Problem with Time Windows (TSPTW) is the problem...
GTSP Instances Library
Referenced in 14 articles [sw14651]
Generalized Traveling Salesman Problem (GTSP) is an extension of the Traveling Salesman Problem (TSP), where...
Using the NEOS Server for concorde/TSP
Web Submission Form
Concorde data(xy-list file, L2 norm)
Enter the complete path to the file with the xy-list (distances measured in the Euclidean(L2) norm)
Concorde data(xy-list file, L1 norm)
Or, enter the complete path to the file with the xy-list (distances measured in the Manhattan(L1) norm)
Concorde data(TSPLIB format file)
Or, enter the complete path to the symmetric TSPLIB file
Algorithm Choose the algorithm (cqs=QSopt, con=CPLEX [default], lk=Lin-Kernighan) Concorde(CPLEX)
Concorde(QSopt)
Lin-Kernighan
CCR Exif
CCR Exif is a Delphi library to read and write Exif, IPTC and XMP metadata from JPEG, TIFF and PSD images. Requires Delphi 2006 or later to compile
http://www.compilers.net/Dir/Free/Compilers/Pascal.htm
....
CreateBlobStream Picture LoadFromStream
delphi - How to display BLOB Image from database in the TAdvStringGrid with the help of DataSet
https://vigges.net/qa/?qa=1132506/
CreateBlobStream is creating a TStream object, not a TMemoryStream.
Since you do not want to write the JPG to the database you should use bmRead instead of bmReadWrite.
I am not used to SQLite, but you will have to make sure that you are using a suitable binary datetype (BLOB).
JPG := TJpegImage.Create;
Picture:= TPicture.Create;
try
st := results.CreateBlobStream(TBlobField(results.FieldByName('image')), bmRead);
try
JPG.LoadFromStream(st);
Picture.Assign(JPG);
sg.AddPicture(i,j,Picture,True,ShrinkWithAspectRatio,0,haLeft,vaTop);
finally
st.Free;
end;
finally
JPG.Free;
Picture.Free;
end;
To ensure that the stored image is really a JPG you should write the JPG for testing with something like:
var
ms: TMemoryStream;
begin
ads.Open;
ads.Append;
ms := TMemoryStream.Create;
try
Image1.Picture.Graphic.SaveToStream(ms); // make sure having loaded a JPG
ms.Position := 0;
TBlobField(ads.FieldByName('image')).LoadFromStream(ms);
finally
ms.Free;
end;
ads.Post;
end;https://kifmesoft.wordpress.com/2006/06/09/memorystream-untuk-menampung-blob-field-image-picture/ https://codeverge.com/embarcadero.delphi.database/saving-a-jpg-in-a-graphicsfield/1067238 https://stackoverflow.com/questions/40357324/trying-to-save-a-bmp-from-pc-to-a-database-blob-fieldhttps://www.chestysoft.com/ximage/access1.asp https://forum.lazarus.freepascal.org/index.php?topic=43499.0
8051 IAR Keil Mikro SDCC
https://turbo51.com/
http://www.openrtos.net/RTOS_ports.html
https://www.intorobotics.com/8051-microcontroller-programming-tutorials-simulators-compilers-and-programmers/
8051 assembly machine code The following table lists the 8051 instructions by HEX code.
translate pascal 8051 Assembler Translation
http://www.8051projects.info/resources/8051-assemblers-and-ides.22/
https://stackoverflow.com/questions/15204459/is-there-any-8051-assembly-language-to-c-code-converter
https://www.microapl.com/asm2c/sample8051.html
Relogix™ Sample Translation (8051)
This sample translation uses the source code of a software-implemented I2C driver for the 80C51 based microcontroller.
http://bit.kuas.edu.tw/~8051/
8051 Development Tools
Varnish cache (Varnish)
Varnish cache,或稱Varnish,是一套高效能的反向網站快取伺服器。 Varnish目前被用在挪威最大的報社Verdens Gang上。 維基百科
Varnish Server - Free Technical Support eBook
https://info.varnish-software.com/varnish/support
The Guide To All Things Varnish. VCL, Caching Principles & More. Sign Up For A Free Copy! Talk To An Expert。Request A Free Trial。View Pricing Details。Sign Up For Newsletters。Highlights: Videos & Demos Available, Chat Option Available。
Varnish Cache
https://varnish-cache.org
Varnish HTTP Cache¶. I'm new here, please explain this Varnish thing. What is happening¶. 2022-03-15 - Varnish 7.1.0 is released¶.
Vanilla JS vue Svelte Notify JavaScript Bulletin Local storage Security Message Queuing communication
https://github.com/vuejs/awesome-vue
[DllImport("dxva2.dll")]
public static extern bool SetMonitorBrightness(IntPtr hMonitor, short brightness);
[DllImport("dxva2.dll")]
public static extern bool GetMonitorBrightness(IntPtr hMonitor, ref short pdwMinimumBrightness,
ref short pdwCurrentBrightness, ref short pdwMaximumBrightness);
[DllImport("dxva2.dll")]
public static extern bool GetNumberOfPhysicalMonitorsFromHMONITOR(IntPtr hMonitor,
ref uint pdwNumberOfPhysicalMonitors);
[DllImport("dxva2.dll")]
public static extern bool GetPhysicalMonitorsFromHMONITOR(IntPtr hMonitor,
uint dwPhysicalMonitorArraySize, [Out] PhysicalMonitor[] pPhysicalMonitorArray);
[DllImport("user32.dll")]
public static extern IntPtr MonitorFromWindow([In] IntPtr hwnd, uint dwFlags);
https://www.xanthium.in/Serial-Port-Programming-using-Win32-API#account
https://github.com/search?l=Pascal&q=tcomport&type=Code
https://github.com/manashmandal/SerialPort
https://github.com/GCY/SerialPortLibrary
https://torry.net/pages.php?s=89
delphi comport library asynchronous serial communications
https://www.codeproject.com/Articles/992/Serial-library-for-C
Windows Std Serial Comm Lib for Delphi 5.4.1 Review Screenshots Technical From: MarshallSoft Computing
https://www.youtube.com/watch?v=qQaqW0SAJjs
Precompiled Object Based Scripting Tool maXbox maXbox3 Precompiled Object Based Scripting Tool maXbox
http://www.softwareschule.ch/maxbox.htm
maXbox a script tool engine, compilerlib all in one exe! Build to teach/ develop under Windows and Linux (CLX) to set Delphi with no install. maXbox has RemObjects PascalScript smart code.
With include,events print, decompile, syncheck, templates, VM-, and DLL support. +Indy,Jedi,CGI,DMath,CAI,FLC5 & Systools.4.0 with CryptoBox4 and ComPort for Arduino!, OS Lib mX4- Build mX4.7.6.10
maXbox Pure Code Blaise Pascal Mag
CS5532AS Schematics channel temperature logger Schematics max3370 max1673 dg409dy ADC CS5532AS MAX854 channel teardown TC08 max31855 CS5532 module Schematics temperature couple esd ovp protection ad650 ads1256 AD7740 Mechatronics Project PSN-ADC24 4-Channel 24-Bit Analog to Digital Board