tamingthemormot.wordpress.com tamingthemormot.wordpress.com

TAMINGTHEMORMOT.WORDPRESS.COM

Taming the mORMot « Trying to make sense of the mORMot library and other musings

Trying to make sense of the mORMot library and other musings

http://tamingthemormot.wordpress.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR TAMINGTHEMORMOT.WORDPRESS.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

December

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Monday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.1 out of 5 with 11 reviews
5 star
4
4 star
4
3 star
3
2 star
0
1 star
0

Hey there! Start your review of tamingthemormot.wordpress.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

1.5 seconds

FAVICON PREVIEW

  • tamingthemormot.wordpress.com

    16x16

  • tamingthemormot.wordpress.com

    32x32

CONTACTS AT TAMINGTHEMORMOT.WORDPRESS.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Taming the mORMot « Trying to make sense of the mORMot library and other musings | tamingthemormot.wordpress.com Reviews
<META>
DESCRIPTION
Trying to make sense of the mORMot library and other musings
<META>
KEYWORDS
1 taming the mormot
2 menu
3 skip to content
4 articles
5 basics
6 tutorials
7 integration
8 willo
9 see the documentation
10 for more information
CONTENT
Page content here
KEYWORDS ON
PAGE
taming the mormot,menu,skip to content,articles,basics,tutorials,integration,willo,see the documentation,for more information,dependency injection,the contract,the service provider,simple and easy,the magic,why bother,to implement it,tips,for example,tags
SERVER
nginx
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Taming the mORMot « Trying to make sense of the mORMot library and other musings | tamingthemormot.wordpress.com Reviews

https://tamingthemormot.wordpress.com

Trying to make sense of the mORMot library and other musings

INTERNAL PAGES

tamingthemormot.wordpress.com tamingthemormot.wordpress.com
1

ORM – Modeling relationships « Taming the mORMot

https://tamingthemormot.wordpress.com/2015/07/14/orm-modeling-relationships

Trying to make sense of the mORMot library and other musings. ORM – Modeling relationships. July 14, 2015. Being able to populate data in a simple data store is great, but that is usually not good enough for any real world application. Most real world models would have some relationship between classes. Let’s take our Note example. If you have no idea what example I’m talking about, maybe start here first. Next, we add the new TNoteCase class to our model:. And now we can generate some data:. This is bec...

2

Investigating the ORM – persisting data « Taming the mORMot

https://tamingthemormot.wordpress.com/2015/07/09/investigating-the-orm

Trying to make sense of the mORMot library and other musings. Investigating the ORM – persisting data. July 9, 2015. The ORM (Object Relational Mapper) that ships with mORMot implements the Active Record pattern. All objects that you want to persist must inherit from TSQLRecord, which handles a lot of the marshaling and facilitates querying and verification. Let’s look at a simple sample:. Let’s say you have an application server that stores notes. That’s pretty simple! Great, how do we use it? Notice th...

3

Some mORMot basics « Taming the mORMot

https://tamingthemormot.wordpress.com/2015/07/06/some-mormot-basics

Trying to make sense of the mORMot library and other musings. July 6, 2015. MORMot’s architecture is based on a modular multi-tier system. Everything you do in mORMot will follow this pattern. The server component can be embedded in the same physical application, or it can be a proxy, passing the requests and queries along to another instance, which will work with the same pattern again. This entry was posted in Basics. Investigating the ORM – persisting data →. Leave a Reply Cancel reply.

4

Implementing your own password hash in mORMot « Taming the mORMot

https://tamingthemormot.wordpress.com/2015/07/31/implementing-your-own-password-hash

Trying to make sense of the mORMot library and other musings. Implementing your own password hash in mORMot. July 31, 2015. We have to authenticate against a legacy user database already populated, storing passwords encrypted in a proprietary format. The table also use the USERNAME field as the primary index. This means that we can’t use the ORM, as mORMot’s ORM requires a single integer primary key field. Authentication in mORMot is handled through a dedicates set classes: TSQLAuthUser and TSQLAuthGroup.

5

Getting started « Taming the mORMot

https://tamingthemormot.wordpress.com/2015/07/03/introduction

Trying to make sense of the mORMot library and other musings. July 3, 2015. As mORMot is actively being developed, the best way of getting hold of the library is to grab the latest, bleeding edge, code. We do that by:. Getting and installing git. Grab a copy of the repository. Configuring Delphi to use the library. Step 1: Get git! This is easy enough. Visit http:/ msysgit.github.io/. And download and install the appropriate package. Step 2: Get the code! I suggest something like. E: mORMot SQLite3;.

UPGRADE TO PREMIUM TO VIEW 5 MORE

TOTAL PAGES IN THIS WEBSITE

10

LINKS TO THIS WEBSITE

blog.synopse.info blog.synopse.info

Tag - Documentation - Synopse

http://blog.synopse.info/tag/Documentation

2016, Friday April 22. Support of Delphi 10.1 Berlin. On 2016, Friday April 22, 11:29 - Open Source. You should have noticed that Delphi 10.1 Berlin. Our Open Source projects. And their associated documentation. Have been updated to support this new revision. Any additional feedback is welcome. 2015, Friday December 11. Audit Trail for Services. On 2015, Friday December 11, 21:31 - mORMot Framework. We have seen previously how the ORM part of the framework is able to provide an. 2015, Tuesday November 17.

blog.synopse.info blog.synopse.info

Tag - Source - Synopse

http://blog.synopse.info/tag/Source

2016, Saturday April 9. AES-256 based Cryptographically Secure Pseudo-Random Number Generator (CSPRNG). On 2016, Saturday April 9, 11:37 - mORMot Framework. Everyone knows about the pascal random() function. It returns some numbers, using a linear congruential generator. With a multiplier of 134775813. In its Delphi implementation. It is fast, but not really secure. Output is very predictable, especially if you forgot to execute the RandSeed() procedure. The less predictable, the better. Profiling shows ...

blog.synopse.info blog.synopse.info

Tag - mORMot - Synopse

http://blog.synopse.info/tag/mORMot

2016, Saturday May 14. Anti-forensic, safe storage of private keys. On 2016, Saturday May 14, 11:14 - mORMot Framework. In any modern application, especially on Client/Server nTier architecture. Offers, we often have to persist some private keys in a safe way. Problem with such keys is that they consist in small amount of bytes (typically 16 or 32 bytes), easy to be left somewhere in disk or memory. Given the abilities of recent forensic data recovery methods. We have just added to our. Issue may appear:...

blog.synopse.info blog.synopse.info

mORMot Framework - Synopse

http://blog.synopse.info/category/Open-Source-Projects/mORMot-Framework

2015, Friday December 11. Audit Trail for Services. On 2015, Friday December 11, 21:31. We have seen previously how the ORM part of the framework is able to provide an. Audit Trail for change tracking. It is a very convenient way of storing the change of state of the data. On the other side, in any modern SOA solution, data is not at the center any more, but services. Sometimes, the data is not stored within your server, but in a third-party. Our framework allows to create an. 2015, Friday September 25.

blog.synopse.info blog.synopse.info

Tag - ORM - Synopse

http://blog.synopse.info/tag/ORM

2015, Friday December 11. Audit Trail for Services. On 2015, Friday December 11, 21:31 - mORMot Framework. We have seen previously how the ORM part of the framework is able to provide an. Audit Trail for change tracking. It is a very convenient way of storing the change of state of the data. On the other side, in any modern SOA solution, data is not at the center any more, but services. Sometimes, the data is not stored within your server, but in a third-party. Our framework allows to create an. But RTTI...

UPGRADE TO PREMIUM TO VIEW 1 MORE

TOTAL LINKS TO THIS WEBSITE

6

OTHER SITES

tamingthelyon.blogspot.com tamingthelyon.blogspot.com

Crêpes, Croissants, and Converts

Crêpes, Croissants, and Converts. For the next 18 months I will be serving a mission for the Church of Jesus Christ of Latter-Day Saints. I'll be serving in the France Lyon Mission which covers the southern half of France and an eastern part of Switzerland. I'm so excited for the opportunity to serve the people of France. Stay tuned for all of my amazing adventures! Monday, 17 August 2015. Bonjour tout le monde! This has been a super fun week! We also had a ward picnic this week which was tons of fun!

tamingthemarkets.com tamingthemarkets.com

tamingthemarkets.com

Click here to BUY NOW! 1 339- 222 - 5147.

tamingthemindmonkey.blogspot.com tamingthemindmonkey.blogspot.com

Taming the Mind Monkey

Taming the Mind Monkey. Do you have what it takes to be a 'Mind Monkey Master'? Thursday, July 25, 2013. Learn to Meditate and Help Me Transform Cancer. A few months ago I was diagnosed with Stage 4 esophageal cancer. Even with radiation and/or chemotherapy treatments the doctors offer me no hope for a cure. I know many people who have launched internet campaigns to receive donations to help them out in similar situations, but I don't really want to ask people to just give me money. I would rather gi...

tamingthemoneybeast.com tamingthemoneybeast.com

tamingthemoneybeast.com - Crazy Domains

Search and register domain names. World's cheapest domain names. 700 New generic domains. Move your domains to us FREE. Express cheap domain renewal. Get the domain name you want. Everything you need for your domains. Control your CNAME, MX and A records. Find who owns a particular domain. COM only $9.00 Get yours! Join The Domain Club. Fast, reliable space for your website. Defend your site against hackers. Secure your site and data. Get your own me@mydomain.com. Automatic Spam and Virus protection.

tamingthemormot.wordpress.com tamingthemormot.wordpress.com

Taming the mORMot « Trying to make sense of the mORMot library and other musings

Trying to make sense of the mORMot library and other musings. Implementing your own password hash in mORMot. July 31, 2015. We have to authenticate against a legacy user database already populated, storing passwords encrypted in a proprietary format. The table also use the USERNAME field as the primary index. This means that we can’t use the ORM, as mORMot’s ORM requires a single integer primary key field. Authentication in mORMot is handled through a dedicates set classes: TSQLAuthUser and TSQLAuthGroup.

tamingthemuse.livejournal.com tamingthemuse.livejournal.com

Taming the Muse

Dragging their asses back home one muse at a time. Welcome to a writing community that rewards those who know that writers write! Join us every week for a new prompt. The more weeks you write, the more awards you win. We welcome all fandoms, all genres, and all ratings. Prompt Tags and List. April 4th, 2017. Prompt #558 Giddy Partnership slashluv18 Harry Potter. Five Times Harry Ignored His Feelings and the One Time He Didnt. 558 – Giddy. April 1st, 2017. This week's prompt is:. 557 – Fresco. Comments an...

tamingthenoise.wordpress.com tamingthenoise.wordpress.com

Taming the Noise | An attempt to tame the beautiful craziness of my life.

An attempt to tame the beautiful craziness of my life. The blog has moved. June 12, 2009. 8212; tamingthenoise @ 1:39 pm. To keep up with the current blog. June 9, 2009. 8212; tamingthenoise @ 12:12 am. My two readers :). Might notice some changes in the next few days, depending on how much time I can find. I’ll still be using wordpress but the blog and store will be moved to my own site. This is going to give me a lot more flexibility with how I want my blog to look and run. The store here…. June 6, 2009.

tamingtheobstacle.wordpress.com tamingtheobstacle.wordpress.com

TAMING THE OBSTACLE | About obstacles, hairdos, the weather, about being a human, between other humans, on this planet.

31/07/2015 · 12:13 pm. Middot; 11:59 am. 23/05/2015 · 12:21 pm. The go no-goes (IV). Two days ago I finally finished this big one (126 x 185 cm), just when the sun peeked through. It’s called ‘The go no-goes IV’. And today it’s on display, at the finissage of the exhibition Border/Line, together with works on paper and walls by Suus van den Akker, Martien Bos, Jaron Beekes, Cathelijn van Goor, Milo and me. 1600-18.00 at Gallery Lokaal WV15, Wormerveerstraat 15, Amsterdam. 25/04/2015 · 1:10 pm. Middot; Ab...

tamingtheoctopus-themanyarmsofwriting.blogspot.com tamingtheoctopus-themanyarmsofwriting.blogspot.com

Taming the Octopus - The Many Arms of Writing

Teaching Writing - A voice from the trenches, for People, Parents and Teachers. April 3, 2015. Ease Email-Writing Stress: 7 Tips for Adults with ADHD. The Goldilocks Email – 5 Tips for Writing a Just-Right-Sized Email. By Kendra Wagner, MA. Jason hasn’t told anyone that he dreads emails and would much prefer just to call people! His work requires e-mailing to realtors about home sale updates, walk-in customers, or mortgage paperwork that finally arrived via FedEx. Sometimes agents will call him from ...

tamingtheox.blogspot.com tamingtheox.blogspot.com

Taming the Ox

Thursday, November 12, 2009. The mind tells us many things. The one thing it always bugs us about is the need to be “successful”. The need to do something. The need to always become…something other than what we are now. We are then haunted by mind making us regret the past and fear the future. What would success be from the perspective of the “Self”, “Buddha Nature” or our true reality? Wednesday, May 6, 2009. Spiritual Black Swans - Part 2. How does the spiritual person deal with this? Well he steps out...