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
| sudo apt install nvidia-driver-525 nvidia-dkms-525 | |
| sudo apt install ./cudnn-local-repo-ubuntu2004-8.9.0.131_1.0-1_amd64.deb | |
| sudo cp /var/cudnn-local-repo-ubuntu2004-8.9.0.131/cudnn-local-80259EFB-keyring.gpg /usr/share/keyrings/ | |
| sudo apt update | |
| sudo apt install libcudnn8 | |
| curl https://developer.download.nvidia.com/hpc-sdk/ubuntu/DEB-GPG-KEY-NVIDIA-HPC-SDK | sudo gpg --dearmor -o /usr/share/keyrings/nvidia-hpcsdk-archive-keyring.gpg | |
| echo 'deb [signed-by=/usr/share/keyrings/nvidia-hpcsdk-archive-keyring.gpg] https://developer.download.nvidia.com/hpc-sdk/ubuntu/amd64 /' | sudo tee /etc/apt/sources.list.d/nvhpc.list | |
| sudo apt update | |
| sudo apt install -y nvhpc-23-3-cuda-multi | |
| export LD_LIBRARY_PATH=/opt/nvidia/hpc_sdk/Linux_x86_64/23.3/REDIST/math_libs/11.8/targets/x86_64-linux/lib/ |
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 python3 | |
| import numpy as np | |
| import sounddevice as sd | |
| import soundfile as sf | |
| import whisper | |
| import ffmpeg | |
| #sd.default.device = [13, 13] | |
| #device_list = sd.query_devices() | |
| #print(device_list) |
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
| sudo apt install ddcutil | |
| sudo ddcutil detect | |
| # Display 1 | |
| # I2C bus: /dev/i2c-11 | |
| # EDID synopsis: | |
| # Mfg id: PHL | |
| # Model: PHL 243S7 | |
| # Serial number: UHB1832019552 | |
| # Manufacture year: 2018 |
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
| " All system-wide defaults are set in $VIMRUNTIME/debian.vim and sourced by | |
| " the call to :runtime you can find below. If you wish to change any of those | |
| " settings, you should do it in this file (/etc/vim/vimrc), since debian.vim | |
| " will be overwritten everytime an upgrade of the vim packages is performed. | |
| " It is recommended to make changes after sourcing debian.vim since it alters | |
| " the value of the 'compatible' option. | |
| runtime! debian.vim | |
| " Vim will load $VIMRUNTIME/defaults.vim if the user does not have a vimrc. |
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
| Fractal Forecasting | |
| Scalping | |
| Alligator Analysis | |
| Rate of Change Behavioral Analysis | |
| AROON Data Displayer | |
| RSI Indication | |
| Time-Series Forecasting | |
| Auto- and Moving Regression Methods |
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
| Single Trade: | |
| - MAE | |
| - MFE | |
| - ETD | |
| - Edge Ratio | |
| - Alpha Loss | |
| - Liquidity impact | |
| - Transaction cost analysis | |
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
| ♪♪ ヽ(ˇ∀ˇ )ゞ |
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
| #![feature(untagged_unions)] | |
| #[repr(C)] | |
| struct FatPtr<T> { | |
| pub data: *const T, | |
| pub len: usize, | |
| } | |
| #[repr(C)] | |
| union Repr<T> { |
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 asyncio | |
| class XDD: | |
| def __init__(self): | |
| self.items = [1,2,3,4] | |
| self.index = 0 | |
| async def __aiter__(self): | |
| return 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
| package main | |
| import ( | |
| "log" | |
| "net/http" | |
| "net/http/httputil" | |
| "encoding/base64" | |
| ) | |
| func main() { |
NewerOlder