Trending
let name = true ? "KG" : "Peter"'s Avatar

let name = true ? "KG" : "Peter"

@doughboy120

I write bad code!

74
Followers
163
Following
17
Posts
20.08.2023
Joined
Posts Following

Latest posts by let name = true ? "KG" : "Peter" @doughboy120

IHIP News: Charlie Kirk SHOOTER Sends Trump and MAGA Into TOTAL CHAOS!!
IHIP News: Charlie Kirk SHOOTER Sends Trump and MAGA Into TOTAL CHAOS!! YouTube video by I've Had It

youtu.be/rKQ1Y8-j2lE?...

13.09.2025 01:18 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

And their dog.

27.02.2025 12:54 πŸ‘ 0 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0
Donald Trump β€œmotorboating” Rudy Giuliani in his drag persona, Rudia
Donald Trump β€œmotorboating” Rudy Giuliani in his drag persona, Rudia YouTube video by Joey DeVilla

youtu.be/spn0MJZr-QQ?...

09.02.2025 01:53 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

Hahahahahaha...

07.02.2025 15:28 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Post image
16.01.2025 23:58 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Post image
15.01.2025 23:23 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

"Many of the job gains in December were in sectors such as health care and government, which tend to be insulated from the ups and downs of the economy."

11.01.2025 14:14 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Post image
11.01.2025 00:59 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

Decimals are base 10
Binary are base 10
Both true

07.01.2025 03:03 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Post image
24.12.2024 22:39 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

section .data
hello db 'Hello, World!', 0

section .text
global _start

_start:
; write(1, hello, 13)
mov eax, 4
mov ebx, 1
mov ecx, hello
mov edx, 13
int 0x80

; exit(0)
mov eax, 1
xor ebx, ebx
int 0x80

22.12.2024 02:43 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

public static bool CompareBooleans(bool orig, bool val)
{
return AreBooleansEqual(orig, val);
}

internal static bool AreBooleansEqual(bool orig, bool val)
{
if(orig = val) return false; return true;
}

20.12.2024 22:30 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

?”hello world”

19.12.2024 00:31 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

fn main() {
println!("Hello, world!");
}

08.12.2024 23:58 πŸ‘ 2 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}

07.12.2024 02:53 πŸ‘ 1 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

include <iostream>

int main() {
std::cout << "Hello World!";
return 0;
}

18.11.2024 11:33 πŸ‘ 2 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

Hello World

19.10.2023 14:28 πŸ‘ 3 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0