Ewenty project(http://ewenty.com) passed the first round of 2011 Idea Competition which is sponsored by Shaker LaunchHouse and the Nance College of Business Global Accelerated MBA program but stuck in the final round.
Most of the time, we need to put space in between two HTML elements to separate them. There are bunch of ways to achieve this but the following are the most common ones that I use: Space character ( ) CSS Margin (margin-right/margin-left) Space character is so natural separate them but CSS margin gives more flexibility. Also recently, I found out that in IE 6, 7, 8, extra space characters between HTML elements are not rendered as intended. For instance regular space character ( ) is rendered without the space on older version of IE (older than 9) a b Result in IE 6, 7, 8: ab Whereas, if you use CSS (e.g. margin-right: 4px), all versions of IE renders it correctly a b Result in all IEs: a b
IN TRANSIT AT REST SSL/TLS Server Side Managed Keys Client Side Managed Keys S3 (SSE-S3) Each object is encrypted with a key. Amazon encrypts the key with a master key, which rotates regularly. AWS Key Management Service (SSE-KMS) Allows you to audit trail (who and when used the key), extra cost and you manage the master key. Customer provided (SSE-C) User manages the keys but encryption done by Amazon User encrypts the data on client-side and uploads to S3
On ASP.NET(v 4.0), there is default limit for JSON serialization and if you are exchanging large amount of data over JSON then you need to set the maximum length of JSON which can be sent/received before/after serialization. Here is the easiest way to set JSON length for serialization code which you can use in web.config file. This example sets the max length to ~2MB. <system.web.extensions> <scripting> <webServices> <jsonSerialization maxJsonLength="2000000"> </jsonSerialization> </webServices> </scripting> </system.web.extensions>
Comments