Using git on powershell, and linking up password based ssh key for a push August 02, 2026 git config core.sshCommand "ssh -i path_to_private_key -o IdentitiesOnly=yes" git remote set-url origin git @ github.com:pathtorepo push -u origin main Note, this saves the key path to the git config file Read more
Get SSH Host Finger Print from WinSCP August 02, 2026 So obvious I missed it, Once connected, click the lock icon in the GUI, and the host info will pop up Read more
Html Editor April 13, 2026 A nice web based HTML editor to consider. Froala - Looks good WYSIWYG HTML Editor | Rich Text Editor Online Read more
debug the actual table name being used in EF February 15, 2026 AppDBContext _context = new (); var entityType = _context.Model.FindEntityType( typeof (ContractorProfession)); Console.WriteLine( "Entity: " + entityType.Name); Console.WriteLine( "Table: " + entityType.GetTableName()); Console.WriteLine( "Schema: " + entityType.GetSchema()); Read more