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
| """ | |
| Support for the google speech service. | |
| For more details about this component, please refer to the documentation at | |
| https://home-assistant.io/components/tts.google/ | |
| Note - this is a hack. It makes no attempt to update tests. It does not have all wavenet voices listed. | |
| It attempts to respect language requests from hass but this has not been tested. | |
| Google cloud gives the first 1 million characters of wavenet generation for free per month, if you exceed |
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_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\TheDivision2.exe\PerfOptions] | |
| "CpuPriorityClass"=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
| <?xml version="1.0" encoding="utf-16"?> | |
| <ArrayOfProfile> | |
| <Profile> | |
| <ProfileName>Destiny 2</ProfileName> | |
| <Executeables> | |
| <string>destiny2.exe</string> | |
| </Executeables> | |
| <Settings> | |
| <ProfileSetting> | |
| <SettingNameInfo /> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| vmware: | |
| - | |
| name: 'VMware NSX for vSphere' | |
| serial: null | |
| url: | |
| - 'http://software.onthehub.com/shared/publisher/VMware/VMware-NSX-Manager-6.2.0-2986609.ova' | |
| - | |
| name: 'VMware vRealize Suite 7 Enterprise' | |
| serial: null | |
| url: |
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
| tqdm | |
| numpy==1.21 | |
| numexpr | |
| h5py==2.10.0 | |
| opencv-python==4.1.0.25 | |
| ffmpeg-python==0.1.17 | |
| scipy==1.5.0 | |
| colorama | |
| tensorflow-gpu<2.9 | |
| tf2onnx==1.9.3 |
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
| # Exploited PS4 Blocklist (https://gbatemp.net/threads/aio-ps4-exploit-guide.497858/) | |
| #[community.playstation.net] | |
| asm.np.community.playstation.net | |
| ps4.updptl.np.community.playstation.net | |
| ps4.updptl.sp-int.community.playstation.net | |
| ps4updptl.eu.np.community.playstation.net | |
| ps4updptl.jp.np.community.playstation.net | |
| ps4updptl.jp.sp-int.community.playstation.net | |
| ps4updptl.uk.np.community.playstation.net |
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
| # Exploited PS4 Blocklist (https://gbatemp.net/threads/aio-ps4-exploit-guide.497858/) | |
| #[community.playstation.net] | |
| asm.np.community.playstation.net | |
| ps4.updptl.np.community.playstation.net | |
| ps4.updptl.sp-int.community.playstation.net | |
| ps4updptl.eu.np.community.playstation.net | |
| ps4updptl.jp.np.community.playstation.net | |
| ps4updptl.jp.sp-int.community.playstation.net | |
| ps4updptl.uk.np.community.playstation.net |
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
| #!/usr/bin/env bash | |
| # shellcheck disable=SC1091,SC2120,SC2317 | |
| # SOURCES | |
| # https://askubuntu.com/a/978750 | |
| # https://unixcop.com/enabling-exfat-support-on-ubuntu-22-04/ | |
| # https://askubuntu.com/a/51926 | |
| # https://wiki.archlinux.org/title/ClamAV | |
| # https://github.com/extremeshok/clamav-unofficial-sigs/blob/master/INSTALL.md |
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
| #!/usr/bin/env bash | |
| # shellcheck disable=SC2046,SC2155,SC2164 | |
| brew install doxygen pkgconfig sdl2 qt5 ffmpeg cmake openssl | |
| brew link --force openssl | |
| pkg-config --modversion openssl | |
| git clone --recursive https://github.com/citra-emu/citra-nightly.git | |
| cd citra-nightly/ | |
| git checkout d380980 |