This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2025-03-23 18:54:00.062 ERROR (MainThread) [homeassistant.helpers.script.websocket_api_script] websocket_api script: Error executing script. Unexpected error for call_service at pos 1: Expecting value: line 10 column 1 (char 9) | |
| Traceback (most recent call last): | |
| File "/usr/local/lib/python3.13/site-packages/requests/models.py", line 974, in json | |
| return complexjson.loads(self.text, **kwargs) | |
| ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^ | |
| File "/usr/local/lib/python3.13/site-packages/simplejson/__init__.py", line 514, in loads | |
| return _default_decoder.decode(s) | |
| ~~~~~~~~~~~~~~~~~~~~~~~^^^ | |
| File "/usr/local/lib/python3.13/site-packages/simplejson/decoder.py", line 386, in decode | |
| obj, end = self.raw_decode(s) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| get_prop(vendor_init, persist_debug_prop) | |
| get_prop(vendor_init, default_prop) | |
| get_prop(hal_nfc_default, default_prop) | |
| get_prop(vendor_dpmd, vendor_default_prop) | |
| get_prop(rild, default_prop) | |
| set_prop(vendor_init, default_prop) | |
| set_prop(hal_param_default, property_socket) | |
| set_prop(vendor_init, vendor_display_notch_prop) | |
| set_prop(hal_fingerprint_default, vendor_default_prop) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Camera | |
| system_ext/lib64/[email protected] | |
| system_ext/lib64/[email protected] | |
| system_ext/lib64/[email protected] | |
| system_ext/lib64/[email protected] | |
| system_ext/lib64/[email protected] | |
| system_ext/lib/[email protected] | |
| system_ext/lib/[email protected] | |
| system_ext/lib/[email protected] | |
| system_ext/lib/[email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies] | |
| [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\ActiveDesktop] | |
| "NoChangingWallPaper"=dword:00000001 | |
| "NoAddingComponents"=dword:00000001 | |
| "NoClosingComponents"=dword:00000001 | |
| "NoDeletingComponents"=dword:00000001 | |
| "NoEditingComponents"=dword:00000001 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # update repositories | |
| yum update -y | |
| yum upgrade -y | |
| # download the necessary prerequisite components for mineos | |
| yum install -y epel-release | |
| curl -sL https://rpm.nodesource.com/setup_11.x | bash - |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright 2012 Google Inc. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |