It’s my first open source project! I’ve gone open source with my Transactional File Manager. Check out the CodePlex link here.
Use any file system as a transactional file system! Transactional File Manager is a .NET API that supports including file system operations such as file copy, move, delete in a transaction. It’s an implementation of System.Transaction.IEnlistmentNotification (works with System.Transactions.TransactionScope).
More on Transactional File Manager in my original blog post on it. If you are interested in contributing to the project, let me know.
To list available contexts: kubectl config get-contexts To show the current context: kubectl config current-context…
kubectl exec -it <podname> -- sh To get a list of running pods in the…
# Create a soft symbolic link from /mnt/original (file or folder) to ~/link ln -s…
git config --global user.name "<your name>" git config --global user.email "<youremail@somewhere.com>" Related Commands Show current…
TypeScript/JavaScript function getLastMonday(d: Date) { let d1 = new Date(d.getFullYear(), d.getMonth() + 1, 0); let…
I had to do some SMTP relay troubleshooting and it wasn't obvious how to view…
View Comments
What makes .NET Transactional File Manager different from AlphaFS – another Transactional NTFS (TxF) implementation for .Net? http://alphafs.codeplex.com/
Anders:
Thanks for the link to AlphaFS. From the description, it provides a wrapper over Transactional NTFS (TxF). My library is for when you cannot use Transactional NTFS, which is only available in Windows Vista, Windows 7 and Windows Server 2008. Transactional NTFS also does not support network shares.
Chinh