-
MY PROJECTS
-
Recent Posts
- Git.Log
- Git.Revert
- Git. Clean
- Git. Reset
- Git. Amend
- Git. Making commits history clean in the branch
- Git. How do i squash commits?
- Delphi.Masterpiece.Connections and ini settings
- Delphi. Difference between virtual and non virtual constructor.
- Js.WebPack.TryoutsWithTwoApps
- Delphi.Masterpiece.What is the log path in masterpiece platform ?
- TpLink. Forward Port
- Delphi. ConstantArrays
- Delphi. Enum and strings
- Git.Add putty to System Variables
- How to install openssl cert on local machine and how to combine them?
- Delphi.ManagedTypes.Const
- JS. Send PostRequest from Browser Console
- React.AddLinterAndPrettier
- MockServerWorker Example
Categories
- Aptana
- Azure
- C#
- DataSnap
- DBExpress
- Delphi
- Delphi и сети
- Delphi. Язык программирования
- ExtJS
- FastReport
- FireDAC
- FireMonkey
- GIT
- ICS
- IDE
- IIS
- Indy
- InnoSetup
- javascript
- jQuery
- JSON
- LiveBindings
- MSHTML
- MySQL
- PHP
- REST
- Ribbons
- SMS
- SQL инструкции
- SVN
- TRichView
- UniGui
- WebBroker
- WinAPI
- Windows
- Алгоритмы
- Без рубрики
- Деревья
- Ищу ответ
- Компонентостроение
- Мои компоненты
- Начальный уровень
- Обработка исключений
- Парсинг
- Потоки(Threads)
- Регулярные выражения
- Тестирование приложений
Category Archives: Без рубрики
Git.Revert
will add commit to history that will revert commitHash commit history will not be overwritten
Posted in Без рубрики
Leave a comment
Git. Reset
–hard will erase all –mixed will move out from index –soft will be visible only on another commit, and don’t move out from index
Posted in Без рубрики
Leave a comment
Git. Amend
this will reset and make new commit and leaves the previous msg
Posted in Без рубрики
Leave a comment
Git. Making commits history clean in the branch
if i stay on my feature branch and want to sync with develop lets say it will put commits in feature branch to tip of the main merge develop into feature, overwrite history in my branch other option
Posted in Без рубрики
Leave a comment
Git. How do i squash commits?
Option number one Option number two In jetBrains products Git -> popup on selected commits -> squash Option number three In Tortoise Git Show Log -> Selected commits -> Squash // but here should be clean working tree
Posted in Без рубрики
Leave a comment
Delphi.Masterpiece.Connections and ini settings
Connection to postgres Adding ini file, for ex. Domain.Registry.Tests.ini Connecting in the code Watch settings from ini in the code For Oracle it will be IHostConnectionSetting in spite of IConnectionSetting
Posted in Без рубрики
Comments Off on Delphi.Masterpiece.Connections and ini settings
Delphi. Difference between virtual and non virtual constructor.
This difference only takes place when we use class of. Good explanation of it is on the StackOverflow. I realized an example from SO below.
Posted in Без рубрики
Comments Off on Delphi. Difference between virtual and non virtual constructor.
Js.WebPack.TryoutsWithTwoApps
Good example lives here. And here is first tryout – 2 apps, first loadind the second through Module Federation. And there was a problem about order of loading, leading to the following error. Key things are the following app1 loads … Continue reading
Posted in Без рубрики
Comments Off on Js.WebPack.TryoutsWithTwoApps