blog.dummzeuch.detwm's blog – Programming is thinking, not typing (was: Common sense

blog.dummzeuch.de Profile

Blog.dummzeuch.de is a subdomain of Dummzeuch.de, ,

Description:Programming is thinking, not typing (was: Common...

Discover blog.dummzeuch.de website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site

blog.dummzeuch.de Information

HomePage size: 106.852 KB
Page Load Time: 0.891037 Seconds
Website IP Address: 217.160.0.44

blog.dummzeuch.de Similar Website

Punjabi Typing | Convert English to Punjabi - INDIA TYPING - ਪੰਜਾਬੀ
punjabi.indiatyping.info
Typing Agent - Typing Agent Online - Online Keyboarding
brookings.typingagent.com
TWM Wholesale LLC
gotwm.tirevault.net
Typing exercises, track students progress · Typing School
school.keyhero.com
Typing Scout - Faster typing means more spare time :)
school.typingscout.com
Online Punjabi Typing Test & Online English Typing Tutor | Translate English to Punjabi | Raavi Font
typing.khilare.com
#1 K-12 Typing Program | Typing Curriculum for Schools & Districts
ttl4.sunburst.com
Learn to one-hand typing with amusing and effective ways - Lilly Walters' One Hand Typing
one-hand-typing.typingstar.com

blog.dummzeuch.de Httpheader

Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=15
Date: Wed, 15 May 2024 17:38:33 GMT
Server: Apache
X-Powered-By: PHP/8.1.28
Vary: Accept-Encoding,Cookie
Cache-Control: max-age=3, must-revalidate
Last-Modified: Wed, 15 May 2024 17:19:20

blog.dummzeuch.de Meta Info

charset="utf-8"/
content="width=device-width, initial-scale=1" name="viewport"/
content="max-image-preview:large" name="robots"
content="WordPress 6.5.3" name="generator"
content="website" property="og:type"/
content="twm's blog" property="og:title"/
content="Programming is thinking, not typing (was: Common sense isn't)" property="og:description"/
content="https://blog.dummzeuch.de/" property="og:url"/
content="twm's blog" property="og:site_name"/
content="https://s0.wp.com/i/blank.jpg" property="og:image"/
content="" property="og:image:alt"/
content="en_US" property="og:locale"/
content="https://i0.wp.com/blog.dummzeuch.de/wp-content/uploads/2017/06/twm-profile-foto.jpg?fit=120%2C120&ssl=1"

blog.dummzeuch.de Ip Information

Ip Country: Germany
Latitude: 51.2993
Longitude: 9.491

blog.dummzeuch.de Html To Plain Text

isn’t) twm’s blog Programming is thinking, not typing (was: Common sense isn’t) Menu Home GExperts Download Documentation Donations Forum Bug Reports Feature Requests Compiling Frequently Asked Questions All posts about GExperts Delphi Tools IDE Explorer Expert Help Expert dzEditorLineendsFix Known Ide Packages Manager dzDelphiPaths dzBdsLauncher dzPrepBuild Projects Denkzettel Companion dzMdbViewer dzlib Library Buildtools Custom Containers Pack Open Source Projects Safe event hooking for Delphi IDE plugins Sie wollen mich einstellen? dzDebugVisualizers for Delphi 2005 and up New Embarcadero Quality portal – new hope Embarcadero has released Delphi 12.1 and at the same time opened their new Quality Portal. I have now spent more than an hour reproducing, documenting and reporting several long-standing bugs, some of which have been around since Delphi 11. Here are the links to my bug reports, if anyone wants to take a look (voting … Continue reading New Embarcadero Quality portal – new hope → dummzeuch Delphi 2024-04-07 1 Minute Universal Debug Visualizer for Delphi As mentioned in my previous post on dzDebugVisualizer I was thinking about writing a generalized debug visualizer which can be user-configured to register itself for any data type. Well, that debug visualizer now exists. It’s part of dzDebugVisualizer and called "Universal Visualizer for Delphi". It has got a configuration page in the Tools - Options … Continue reading Universal Debug Visualizer for Delphi → dummzeuch Delphi , dzDebugVisualizer 2024-03-30 2024-03-30 1 Minute Simplified Debug Visualizers for all my TNullableTypes After playing around with debug visualizers, I found that there is a very simple way to provide a visualiser for many record types: Just add a special method (I called it Dump) to those records that returns a string that you can then evaluate in the debugger and display in the debug windows. There are … Continue reading Simplified Debug Visualizers for all my TNullableTypes → dummzeuch Delphi , dzDebugVisualizer 2024-03-24 2024-03-24 2 Minutes Getting the current line number in Delphi Note to self: There is an easy way to get the current line number in Delphi, using the following function and JclDebug: [delphi] function GetCurrentLineNumber: Integer; var ModInfo: TJclLocationInfo; begin ModInfo := GetLocationInfo(ReturnAddress); Result := ModInfo.LineNumber; end; [/delphi] ReturnAddress is a compiler magic function in the system unit, introduced with Delphi XE2. TJclLocationInfo and GetLocationInfo … Continue reading Getting the current line number in Delphi → dummzeuch Delphi 2024-03-15 2024-03-15 1 Minute In recent Delphi you cannot rely on dividing by zero to raise an exception This is mostly a note to self: Having been stuck with Delphi 2007 for many years I didn’t notice that dividing floating point values by zero no longer raises an exception in recent Delphi versions. Apparently this changed around the time of Delphi 10.1, even though I found a blog post by Dalija Prasnikar saying … Continue reading In recent Delphi you cannot rely on dividing by zero to raise an exception → dummzeuch Delphi 2024-03-04 2024-03-04 1 Minute Debug visualizers for my TNullable types My dzlib contains several nullable data types which internally use an interface field to maintain the IsValid value as originally suggested by Alan Bauer in a post on his long defunct Codegear blog "The Oracle at Delphi" (links to the Internet Archive). Today I added debug vizualizers for these types to my dzDebugVisualizer package. Rather … Continue reading Debug visualizers for my TNullable types → dummzeuch Delphi , dzDebugVisualizer 2024-03-03 2024-03-03 1 Minute (Multi line) string Debug Visualizer for Delphi 10.2 The (multi-line) string Debug Visualizer previously available for Delphi 2005 to 2007 is now also implemented for Delphi 10.2 using the OTAPI interface. It shows the content of a string without quotes and with line breaks if it contains any. The implementation was much more complex than I thought. Originally I just used a simple … Continue reading (Multi line) string Debug Visualizer for Delphi 10.2 → dummzeuch Delphi , dzDebugVisualizer 2024-03-01 2024-03-03 1 Minute TColor debug visualizer for Delphi 10.2 and 12 I just extended my dzDebugVisualizer package to include a TColor debug visualizer for Delphi 10.2 and Delphi 12. With little change these will probably work for every Delphi Version that supports the neccessary ToolsApi functions, meaning = Delphi 2010. This is completely different code than I used before, but it still shows the color name(s) … Continue reading TColor debug visualizer for Delphi 10.2 and 12 → dummzeuch Delphi , dzDebugVisualizer 2024-02-27 2024-03-03 1 Minute GExperts Editor Enhancement tab I forgot to mention, that in the lastest GExperts Beta release for Delphi 12, the configuration tab for the Editor enhancement has been moved to a separate "Editor Enhancement" expert. dummzeuch Delphi , GExperts 2024-02-26 1 Minute GExperts 1.3.24 Beta1 for Delphi 12 I have just built an installer for GExperts 1.3.24 Beta1 for Delphi 12. Note the word Beta” in the release name! We are one step up from Alpha, there are still many bugs, but overall it seems to be stable. Most of the bugs manifest themselves as display glitches on high DPI monitors. If you … Continue reading GExperts 1.3.24 Beta1 for Delphi 12 → dummzeuch Delphi , GExperts 2024-02-24 2024-03-01 1 Minute Posts navigation Older posts Search blog.dummzeuch.de Search for: verpflichtende Angaben Impressum Datenschutz Follow me on @dummzeuch@mastodon.social Delphi Praxis [en] blub.dummzeuch.de dummzeuch dz@pluspora ✝dummzeuch RSS feeds from this blog All posts Delphi related posts GExperts related posts Open Source GExperts My Other Projects Categories Categories Select Category Android (11) Batch (2) blog (22) dBase (4) Delphi (489) ccpack (8) Delphi Pipe (3) DelphiIdeExplorer (12) DelphiToolsManager (1) dxgettext (15) dzBdsLauncher (10) dzDebugVisualizer (9) dzDelphiPath (5) dzLib (26) dzMdbViewer (1) dzPackageInst (1) dzPrepBuild (2) GExperts (182) KnownIdePackagesManager (4) Denkzettel (1) DOSBox (1) German Only (7) GIS (1) Google (4) Kindle (1) Lazarus (8) Denkzettel (3) dzFeedReader (1) Linux (50) ssh (2) xenserver (5) zfs (2) mastodon (2) MSOffice (1) none (5) Samba (7) SCM (11) git (1) GitHub (1) Mercurial (5) subversion (8) TortoiseSVN (3) SQL (1) thunderbird (6) VirusScan (1) Windows (60) Windows 10 (14) Windows 7 (9) Windows 8.1 (15) Windows XP (2) May 2024 M T W T F S S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 « Apr Archive Archive Select Month April 2024 (1) March 2024 (6) February 2024 (3) December 2023 (1) November 2023 (16) October 2023 (4) September 2023 (5) August 2023 (3) July 2023 (4) May 2023 (1) April 2023 (6) March 2023 (2) February 2023 (7) January 2023 (5) December 2022 (1) October 2022 (2) September 2022 (2) August 2022 (4) July 2022 (4) April 2022 (5) March 2022 (1) February 2022 (2) January 2022 (3) December 2021 (5) November 2021 (3) October 2021 (2) September 2021 (10) August 2021 (2) June 2021 (2) May 2021 (2) April 2021 (1) March 2021 (3) February 2021 (2) January 2021 (2) December 2020 (2) November 2020 (3) October 2020 (3) September 2020 (3) August 2020 (3) July 2020 (5) June 2020 (3) May 2020 (5) April 2020 (1) March 2020 (5) February 2020 (5) December 2019 (7) November 2019 (11) October 2019 (9) September 2019 (4) August 2019 (4) July 2019 (8) June 2019 (9) May 2019 (4) April 2019 (9) March 2019 (11) February 2019 (7) January 2019 (6) December 2018 (18) November 2018 (12) October 2018 (11) September 2018 (6) August 2018 (10) July 2018 (4) June 2018 (4) May 2018 (5) April 2018 (4) March 2018 (6) February 2018 (10) January 2018 (11) December 2017 (5) November 2017 (3) October 2017 (4) September 2017 (4) August 2017 (3) July 2017 (5) June 2017 (8) May 2017 (9) April 2017 (9) March 2017 (9) February 2017 (10) January 2017 (9)...

blog.dummzeuch.de Whois

Domain: dummzeuch.de Status: connect