PLAYER (TEAM) | CS2 CROSSHAIR CODE |
---|---|
s1mple crosshair code | CSGO-OCskf-qjunY-FE6T6-rsTR9-7SVvD |
ZywOo crosshair code | CSGO-Qzpx5-BRLw8-xFPCS-hTns4-GHDhP |
NiKo crosshair code | CSGO-Umk5s-uxPQA-eDfJW-qWMyR-znjPK |
m0NESY crosshair code | CSGO-hzrMn-jXu8b-R7VH4-hQ9aa-OnMHA |
dev1ce crosshair code | CSGO-yxFut-M6Vka-p4GAf-X5yZT-ey3JE |
Twistzz crosshair code | CSGO-7ANjy-XxRae-25YoE-7Bfnp-QQSFE |
This file contains 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
#!/bin/bash | |
# Check if the script is being run as root | |
if [ "$EUID" -ne 0 ]; then | |
echo "Please, run this script as administrator (root)." | |
exit 1 | |
fi | |
# Function to check and install a package if it's not already installed | |
check_and_install() { |
This file contains 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
gamemoderun mangohud %command% -vulkan -novid -high -nojoy -refresh 120 -freq 120 -threads 12 -fullscreen +cl_forcepreload 1 +fps_max 0 -tickrate 128 +violence_hblood 0 -nosync -noipx -noaafonts |
This file contains 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
#!/bin/bash | |
# Check if the script is being run as root | |
if [ "$EUID" -ne 0 ]; then | |
echo "Please, run this script as administrator (root)." | |
exit 1 | |
fi | |
# Function to check and install a package if it's not already installed | |
check_and_install() { |
🏆 telegram, twitter and discrod groups:
https://t.me/vagasparaosjuninhos
https://twitter.com/ViUmaVaga?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor
This file contains 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
test |
This file contains 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
# See this wiki page for more info: | |
# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info | |
print_info() { | |
info title | |
info underline | |
info "OS" distro | |
info "Host" model | |
info "Kernel" kernel | |
info "Uptime" uptime |
This file contains 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
public with sharing class AccountHandler { | |
public static void validateAccount (List<Account> accs) { | |
for(Account acc : accs){ | |
if(acc.CustomerPriority__c == null || acc.BillingCity == null || acc.BillingState == null || acc.BillingStreet == null || acc.BillingCountry == null){ | |
acc.addError('Error check the Customer Priority and Billing Address fields'); | |
} | |
} | |
} |
NewerOlder