I have been wondering what a laptop is like with just ubuntu. I am a .NET guy and I would have to convert to Apache, PHP, mySQL. Which are all free.
__________________________________________
Robert B. Dannelly, Jr. MCTS
Software engineering and business solutions blog featuring SaaS reviews, automation tools, and business insurance guides. Buyer-intent content designed to drive high-quality traffic and conversions.
I have been wondering what a laptop is like with just ubuntu. I am a .NET guy and I would have to convert to Apache, PHP, mySQL. Which are all free.
__________________________________________
Robert B. Dannelly, Jr. MCTS
Well, I must say life has been busy for November I got handed over 43 servers for a true dev to prod environment of SharePoint.






// Code to kill Word issues if WINWORD is running on the current machine
// if word is running the reports will throw an exception so // we must ensure the Microsoft Word application is not running Process[] wordProcess = System.Diagnostics.Process.GetProcessesByName("WINWORD");foreach (Process p in wordProcess)
{
p.Kill();
}
}
Best Linux File System for Performance Introduction Linux file systems play a critical role in how data is stored, accessed, and mana...