/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

golb.hplar.ch
| | bitsofco.de
10.1 parsecs away

Travel
| | Articles on frontend development and more.
| | www.raymondcamden.com
8.5 parsecs away

Travel
| | Looking into easier ways to work with IndexedDB for client-side storage.
| | qsantos.fr
11.9 parsecs away

Travel
| | Why? Well: The IndexedDB API is callback-based. With JavaScript being single-threaded, a blocking API would mean fully blocking the page, render and basic user interaction included, while the request is being processed. Although this is apparently good-enough for JSON.parse(), the W3C decided to make the IndexedDB API non-blocking. The first drafts for IndexedDB are from ... Continue reading IndexedDB is Weird
| | smsohan.com
30.8 parsecs away

Travel
| In a typical ASP.Net web form, we have a few controls and also validators associated with the controls. The most common validators are used for Required Field validation, Type validation, Regular Expression validation and so on. When we want to logically group the validators in a web form, we apply the same value for ValidationGroup property on the controls of a group and in this way, we create a logical division among our controls and the validation.