Get directory name of “My Documents”

I’m at a client that has the users “My Documents” on a share drive, so that when you logon to any computer, you have your “My Documents” available. The question is, how to get that directory/path name? Why? You might want to write a C# program to access one of the files there, or you […]

AWS re:invent reinvent 2019 – Andy Jassy CEO AWS – My Notes

Amazon AWS re:invent reinvent 2019 – Andy Jassy CEO AWS – Notes 12/04/2019 Stats: 65,000 attendees, Public Sector Using: 10,000 Academic 25,000 Non Profits AWS NHitro Decided to design and build chips Bought Annapurna Labs (Chip Designers Builders from Israel), and design build chips themselves. Graviton ARM chip announced last year (A1 Instances) Article about […]

C# Import/Using statements for Microsoft SQL

What do you need to import with the “using” statement in C# to be able to work with SQL? For Microsoft using System.Data; using System.Data.SqlClient; System.Data includes the DataReader, DataAdapter, Connetions, Commands and so on (from ADO.NET). For Oracle using System.Data; using Oracle.ManagedDataAccess.Client; using Oracle.ManagedDataAccess.Types;