Christian Weiske

Results 276 comments of Christian Weiske

Ha, there we have it! ``` oauth_signature="anyone%2526" ``` This is double encoded. It happens because `OAuthConnection.cs#221` encodes the signature, and `OAuthBase.cs#211` also urlencodes the signature. This double-encoding breaks it. RFC...

@qirtaiba - could you try grauphel from git, branch `tomboyosxfix`? I've added a workaround for this bug.

The problem here is the double slash: `GET /owncloud/index.php/apps/grauphel//api/1.0`, which is caused by the comment > @qirtaiba - try adding a slash at the end of the sync url. >...

There are two places that build the URL, and both are doing it differently: - `Tomboy-library/Tomboy/Sync/WebSync/WebSyncServer.cs`: - `rootApiUrl = serverUrl + "/api/1.0"` - `Tomboy-library/Tomboy/Sync/WebSync/OAuth/OAuthConnection.cs`: - `apiRoot = rest_client.Get (rootUrl+ "api/1.0/");`

I think the best way would be to add a slash at the end of the serverUrl if it does not have one, and then always only add `api/1.0` without...

This could be the same issue as #39.

Works here. Speed depends on the GPU; here my GPU is slower than the CPU. CPU: AMD Ryzen 7 7700, 16 cores with 64GiB RAM GPU: AMD Radeon RX 7600,...

I guess this has to to with the fact that `mysqlfuse` seems to use transactions. The network protocol dump shows that we're in a transaction, and `autocommit` is not enabled:...

The first SQL query after the login is `set autocommit=0`, but that is not in the mysqlfuse codebase: ![2015-01-13 mysqlfuse autocommit](https://cloud.githubusercontent.com/assets/59036/5728460/a883e0fc-9b6a-11e4-8cb7-1670a4e5a51a.png)

This was a [change in the MySQLdb package](http://mysql-python.sourceforge.net/FAQ.html#my-data-disappeared-or-won-t-go-away): > Starting with 1.2.0, MySQLdb disables autocommit by default, as required by the DB-API standard (PEP-249). If you are using InnoDB tables...