Archive for the ‘Soft/Programming’ Category

SMMsg suite and time zone for dates

Wednesday, March 11th, 2015

Today I fixed the issue in SMMsg suite for dates in .msg-files. Now the dates processed and converted to local time zone correctly (function FileTimeToElapsedTime)

The correct code is

  function FileTimeToElapsedTime(FileTime: TFileTime): TDateTime;
  var
    SystemTime, LocalSystemTime: TSystemTime;
    TZ: TTimeZoneInformation;
  begin
    Result := 0;
    try
      if FileTimeToSystemTime(FileTime, SystemTime) then
      begin
        if (GetTimeZoneInformation(TZ) <> 0) then
          if SystemTimeToTzSpecificLocalTime(@TZ, SystemTime, LocalSystemTime) then
            Result := SystemTimeToDateTime(LocalSystemTime);
      end;
    except
    end
  end;

mobile usability issues

Tuesday, March 10th, 2015

Google sent to me the notification to fix the mobile usability issues for blog.

As I use the WordPress with standard classic theme, I upgraded the theme and installed the WPTouch plugin. Now no any errors detected there

Архитектура приложения

Monday, February 2nd, 2015

http://habrahabr.ru/post/249453/

Неплохая статья про трехуровневую архитектуру приложения (слой хранения=БД, слой бизнес логики=сервер приложений, слой UI=клиентские приложения).

По крайней мере, автор на простом примере показал, почему нужно отталкиваться именно от бизнес процессов и БД проектировать уже в самом конце, а не основной упор делать на слое хранения.

Визуализация многомерных данных с помощью диаграмм Эндрюса

Saturday, January 24th, 2015

http://habrahabr.ru/post/248623/

Позволяет быстро найти “красную” группу, визуально выделяющуюся от остальных однотипных данных

Thursday, January 15th, 2015

Just now I released the new version 1.39 for MSGLibA/Message Reader Engine (ActiveX edition):

http://www.scalabium.com/msg/msgliba.htm
Now the compressed RTF body always processed without installed MS Outlook and winmail.dat files from Outlook 2010/2013 are supported too (RECIPTABLE attribute parsed)

новый вид аферы

Friday, January 9th, 2015

Сегодня получил письмо с “нотификацией” о том, что скоро экспайрится домен и ссылкой на продление. При этом ссылка ведет абсолютно на левый сайт.

Домен реальный, но продлен до 2017. По идее можно автоматически клацнуть для продления и попасть и на деньги, и на домен.

SVN

Thursday, January 8th, 2015

Today I installed the CVN in home network.

The VisualSVN 3.2.2 server on HP laptop with Windows 7 SR1 64 bits and Apache. Also the Tortoise 1.8.10 svn-client on every computers in network.

Instead VisualSVN I thought to install the CollabNet Subversion Edge or SilkSVN but VisualSVN is very useful and simple in setup.

useful online services

Tuesday, December 16th, 2014

Today I want to write about two useful services I found some time ago. And as result, I use these services now.

  • 33mail.com
    You may register any username (will be used as name for sub-domain at 33mail.com) and all mails which will be sent to this subdomain, automatically will be forwarded to your email address. For example, you registered as smith with your standard email [email protected]. Now any mails to [email protected], [email protected] etc will be forwarded to [email protected].
    You do not need create these aliases (aaa or anytext). These aliases will be created automatically when first message will be received by 33mail.comIn any time you may “cancel” any from used aliases and the mails (which will be sent to this address) will be returned with error (address not exist)As result, you may hide your real email address and use this service on some sites where email is required but you do not want to share your real address.
  • WeTransfer.com
    For example, you need send some files to another person. You may send these files by email but please note that usually the mail servers have some limitations (size of attachment, content etc).
    If you have the own site, you may upload these files to some remote directory (maybe add the protections with login and password if files are private) and send the link to download these file to your recipient(s).This service allow online to define the list of recipients, your email address and list of files with short text (like subject). As result, the recipient will receive the email with link(s) to download the file and you’ll get the notification when file(s) will be downloaded.

    The limited version (no more than 2Gb in one message) is absolutelly free.

 

SMDBGrid

Sunday, December 7th, 2014

New ShowMemoText property to display the memo content in cell (without height changes)

SMImport and BIFF4

Thursday, December 4th, 2014

In SMImport I added the support for old xlw-workbooks with XLSR_SHEETHDR biff record (supported in BIFF4 only for sheetnames) instead XLSR_BOUNDSHEET