Creality Ender 3 V3 SE
After printing and measuring a flow calibration cube, my results were the following.
- Flow rate in Cura: 89%
- Tested with layer height 0.2 and standard nozzle
- Confirmed for these materials:
- eSun PLA+
- Devil Design PETG
After printing and measuring a flow calibration cube, my results were the following.
Git has the useful function git log --first-parent that will show your branch without the commits introduced by merge commits. Sometimes I want the opposite (i.e., understand which commits were added by a merge), and there I find the following command useful: git log ^HEAD^ HEAD. This command will print the commits that are not (an ancestor of) the commit on your branch before the merge commit. Effectively, it will only show the commits brought in by the merge commit.
A more succinct but less readable version is git log ^@^ @ .
I measured the NUC8i7BEH:
When you wish to change the default link sharing type for Teams channels in Office/Microsoft 365, the SharePoint admin interface is lacking the options to configure for this. This is now also mentioned in the SharePoint documentation since this GitHub PR, but the updated SP documentation does not go into detail on the exacts steps to take. To bridge the gap, this post will provide a script that you can use.
The following code will solve this problem by looping through all SharePoint sites and setting the default link sharing option to “people with existing access”, which was my use case. You can tweak the script to your requirements.
$admin_site_url = "https://<YOUR_SITE>.sharepoint.com"
Connect-SPOService -Url $admin_site_url
$site_collections = Get-SPOSite -Limit All
Foreach ($site in $site_collections)
{
Write-Host $site.Url
Set-SPOSite -identity $site.Url -DefaultLinkToExistingAccess $true
}
Joplin-server is a nice solution to sync multiple Joplin instances. In fact, you can even use it to sync only a subset of your notebooks to certain devices by providing different user accounts for those devices and using the notebook-sharing functionality in Joplin-server.
I did find in Joplin-server that syncing shared encrypted notebooks didn’t always succeed in sharing the master keys. One workaround — if you own all the accounts, of course — is to use a single master key with a very strong password.
To achieve this:
.env if you used docker-compose). Go to the table ‘items’;[...] content LIKE '%activeMasterKeyId%'(should only hit for ‘info.json’);content and content_size fields of your primary account to those of your secondary account (you can determine primary and secondary by comparing the keys with those found in Joplin->Settings->Encryption);~/.config/joplin-desktop/database.sqlite and also insert the primary master key data into table ‘settings’ -> field ‘syncInfoCache’;