gentoo90
gentoo90
I had the same issue with `angular-12` and `spectator-11` and solved it by downgrading `spectator` to `8.3.2`. I think it has something to do with the new angular package format....
> https://github.com/bergercookie/awesome-albert-plugins/blob/master/plugins/remmina/__init__.py :open_mouth: There's another repo full of plugins?! Maybe it would be better to add them all here? Or at least mention the repo in the documentation? > Is...
There is [Geany plugin](https://github.com/codebrainz/geany-zencoding) for old Zen-Coding
I was able to make this work with @ameriles's `IsPhysicalFileNewerWithRelativePath` snippet plus a virtual path provider: ```C# using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Web; using...
`*_transacted` methods just call `*TransactedW` functions from WinAPI. There is [`RegDeleteKeyTransactedW`](https://docs.microsoft.com/en-us/windows/win32/api/winreg/nf-winreg-regdeletekeytransactedw) but there is no `RegDeleteTreeTransactedW`. But you can open transacted key and then delete everything in it with `delete_subkey_all`:...
Yes, I think this can be a part of winreg. When I started writing it I was thinking of a similar enum but ended up with `RegValue` struct just because...
Yes, looks like `HANDLE` should be thread safe https://github.com/rust-lang/rust/blob/master/src/libstd/sys/windows/handle.rs But anyway I'd want to test this kind of things before releasing it. Do you have any particular use case? Maybe...
Check out [`windows-acl`](https://docs.rs/windows-acl/0.2.2/x86_64-pc-windows-msvc) crate. Should be something like ```rust use windows_acl::acl::ACL; let acl = ACL::from_registry_path("CURRENT_USER\\Software", false, true)?; ```
It's not so simple unfortunately https://stackoverflow.com/questions/53009194/checking-if-registry-key-is-link-to-or-copy-of-another-one
I made a little [plugin for Caja](https://gist.github.com/gentoo90/08325ff68a27e09bc7e712412ebb5d93) (MATE's file manages), that shows sync status indicators on files:  @samschott, is there any way to subscribe to the status change events,...