In 2021, Steam MAUs were 132 millions. I took the guess it would be about 160 millions in 2024. Then I used the Steam Hardware survey to evaluate how many GPU units were out there based on the percentage of each model. I tried to look for exact sales number for GPUs but never found them. That's the closest estimation I can think of in the gaming segment.
---- | |
Image: horizon | |
Original Size: 212798 | |
Dimensions: 1000 x 1000 px | |
Format: jpeg | |
Output size: 164895 | |
Format: png | |
Output size: 1672103 | |
Format: avif | |
Output size: 148628 |
root=true | |
[*] | |
end_of_line = lf | |
insert_final_newline = true | |
charset = utf-8 | |
indent_style = space | |
indent_size = 4 | |
[*.{c,h}] |
This script is useful when you have multiple SSH keys on your system, eventually having several SSH keys tied to different accounts for the same domain.
It makes use of the core.sshCommand
git configuration directive to assign a specific SSH key to a repository.
The script will look for SSH keys in ~/.ssh
This script is useful when you have multiple SSH keys on your system, eventually having several SSH keys tied to different accounts for the same domain.
It makes use of the core.sshCommand
git configuration directive to update recursively submodules of a repository.
You'll need bash
and git
installed on your system.
This script is useful when you have multiple SSH keys on your system, eventually having several SSH keys tied to different accounts for the same domain.
It makes use of the core.sshCommand
git configuration directive to assign a specific SSH key to a repository.
The script will look for SSH keys in ~/.ssh
This script is useful when you have multiple SSH keys on your system, eventually having several SSH keys tied to different accounts for the same domain.
It makes use of the core.sshCommand
git configuration directive to assign a specific SSH key to a repository.
The script will look for SSH keys in ~/.ssh
This script allows you to add all SSH keys from your ~/.ssh
folder to the SSH agent at once.
It is especially useful when you have several accounts tied to the SSH for the same domain.
The script will look for SSH keys in ~/.ssh
You'll also need bash
and ssh-add
(from OpenSSH or equivalent) installed on your system.
enum Keycode: UInt16 { | |
// Layout-independent Keys | |
// eg.These key codes are always the same key on all layouts. | |
case returnKey = 0x24 | |
case tab = 0x30 | |
case space = 0x31 | |
case delete = 0x33 | |
case escape = 0x35 | |
case command = 0x37 | |
case shift = 0x38 |