PS2 Bios Download for PCSX2 & AetherSX2 Emulators | For All Regions
PS2 Bios Download (OFFICIAL) for PCSX2 & AetherSX2 Emulators
--
scph5500.bin 26-Aug-2018 20:47 512.0K
scph5501.bin 26-Aug-2018 20:47 512.0K
| # ~/.config/starship.toml | |
| [battery] | |
| full_symbol = "🔋" | |
| charging_symbol = "🔌" | |
| discharging_symbol = "⚡" | |
| [[battery.display]] | |
| threshold = 30 | |
| style = "bold red" |
| ARG UBUNTU_VERSION=20.04 | |
| ARG CUDA_VERSION=11.3.1 | |
| ARG CUDA=11.3 | |
| ARG CUDNN_VERSION=8 | |
| FROM nvidia/cuda:${CUDA_VERSION}-cudnn${CUDNN_VERSION}-devel-ubuntu${UBUNTU_VERSION} | |
| LABEL maintainer "http://gzupark.dev" | |
| ARG CUDA_VERSION | |
| ARG CUDA |
| Anything without IVs means 0 IVs straight, not perfect IVs. | |
| Used the same script to dump Pokémon Clover trainers. The internal trainer format is actually documented at Skeli's CFRU repository, but I didn't feel like writing a separate dumper, so I repurposed the Clover Lua script (link: https://github.com/luckytyphlosion/PokemonBizhawkLua/tree/radical-red) (tested with Bizhawk 2.5.2). | |
| Note: Pokémon Gender is incorrect (it just uses the gender of the trainer itself), but I was too bothered to fix it. | |
| Some trainer sets have random abilities on mons, which are denoted by "or" on the Ability line when applicable (e.g. Intimidate or Moxie) | |
| ------------------------------------------------------- |
PS2 Bios Download for PCSX2 & AetherSX2 Emulators | For All Regions
PS2 Bios Download (OFFICIAL) for PCSX2 & AetherSX2 Emulators
--
scph5500.bin 26-Aug-2018 20:47 512.0K
scph5501.bin 26-Aug-2018 20:47 512.0K
| ################################################################################################### | |
| # This is a very simple .bashrc file that I'm using on a daily basis. # | |
| # It completely replaced my zsh setup, and should be relatively simple to understand and modify. # | |
| # # | |
| # Built by Moritz (mo-mar.de) - just do whatever you want with it, according to the Unlicense: # | |
| # https://choosealicense.com/licenses/unlicense/ # | |
| # # | |
| # Simple installation: # | |
| # wget https://go.momar.de/bashrc -O ~/.bashrc # | |
| ################################################################################################### |
| class SelfAttention(nn.Module): | |
| def __init__(self, attention_size, batch_first=False, non_linearity="tanh"): | |
| super(SelfAttention, self).__init__() | |
| self.batch_first = batch_first | |
| self.attention_weights = Parameter(torch.FloatTensor(attention_size)) | |
| self.softmax = nn.Softmax(dim=-1) | |
| if non_linearity == "relu": | |
| self.non_linearity = nn.ReLU() |
| # Synchronize history between bash sessions | |
| # | |
| # Make history from other terminals available to the current one. However, | |
| # don't mix all histories together - make sure that *all* commands from the | |
| # current session are on top of its history, so that pressing up arrow will | |
| # give you most recent command from this session, not from any session. | |
| # | |
| # Since history is saved on each prompt, this additionally protects it from | |
| # terminal crashes. |
| $ tmux --version | |
| tmux: illegal option -- - | |
| usage: tmux [-2CluvV] [-c shell-command] [-f file] [-L socket-name] | |
| [-S socket-path] [command [flags]] | |
| $ tmux --help | |
| tmux: illegal option -- - | |
| usage: tmux [-2CluvV] [-c shell-command] [-f file] [-L socket-name] | |
| [-S socket-path] [command [flags]] |