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>
Last year, I have been accepted to a traditional MBA program. However, I dropped out and decided to get business education from online resources. I received an e-mail from Coursera website about Wharton Business Foundations Specialization. Wharton is #4 ranked MBA school according to US News and online specialization includes the following courses with a final capstone project. Introduction to Marketing (#2 in US News) Introduction to Financial Accounting (#2 in US News) Introduction to Operations Management (#2 in US News) Introduction to Corporate Finance (#1 in US News) Wharton Business Foundations Capstone Wharton does not have part-time MBA curriculum and I want to keep working while learning business. I signed up the same week I received the e-mail and it took me couple of months to complete the specialization (weekends only). I learned a lot during all these courses and had chance to apply them at work. Long story short, I would like to share my final Capstone pro
Comments