/usr/local/ΕΨΗΕΛΩΝ
/usr/local/ΕΨΗΕΛΩΝ
I tried this and looks like working in Outlook 2019. I would suggest to add STARTTLS support for the IMAP part as well. My server uses IMAP STARTTLS on 143...
Hi, I found the solution about that. The problem is trivial: directive doesn't set the attributes in the scope, so they won't be visible in the template. See also http://stackoverflow.com/a/17346130/471213
I'd like to contribute with my recent experience. I was aware of the theory of DoT/DoH not working on any VPN-based blocker. But now, with my unrooted Pixel 5 (AOSP...
@le9i0nx Listening on a port < 1024 requires rooting, and DNS66 is here to prevent the requirement of rooting. I think your solution is feasible, but there are a few...
I don't understand the status of the issue but I would like to contribute with my use case. I just need to **snapshot** a collection along with its already constructed...
Note: my code works with `-SNAPSHOT` versions too
Workaround: Keepass2 allows you to copy user & pass to clipboard, which is what I am going to do in the meantime
Of course Keepass2 is just any of the password managers available. There should be APIs to integrate with auto complete. Please bear in mind
It should be `CMD /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P ${SA_PASSWORD} -Q "SELECT 1" || exit 1` Because sqlcmd is not on PATH
I had to do a tricky and horrible alternative instead 🤢 I declared the custom repository as custom service and injected it ``` services.AddUnitOfWork() .AddCustomRepository() .AddScoped(serviceProvider => (MyEntityRepository)serviceProvider.GetRequiredService()); ``` Maybe...