Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
ERROR: ld.so: object '/mnt/sda3/other/game/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/mnt/sda3/other/game/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored.
ERROR: ld.so: object '/mnt/sda3/other/game/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored.
ERROR: ld.so: object '/mnt/sda3/other/game/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
3897.321:0008:0009:trace:module:load_builtin_callback loaded ntdll.dll 0x1106f0 0x7bc10000
3897.321:0008:0009:trace:module:load_builtin_dll Trying built-in L"kernel32.dll"
3897.321:0008:0009:trace:module:load_dll looking for L"ntdll.dll" in L""
3897.321:0008:0009:trace:module:load_dll Found L"C:\\windows\\system32\\ntdll.dll" for L"ntdll.dll" at 0x7bc10000, count=2
3897.321:000
Computer Information:
Manufacturer: Unknown
Model: Unknown
Form Factor: Desktop
No Touch Input Detected
Processor Information:
CPU Vendor: GenuineIntel
CPU Brand: Intel(R) Core(TM) i7-6800K CPU @ 3.40GHz
CPU Family: 0x6
@jkalbhenn
jkalbhenn / nextcloud-other-mime-type.patch
Last active November 13, 2018 11:16
changes nextcloud 14 to determine mime-types from file content if the file exists and probably fixes some potential bugs
diff --git a/apps/dav/lib/Connector/Sabre/File.php b/apps/dav/lib/Connector/Sabre/File.php
index e46bdcb298..2401b7158a 100644
--- a/apps/dav/lib/Connector/Sabre/File.php
+++ b/apps/dav/lib/Connector/Sabre/File.php
@@ -165,7 +165,9 @@ class File extends Node implements IFile {
$this->changeLock(ILockingProvider::LOCK_EXCLUSIVE);
}
+
$target = $partStorage->fopen($internalPartPath, 'wb');
@jkalbhenn
jkalbhenn / nextcloud-mime-type.patch
Last active November 13, 2018 11:06
make the nextcloud file access control app (1.4.0) check file content instead of only extensions for mime types
diff -ur nextcloud-orig/apps/files_accesscontrol/lib/Operation.php nextcloud/apps/files_accesscontrol/lib/Operation.php
--- nextcloud-orig/apps/files_accesscontrol/lib/Operation.php 2018-11-12 12:18:56.191652967 +0000
+++ nextcloud/apps/files_accesscontrol/lib/Operation.php 2018-11-13 09:53:04.436715278 +0000
@@ -30,7 +30,7 @@
class Operation implements IOperation{
/** @var IManager */
- protected $manager;
+ protected $manager;