For my link list:
- [WayBack] Azure Archives – Learn on Demand Systems
- [WayBack] Skill Me Up – on-demand labs and courses for mastering Microsoft Azure, Office 365 and more!
–jeroen
Posted by jpluimers on 2020/10/14
For my link list:
–jeroen
Posted in Azure Cloud, Cloud, Cloud Development, Development, Infrastructure, Software Development, Windows Azure | Leave a Comment »
Posted by jpluimers on 2020/10/14
There is StripTDS from SmartBear, but it is not open source or downloadable without their full product install.
So either find an open source tool that can strip TDS / TD32 symbol information from EXE files, or make one.
Related:
Delphi compiler generates debug information in TD32 format and stores it to special sections within the resulting PE file. Delphi places debug information into the sections that are located at the end of the file. StripTDS reads debug information from these sections and saves it into a separate .tds file. Then it removes the debug information sections from the PE module and corrects the module’s headers so that they contain the appropriate info. That is, StripTDS only works with sections that store debug info. It does not touch the code and data sections, so your application will work the way it was programmed.
–jeroen
Posted in Delphi, Development, Software Development | Leave a Comment »
Posted by jpluimers on 2020/10/14
The idea is to have a stack of things that can be later put into multiple micro-service pillars.
Helpful: enable “Track Active Item in Solution Explorer”:
origingit commit it, and push it withgit push -u origin master.
--------------------------- Security Warning --------------------------- You are about to install a certificate from a certification authority (CA) claiming to represent: localhost Windows cannot validate that the certificate is actually from "localhost". You should confirm its origin by contacting "localhost". The following number will assist you in this process: Thumbprint (sha1): 09EA054F 14D5D4CE 6B22C5F1 3E7EBDB5 F7583116 Warning: If you install this root certificate, Windows will automatically trust any certificate issued by this CA. Installing a certificate with an unconfirmed thumbprint is a security risk. If you click "Yes" you acknowledge this risk. Do you want to install this certificate? --------------------------- Yes No ---------------------------
https://localhost:<port>/api/values, then tries to download the result as values.json.This is configured in
Properties\launchSettings.jsonunder"launchUrl": "api/values"(for the browser URL) andControllers\ValuesController.csunder// GET api/valuesfor the actual implementation.
a
a
IHostedServiceHave any service related stuff implement IHostedService, so it is easy to deploy it in all kinds of processes:
Background information at .NET: IHostedService « The Wiert Corner – irregular stream of stuff.
–jeroen
Related:
Posted in .NET, .NET Core, Development, Software Development | Leave a Comment »
Posted by jpluimers on 2020/10/13
[WayBack/Archive.is] Dimensions – Chrome Web Store: A tool for designers to measure screen dimensions
This extension measures the dimensions from your mouse pointer up/down and left/right until it hits a border. So if you want to measure distances between elements on a website this is perfect. It doesn’t really work with images because there the colors change a lot pixel to pixel.
# Images & HTML Elements
Measure between the following elements: images, input-fields, buttons, videos, gifs, text, icons. You can measure everything you see in the browser.
# Mockups
Your designer handed you mockups as PNGs or JPEGs? Just drop them into Chrome, activate Dimensions and start measuring.
# Keyboard Shortcut
You can start and stop dimensions with the ALT + D shortcut.
# Area Boundaries
Wanna get the radius of a circle? Is text standing in your way? Press Alt to measure the dimensions of a connected area.
–jeroen
Via:
Posted in Chrome, Chrome, Development, Google, HTML, Power User, Software Development, Web Browsers, Web Development | Leave a Comment »
Posted by jpluimers on 2020/10/13
The Delphi compiler does not see a unicode non-breaking space (0x00A0 as whitespace, and the Delphi IDE does not warn you about it: [WayBack] Delphi revelations #2 – Space characters are not just space characters.
Given that this character was introduced in 1993, I wonder how the compiler tests look like.
These also will not be recognised as whitespace:
Related, as many other tools also do not properly support various whitespace characters:
Via: [WayBack] A Delphi “Aha” experience – Kim Madsen – Google+
–jeroen
Posted in Delphi, Development, Software Development, Unicode | Leave a Comment »
Posted by jpluimers on 2020/10/13
Neither solution on [WayBack] Find a Table on a SQL Server across all Databases – TechNet Articles – United States (English) – TechNet Wiki is nice, but the most readable (though undocumented) works:
sp_MSforeachdb'SELECT "?" AS DB, * FROM [?].sys.tables WHERE name like ''%your_table_name%'''
Similar solutions at:
–jeroen
Posted in Database Development, Development, SQL Server | Leave a Comment »
Posted by jpluimers on 2020/10/09
I had to lough so loud when I bumped into this [WayBack] The alphabet, in alphabetical order, in various languages – The Old New Thing.
I got there because I wanted a few examples of languages having more than 26 ASCII letters in their alphabet.
Basically all non English languages (:
–jeroen
Posted in Development, Fun, LifeHacker, Power User, Software Development, The Old New Thing, Windows Development | Leave a Comment »
Posted by jpluimers on 2020/10/08
When installing many Delphi versions, all have similar icons. So I asked this a while ago: [WayBack] I remember someone creating version specific icons for Delphi a while ago (around XE4 era I think), but cannot find them any more. Anyone who can prov… – Jeroen Wiert Pluimers – Google+.
Luckily Achim Kalwa responded quickly with a set of icons he designed and put them up at https://drive.google.com/drive/folders/1VoYeMmsr6FYgoe9EkR-psrV7aPO7Gv-v
Hopefully by now I have had time to edit them for more Delphi versions (he had them for Delphi XE7 until 10.2 Tokyo).
Delphi XE2 and lower icons seem to be at [Archive.is] Delphi versions and icons, mortenbs.com
–jeroen
Posted in Delphi, Development, Software Development | Leave a Comment »
Posted by jpluimers on 2020/10/08
Not sure why, but all of a sudden, SSMS did not code-complete any table or column names any more.
This shows where that setting is [WayBack] Configure IntelliSense (SQL Server Management Studio) | Microsoft Docs.
The odd thing: updating to a more fresh 17.x version solved the problem all by itself.
Anyway, you can change the settings under the section “All Languages”, “Transact-SQL” or “XML”, each in the “General” sub-section:
–jeroen
Posted in Database Development, Development, SQL, SQL Server, SSMS SQL Server Management Studio | Leave a Comment »
Posted by jpluimers on 2020/10/08
In the past, [WayBack] WebserviceX.NET used to be a great reference for publicly accessible SOAP web-services. Nowadays their listing contains ~2K of entries marked as DISCONTINUED in [WayBack] WebserviceX.NET API catalogue.
So below are a few sites mentioning web-services that have worked for me. No guarantee however they still work (:
Maybe I’m going to provide something myself.
–jeroen
Posted in Development, SOAP/WebServices, Software Development | Leave a Comment »