- Use Unibeast, with High Sierra 10.13.6
- Replace existing EFI/CLOVER/kexts/Other USBInjectAll.kext and VoodooPS2Controller.kext with latest TODO: remove unneeded KEXT's from boot
- Copy the following:
- Clover 4701, from Rehabman
- AppleALC v1.3.4+ for Audio + Lilu.kext (WT75 updates should be merged by now)
- latest WhateverGreen.kext
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
| from selenium import webdriver | |
| from selenium.common.exceptions import NoSuchElementException | |
| import time | |
| import unittest | |
| class ATest(unittest.TestCase): | |
| def setUp(self): | |
| self.browser = webdriver.Firefox() # Get local session of firefox | |
| def tearDown(self): |
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
| Needed to apt-get install postgres, postgresdev, sqlite3, sqlite3dev, g++, zlib, openssl, readline | |
| Used rbenv for ruby management, ruby 1.9.3-p392. | |
| Ruby needed to be compiled with zlib, openssl, readline (install those packages first with apt-get before installing ruby!) |
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
| import unittest | |
| import os | |
| import tempfile | |
| import re | |
| import shutil | |
| from mock import patch | |
| from reports import diskSpaceReport |
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
| def filter_timezones(timezone_groups): | |
| import re | |
| exclude = [ | |
| 'Etc', 'localtime', 'posix', | |
| 'posixrules', 'right', 'SystemV', | |
| ] | |
| tab_files_re = '.*\\.tab$' | |
| def is_kept(zone): | |
| return zone not in exclude and not re.match(tab_files_re, zone) |
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
| <?xml version="1.0"?> | |
| <FanControlConfigV2 xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <NotebookModel>HP ZBook Studio G3</NotebookModel> | |
| <Author>Geoff Thompson</Author> | |
| <EcPollInterval>3000</EcPollInterval> | |
| <ReadWriteWords>false</ReadWriteWords> | |
| <CriticalTemperature>75</CriticalTemperature> | |
| <FanConfigurations> | |
| <FanConfiguration> | |
| <ReadRegister>46</ReadRegister> |
18.04.3 was used, no kernel params needed for initial bootup and installation to succeed.
bbswitch works if the following udev rules, /lib/udev/rules.d/80-nvidia-pm.rules are created:
# Remove NVIDIA USB xHCI Host Controller devices, if present
ACTION=="add", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x0c0330", ATTR{remove}="1"
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
| Date: 2020-05-09 16:12:41 | |
| ID: 1 | |
| Error occured in: Global | |
| Count: 1 | |
| Message: ...nterface\AddOns\EMA-Classic\Modules\Talk-Classic.lua line 719: | |
| attempt to concatenate a nil value | |
| Debug: | |
| ...nterface\AddOns\EMA-Classic\Modules\Talk-Classic.lua:719: ForwardWhisperToMaster() | |
| ...nterface\AddOns\EMA-Classic\Modules\Talk-Classic.lua:664: ?() | |
| ...ibDataBroker\CallbackHandler\CallbackHandler-1.0.lua:119: |
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
| UEFI Protocol Detected | |
| -------------------------------------------------------------------------------- | |
| String Packages | |
| -------------------------------------------------------------------------------- | |
| Offset: Language: | |
| -------------------------------------------------------------------------------- | |
| 0x2AA74 en-US | |
| 0x3A13E fr-FR |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.IO.Ports; | |
| using System.Text; | |
| using Xamarin.Forms; | |
| namespace My_Climate_App | |
| { | |
| enum ResponseStatus | |
| { |