Frikkie
Frikkie Van Wyk
Viljoenskroon, Free State, South Africa
:batsymbol: WELCOME TO MY PROFILE :batsymbol:

═════════════════════════════════════════════════════════════════

Alias: Frikkie / Mal Naai :CrowdControl:

Age: 36 :sotfood: Not a virgin BTW.

Pronouns/Gender: Bat/Man:steamsalty: A part of the SWAGGY++ community

Qualifications: BA drama and theatre studies, BSc Engineering, BSc in Psychology

Common Gym PR's: 115kg Bench, 270kg Squat, 80kg Row, 390kg Deadlift

Hobbies: Programming/ Acting/ Singing/ Gymer/:steamhappy:GAMING:steamhappy:

I speak 4 languages! : English, Isizulu, Thai, Afrikaans ( Some fluent, some not )

═════════════════════════════════════════════════════════════════

Swag lvl 10 - Swagged Enemies = 69 420 :steamthis:
Crack lvl 8 - Main Account for CS:GAAN / CS:TWEE
HIGHEST CSGO RANK: LEM
HIGHEST CS2 RANK/ELO: 15,671 elo, Silver 4
AWP and SCOUT Swagger , Swag 7 Master
HIGHEST DOTA RANK: ANCIENT
Sniper + Pudge Main :fcp_yena: Carry / Mid

═════════════════════════════════════════════════════════════════

“Acting is behaving truthfully under imaginary circumstances.”
“The gratification comes in the doing, not in the results.”
“Remember: there are no small parts, only small actors.”

═══════════════════════════ ೋღ☃ღೋ ════════════════════════════

Our deepest fear is not that we are inadequate. Our deepest fear is that we are powerful beyond
measure. It is our light, not our darkness that most frightens us.
We ask ourselves, ‘Who am I to be brilliant, gorgeous, talented, fabulous?’ Actually,
who are you not to be?

═══════════════════════════ ೋღ☃ღೋ ════════════════════════════

By compiling this, you can see if you're a dom poes,
if you're reading this then you should try it

#include <iostream>
#include <vector>
#include <cmath>
#include <algorithm>
#include <numeric>

void computeStats(const std::vector<int>& iq_values, double& mean, int& range, double& std_dev)
{ double sum = 0, sum_sq = 0;
auto [minIQ, maxIQ] = std::minmax_element(iq_values.begin(), iq_values.end());

for (int iq : iq_values) {
sum += iq; // Sum for mean
sum_sq += iq * iq; // Sum of squares for variance }

mean = sum / iq_values.size();
double variance = (sum_sq / iq_values.size()) - (mean * mean);
std_dev = std::sqrt(variance);
range = *maxIQ - *minIQ; // Efficient range calculation }

int main() { int YourIQ ; std::cout << "Enter your IQ: "; std::cin >> YourIQ ;

std::vector<int> iq_values = {100, 140, 98, 110, 156, 84, userIQ};

double mean, std_dev;
int range;

computeStats(iq_values, mean, range, std_dev);

std::cout << "\nStatistical Analysis:\n";
std::cout << "Mean IQ: " << mean << std::endl;
std::cout << "Range of IQ: " << range << std::endl;
std::cout << "Standard Deviation: " << std_dev << std::endl;

if (YourIQ >= 80) { if (YourIQ > 100) {std::cout << "Your IQ is above the average IQ of 100.\n"; }
else if (YourIQ < 100) { std::cout << "Your IQ is below the average IQ of 100.\n";}
else { std::cout << "Your IQ is exactly the average IQ of 100.\n";}}
else { std::cout << "You are deemed a dom poes with an IQ of " << YourIQ << ".\n"; }
return 0; }
:batsymbol: WELCOME TO MY PROFILE :batsymbol:

═════════════════════════════════════════════════════════════════

Alias: Frikkie / Mal Naai :CrowdControl:

Age: 36 :sotfood: Not a virgin BTW.

Pronouns/Gender: Bat/Man:steamsalty: A part of the SWAGGY++ community

Qualifications: BA drama and theatre studies, BSc Engineering, BSc in Psychology

Common Gym PR's: 115kg Bench, 270kg Squat, 80kg Row, 390kg Deadlift

Hobbies: Programming/ Acting/ Singing/ Gymer/:steamhappy:GAMING:steamhappy:

I speak 4 languages! : English, Isizulu, Thai, Afrikaans ( Some fluent, some not )

═════════════════════════════════════════════════════════════════

Swag lvl 10 - Swagged Enemies = 69 420 :steamthis:
Crack lvl 8 - Main Account for CS:GAAN / CS:TWEE
HIGHEST CSGO RANK: LEM
HIGHEST CS2 RANK/ELO: 15,671 elo, Silver 4
AWP and SCOUT Swagger , Swag 7 Master
HIGHEST DOTA RANK: ANCIENT
Sniper + Pudge Main :fcp_yena: Carry / Mid

═════════════════════════════════════════════════════════════════

“Acting is behaving truthfully under imaginary circumstances.”
“The gratification comes in the doing, not in the results.”
“Remember: there are no small parts, only small actors.”

═══════════════════════════ ೋღ☃ღೋ ════════════════════════════

Our deepest fear is not that we are inadequate. Our deepest fear is that we are powerful beyond
measure. It is our light, not our darkness that most frightens us.
We ask ourselves, ‘Who am I to be brilliant, gorgeous, talented, fabulous?’ Actually,
who are you not to be?

═══════════════════════════ ೋღ☃ღೋ ════════════════════════════

By compiling this, you can see if you're a dom poes,
if you're reading this then you should try it

#include <iostream>
#include <vector>
#include <cmath>
#include <algorithm>
#include <numeric>

void computeStats(const std::vector<int>& iq_values, double& mean, int& range, double& std_dev)
{ double sum = 0, sum_sq = 0;
auto [minIQ, maxIQ] = std::minmax_element(iq_values.begin(), iq_values.end());

for (int iq : iq_values) {
sum += iq; // Sum for mean
sum_sq += iq * iq; // Sum of squares for variance }

mean = sum / iq_values.size();
double variance = (sum_sq / iq_values.size()) - (mean * mean);
std_dev = std::sqrt(variance);
range = *maxIQ - *minIQ; // Efficient range calculation }

int main() { int YourIQ ; std::cout << "Enter your IQ: "; std::cin >> YourIQ ;

std::vector<int> iq_values = {100, 140, 98, 110, 156, 84, userIQ};

double mean, std_dev;
int range;

computeStats(iq_values, mean, range, std_dev);

std::cout << "\nStatistical Analysis:\n";
std::cout << "Mean IQ: " << mean << std::endl;
std::cout << "Range of IQ: " << range << std::endl;
std::cout << "Standard Deviation: " << std_dev << std::endl;

if (YourIQ >= 80) { if (YourIQ > 100) {std::cout << "Your IQ is above the average IQ of 100.\n"; }
else if (YourIQ < 100) { std::cout << "Your IQ is below the average IQ of 100.\n";}
else { std::cout << "Your IQ is exactly the average IQ of 100.\n";}}
else { std::cout << "You are deemed a dom poes with an IQ of " << YourIQ << ".\n"; }
return 0; }
Favorite Group
Girl Gamers - Public Group
Girl Gamers, Welcome to the Family
333,921
Members
4,865
In-Game
35,434
Online
31,332
In Chat
Eclipse Aug 24, 2025 @ 4:18am 
Mase Poes Plays with Cheaters Fat Roll Poes
Frikkie Mar 30, 2025 @ 10:52am 
Lmao
Coldsteel Mar 25, 2025 @ 8:11am 
Frikkie Mar 22, 2025 @ 5:40am 
Said by ---> Bottom fragger no one was calling out for cheats
Roshi [L2M] Mar 7, 2025 @ 5:27am 
RUBBADUBBADOO 21 Feb @ 4:01pm
This mans logic is, if you are better than him, you are cheater

Fully second that, probably the Drama teacher in him coming out:majinbuu:
Void Mar 7, 2025 @ 5:24am 
enjoy blue rank Mr 7.5k !!!:b3d_cry: