Skip to main content

Posts

Ebay Craze!!!

Spring is here and it is time for spring cleaning - sell everything you do not need on ebay, craigslist and if not sold; dump it!! Believe me you will never reach out for your 5 year old motherboard or your 3rd power supply. http://myworld.ebay.com/sedatiko

VS 2012 on Windows 7

Microsoft is great in many things but the application/version handling is mediocre. I got really frustrated with the Visual Studio 2012 crashes everytime I opened a project: Problem signature:   Problem Event Name: CLR20r3   Problem Signature 01: devenv.exe   Problem Signature 02: 11.0.50727.1   Problem Signature 03: 5011ecaa   Problem Signature 04: Microsoft.VisualStudio.Progression.LanguageService.CSharp   Problem Signature 05: 11.0.50727.1   Problem Signature 06: 5011cc19   Problem Signature 07: 131   Problem Signature 08: 43   Problem Signature 09: System.MissingFieldException   OS Version: 6.1.7601.2.1.0.256.1   Locale ID: 1033   Additional Information 1: 0a9e   Additional Information 2: 0a9e372d3b4ad19135b953a78882e789   Additional Information 3: 0a9e   Additional Information 4: 0a9e372d3b4ad19135b953a78882e789 Read our privacy statement online:   http://go.mi...

VMDisk

The purpose is to create a disk to keep contents shared across the VMs Following the instructions at http://www.vmware.com/support/ws45/doc/ws40_disks.html#1046465 Find your VM installation and run the following C:\Program Files\VMware\VMware Workstation> vmware-vdiskmanager.exe  -s 10GB -a ide -t 1 -c "D:\Virtual Machines\vmDisk.vmdk" (s: size, a: interface, t: type (0-3 for increase and size options), c:create) Creating disk 'D:\Virtual Machines\vmDisk.vmdk'   Virtual disk creation successful. How to browse a Vmdk? http://www.vmware.com/support/ws45/doc/disks_add_ws.html#1008949 Tried to add this newly created disk when the vm server was on by going to settings/add/hard drive/existing virtual. Got error: failed to add disk ide0:1 I shutdown the vm pc and add disk then try starting the machine. Then went to disk mgt in windows where I got the "Initialize Disk" prompt New Volume > Simple > Quick format and voila!!

Good Practices 1

Decided to write about a few practices I try to follow to be more efficient in the "IT realm" Use RDP Manager or Netop or whatever your remoting solution is to build a "directory" for your servers and back it up. Establish a hierarchy like this \ \ \ (Eg: NA\PROD\ECOM\firmweb1) Use a good folder structure to keep your project files, start a folder for each project. Use sub-folders for details on a particular part of project when too many files accumulate. Keep this folder close to root (C:\) back it up often Use SyncToy or any cloud solution to automate your backup. You will always skip manual backup. Use a batch (if you need control) file and schedule it periodically and make it email you If you produce Excel reports from SQL dumps, create a tab called query and paste your long complex SQL query into it. Learn Windows , Excel , Gmail shortcuts!!  Maintain an "Installer" folder and break it down to OS, Development Tools, Databases, Application Se...

ASP NET Identity Store

Never again write any login password logic. Generate all necessary components in your database using the following: cd c:\Windows\Microsoft.NET\Framework\v4.0.30319 c:\Windows\Microsoft.NET\Framework\v4.0.30319>aspnet_regsql.exe -A all -C "your_sql_connection_string" Start adding the following features: Membership Profile RoleManager Personalization SqlWebEventProvider script takes care of all and you have a login engine .. take it to next level integrating it with Facebook, Twitter etc..

How to choose a Cloud Provider

The wonderful site, http://cloudharmony.com/speedtest/run allows you to run tests on latency, small and large file download speed. Depending on the nature of your application, the choice of a provider is crucial (of course price is another important factor). In the tests, Large File Download category, Amazon S3 is the winner with an average of 15.33 Mb/s. This might be suitable for applications working with large files (pdfs, catalogs, repositories). Windows Azure Service is the winner of the small file category with around 2.5 Mb/s. The difference between the large and small file is significant. This order of magnitude difference is probably due to the overhead of authentication, establishing a connection etc. Once the pipe is secure and ready, you are probably bound to the limitations of your IPO as well as the cloud service provider's SLA. Latency might be a concern for high throughput applications - I would argue that self-hosting or keeping the applications close...