Eray Erdin (&mut self)

Results 43 comments of Eray Erdin (&mut self)

@EmreSURK I'm not dealing with shelf right now but you can shallow copy it if the context is a subtype of `Map` I believe. Assuming you have an immutable `Map`...

The issue still persists on master [adapter.py](https://github.com/ionrock/cachecontrol/blob/0fedbba7b740f0d03596adcf0fd88cdb2f1e653a/cachecontrol/adapter.py#L107). Some really have problems with it and there's not much solutions on the internet. I can say [elnuno](https://github.com/elnuno)'s [PR](https://github.com/ionrock/cachecontrol/pull/151) works. I just changed...

I had the issue #28. I solved it by using `subprocess.Popen`. ```python import subprocess (stdout, stderr) = subprocess.Popen(["python", "manage.py", "yourcommand"], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate() # assert something with stdout and stderr ```

Same here with a fixture. Example code: ```rust fixture keys_dir() -> PathBuf { setup(&mut self) { let keys_dir = get_keys_pdir(); fs::create_dir_all(&keys_dir).unwrap(); keys_dir } tear_down(&mut self) { fs::remove_dir_all(self.val); } } ```...

Ok, I have solved my issue *somehow* but this "expected one of `!` or `::` here" error might mean something else is wrong with the code. Even in some cases,...

Same issue: ``` GStreamer element autoaudiosink not found. Please install it (WebKitWebProcess:141658): GLib-GObject-WARNING **: 01:59:06.463: invalid (NULL) pointer instance (WebKitWebProcess:141658): GLib-GObject-CRITICAL **: 01:59:06.463: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed ``` on...

it does not work, here is the environment: `tauri.conf.json` is as below: ```json { "$schema": "../node_modules/@tauri-apps/cli/schema.json", "build": { "beforeBuildCommand": "", "beforeDevCommand": "", "devPath": "../dist", "distDir": "../dist" }, "package": { "productName":...

@spirityy Can you do below? ```bash rm src-tauri/target/release/bundle/appimage/*.AppDir/ -rfv ``` I have just realized that it fails to build similar to your case if `.AppDir` directory already exists.

> When I have upgraded Dart SDK , app have caused the same issue. When I have downgraded the Dart SDK, Hive started working as expected. Solution is downgrading Dart...

Tried with `println` and have the same behavior. The issue seems to not be related to fern. Feel free to close.