Category: books
-
RSCG–Template Rendering- part 17
name Transplator nuget https://www.nuget.org/packages/Transplator/ link https://github.com/atifaziz/Transplator/ author Atif Aziz The Transplator is a small fast rendering engine to allow you to make rendering from any class instance. The code that you start with is The code that you will use is The code that is generated is Example Code: https://github.com/ignatandrei/RSCG_Examples/tree/main/TemplateRender
-
Automate the generation of the e-book
What I have found important in composing the e-book with examples was automating the work of generating the e-book. I have had a json file ( 10 years ago I have used xml ) and some specific folders with the chapters content. I have had also a template for each example chapter – that was…
-
Code as picture and PowerAutomateDesktop
I want to make an e-book from RCSG . For this I need to put the code into the book in a nice form. However,the Word document and the PDF and the HTML all have the ideas of formatting the code. How one can accommodate various formats ? Short answer: picture. What if I take…
-
Making a book from (examples) markdown
I want to make a book from my RSCG examples https://github.com/ignatandrei/RSCG_Examples . The easy way is to transform the .md files into separate chapters. I have tried initially node with markdown-pdf and pdf-merger-js,but I have been going then full speed with pandoc . To generate both Word and Index.md I have used this: pandoc.exe -d…
-
RSCG- the book
And now the book! If you liked the examples presented,you can support me by buying the book from https://amzn.to/3d4gRgy . Again,it is just for supporting me – you can find the whole examples at https://github.com/ignatandrei/RSCG_Examples
-
RSCG- AppVersion–part 2
name ThisAssembly nuget https://www.nuget.org/packages/ThisAssembly link https://www.clarius.org/ThisAssembly/ author Daniel Cazzulino The ThisAssembly.Info allows you access to the Assembly Information as constants,instead of going to reflection each time. I found useful to see the assembly version right away in any project that I have. The code that you start with is in .csproj <PropertyGroup>…
-
Console2SAAS- post mortem
It was interesting to wrote the mini e-book Console2SAAS with Daniel Tila. We have meet,at non-COVID time,at coffee shops and hubs and discussing about what each chapter should contain,why,and how to make more easy to read. In COVID times we met over Skype – it was slightly more difficult than meet in person. We have…
-
Console2SAAS – what I learned from seventh chapter
The 7th chapter of the Console2SAAS mini-e-book was the most interesting. The Web is a totally different beast from the Desktop application. The amount of work transforming a single user app to a web app ( not necessary a SAAS app) is not trivial. That is also a non trivial amount of work of thinking…
-
Console2SAAS – what I learned from sixth chapter
The 6th chapter of the mini e-book Console2SAAS it was about demonstrating to the reader the problems that has when having multiple clients using the Desktop application- and how to solve it. That shows to me that an architect is needed to proper engineer and maybe refactor the solution – if it grows beyond expectations.…
-
Console2SAAS – what I learned from fifth chapter
In the chapter 5 of Console2SAAS I wanted to show the user the challenges of having a client . Any new client will come with some different use case scenario,even for the smallest assumption in the original project. And here the power of DI can be shown. I have had zero problems trying to get…