Results 13 comments of Zillode

Thanks for the quick responses! It is true we aim for cross-platform support, and I'll fix the filepath.Join issue you mentioned. It's also nice to see that this library fixes...

Will https://github.com/rjeczalik/notify/commit/00b250008103ba9e5d8d4f126327d0edf48253f9 be merged in master?

Bone orientation is captured and available in the code where we [send OSC messages](https://github.com/Zillode/OSCeleton-KinectSDK/blob/d72f8442334cb5ceec08cb114a4f6d7f5fcb71dd/SkeletonBasics-WPF/TrackingInformation.cs#L88). You simply need to add another call there.

I'm also not convinced about the .git and .sparkleshare ignores as I also sync my .git folders. However, OS-specific temporary files should be filtered imo as they _generate_ conflicts outside...

I think we should reconsider this. We should ignore operating system files that are known to cause conflicts as soon as users start using Syncthing. My current list of such...

I agree with @flungo (wrt "comprehensive list") and @generalmanager for the implementation. Feel free to initiate a PR @flungo

Also useful for https://github.com/syncthing/syncthing/pull/1852 We need to check the CRC before overwriting a file during a pull.

when we are done pulling, we should move the original file and do something like: ``` os.Rename(filename, oldfile) defer func() { time.Sleep(5*time.Minute) if crc(oldfile) != crc_in_db_before_update { create_conflict() } else...