Interesting: WinToUSB – Install and Run Windows/WinPE on a USB drive!.
Now lets find out how big the flash drive needs to be, then a speedy flash drive which is big enough.
–jeroen
Posted by jpluimers on 2014/04/22
Interesting: WinToUSB – Install and Run Windows/WinPE on a USB drive!.
Now lets find out how big the flash drive needs to be, then a speedy flash drive which is big enough.
–jeroen
Posted in Power User, Windows, Windows 8.1 | Leave a Comment »
Posted by jpluimers on 2014/04/22
Interesting: Open Source is a thankless job. We do it anyway. – Scott Hanselman.
–jeroen
Posted in Development, Open Source, Software Development | Leave a Comment »
Posted by jpluimers on 2014/04/22
Wow: Microsoft OneDrive for Business modifies files as it syncs | Myce.com.
For now Microsoft Cloud Storage is not the place for my data to be.
(Note: OneDrive used to be called SkyDrive)
The only cloud storage that worked for me without too much trouble is Copy.com. My referral there: https://copy.com?r=3NGul6.
–jeroen
Posted in Cloud Apps, Internet, Power User | Leave a Comment »
Posted by jpluimers on 2014/04/22
Years after Allen Bauer and a few others wrote about Delphi MultiCast events, the Spring4D framework now supports MultiCast events on 3 platforms:
Depending on the platform, the minimum required Delphi version is this (the develop branch builds in Delphi XE6):
There are plans for support on Mobile platforms, and Spring4D needs help with that:
So there is a need for an ARM solution not based on assembly in the Delphi code, preferably as cross-platform as possible. Read the rest of this entry »
Posted in Delphi, Delphi 2010, Delphi XE, Delphi XE2, Delphi XE3, Delphi XE4, Delphi XE5, Delphi XE6, Development, QC, Software Development, Spring4D | 1 Comment »
Posted by jpluimers on 2014/04/22
On my list of on-line tools: XML Pretty Print.
–jeroen
Posted in Development, Software Development, XML, XML/XSD | Leave a Comment »
Posted by jpluimers on 2014/04/22
After finding out that Raize Components 6 and Raize Components 5 updates for Delphi XE6 I checked Raize Software‘s latest news page and was glad to see that these also got updates:
The only one not yet having XE6 support is this one:
–jeroen
Posted in Delphi, Delphi XE6, Development, Software Development | Leave a Comment »
Posted by jpluimers on 2014/04/22
Just found out that a new version of Raize Components 6 with Delphi XE6 support got released.
Raize Components 6 actually supports Delphi 2009 through XE6 (and C++ Builder and RAD Studio).
Older Delphi versions are also supported by older Raize Component versions, as Ray Konopka posted last year:
- Raize Components 4 supported Delphi 5 through Delphi 2007.
- Raize Components 5 supported Delphi 7 through Delphi XE.
- Raize Components 6 supports Delphi 2009 through Delphi XE5 (now XE6).
via Raize Software Support Forums • View topic – Installing multiple versions of the Raize Components.
(In the above quote, I included the links to the various trial versions).
There is also the famous Demo program download RCDemo.zip and nice videos:
- From CodeRage 7: Effectively Using Raize Components.
- From CodeRage 6: UI Design with Raize Components and RAD Studio XE2.
- From CodeRage 5: UI Design with Raize Components.
For the dot version nitpickers, here are the current versions as of writing: Read the rest of this entry »
Posted in Delphi, Delphi 2005, Delphi 2006, Delphi 2007, Delphi 2009, Delphi 2010, Delphi 5, Delphi 6, Delphi 7, Delphi x64, Delphi XE, Delphi XE2, Delphi XE3, Delphi XE4, Delphi XE5, Delphi XE6, Development, Software Development | 3 Comments »
Posted by jpluimers on 2014/04/22
The first bulleted link below has been living in my drafts like forever (i.e. somewhere since mid June 2009), so time to write a bit about ISO 8601 and .NET.
First a few links about converting a DateTime into ISO 8601 string format:
Some solutions use the “K” as a time zone specifier. At first, I couldn’t find any documentation for it, not even Google Search for Google Search for “ssK” DateTime ToString returns anything useful.
Later on, I found The “K” Custom Format Specifier in Custom Date and Time Format Strings.
So my preferred solutions for me are these:
System.DateTime.Now.ToString("yyyy-MM-ddTHH:mm:ssK");System.DateTime.Now.ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssK");I avoid these:
System.DateTime.Now.ToString("o");System.DateTime.Now.ToUniversalTime().ToString("s") + "Z";–jeroen
–jeroen
Posted in .NET, .NET 2.0, .NET 3.0, .NET 3.5, .NET 4.0, .NET 4.5, C#, C# 2.0, C# 3.0, C# 4.0, C# 5.0, Development, ISO 8601, Software Development | 1 Comment »