Nick Craig-Wood
Nick Craig-Wood
I love your tool - I've been using it a lot recently! My work flow generally is copy some bit of javascript, go to the tool, realise that it has...
Before this fix, Create was calling GetAttr (indirectly) which ends up doing a GetAttr on the file system, not the file handle. This is inefficient and causes problems for clients...
I'd like to be able to use avo to generate code from a go program into memory which I can call directly from the same program. Think implementing a JIT...
To make go-cache as useful as memcache it needs an upper limit on the amount of memory that it can use otherwise it is easy to cache too many things...
In the forum thread: https://forum.rclone.org/t/optimize-rclone-on-raspberry-pi-4-8gb/31741 it was pointed out that rcat is not checking checksums unless the `--checksum` flag is supplied. This is not as designed as we are calculating...
I'm considering dropping the Android builds for rclone from the main rclone repository as they aren't maintained. I'm not sure if you use these? I think probably not but this...
You seem to be using rclone's `client_id` in your code https://github.com/alx-xlx/goindex/blob/206e69d47571f6fd91eced5f93fcaf6ab2771bb8/goindex.js#L7 Please can you get your own? Its not too difficult, and I'm pretty sure using rclone's is against Google's...
I'm using oauth2 very succesfully in rclone (rclone.org). I'm having trouble with the hubic implementation though. It works perfectly nearly all the time, but every now and again it returns...
If you compile and run this program ```go package main import ( "fmt" "github.com/winfsp/cgofuse/fuse" ) func main() { fmt.Printf("fuse.O_APPEND = 0x%04x\n", fuse.O_APPEND) fmt.Printf("fuse.O_CREAT = 0x%04x\n", fuse.O_CREAT) fmt.Printf("fuse.O_EXCL = 0x%04x\n", fuse.O_EXCL)...
Hi! I'm trying to track down a performance issue with cgofuse vs bazil.org/fuse in rclone. Here is cgofuse mounting a local disk on Linux. ``` $ dd if=/tmp/1G of=/mnt/tmp/1G bs=128k...