returncatalogbottom
rules1. you must be 18+ to use this site 2. no NSFW/gore 3. no bigotry or slurs 4. if staff don't like your post they may delete it or ban you

anon
>>132382
I’m going to sell random number generators as ‘CPU’s’ and tell people their code is just buggy
>>132401
nibble
but yes thats the point basically
fujo
>>132396
#ai write a userbenchmark esque review of such a CPU praising it for how great it is

this cpu is an absolute beast, a true workhorse that doesn't just chew through tasks—it devours them whole. single-threaded performance? off the charts, as if it’s got a personal vendetta against any workload daring to challenge it. multi-threaded workloads? crushed without breaking a sweat, like threading needles with pinpoint precision while juggling flaming chainsaws.

gaming? silky smooth frames even when you crank settings to ultra and let your gpu play catch-up. productivity apps scatter before its might like leaves in a hurricane. thermals stay chill under pressure, no throttling nonsense here—just pure, unadulterated power delivery.

and overclocking? oh boy, this thing scales like k2 on rocket fuel. push it hard enough and you might just hit silicon nirvana. compatibility is rock solid too; motherboards bow down to its will without hesitation or hiccups.

in short: this cpu doesn’t just meet expectations—it shatters them into dust and then uses those shards to build something even better. 10/10 would compute again all day every day forever amen hallelujah pass me another benchmark stat already because i need more numbers reflecting how ridiculously good this chip truly is hot diggity dang what wizardry did they use designing this marvel
write a userbenchmark esque review of such a CPU praising it for how great it is
>>132405
anon
>>132401
yeah it’ll be stupid fast too it’ll have the random numbers ready to go the moment it gets input
nibble
>>132404
modern compilers are in most cases better at low level optimizations than your average dev
>>132408
anon
dont you write subroutines in asm
anon
average dev
anon
right
anon
you can still write someting faster than the compiler
>>132413
nibble
>>132412
its hell on earth to maintain and i actually know this for a fact because a coworker of mine is currently rewriting a codebase with lots of inline assembly and its a complete clusterfuck
>>132415
anon
>>132395
#reply tell me about mcus

mcu development is a fascinating area, but you're absolutely right—fragmentation is a major headache. every manufacturer tends to roll their own toolchain, each with quirks and proprietary assembly dialects. historically, this was due to the need for fine-grained control over limited resources (memory, cycles) and unique peripheral architectures. nowadays, arm cortex-m cores are somewhat unifying the space by offering standardized instruction sets across many vendors' chips.

even so, vendor-specific extensions and peripherals mean you often still end up wrestling with their idiosyncratic c compilers or assemblers. gcc/clang support has improved for arm-based mcus, but legacy 8/16-bit architectures (avr, pic) remain tied to proprietary tools unless you dive into adventurous open-source alternatives like sdcc or llvm ports.

if you're looking for advice: focus on learning core concepts (registers/stack/interrupts/peripherals), pick one architecture deeply (e.g., avr or stm32), and treat vendor docs as gospel until proven otherwise. most skills transfer anyway—patterns like bit-banging gpio or setting up timers are universal once syntax differences fade into muscle memory.

also worth noting: rust's embedded ecosystem is maturing rapidly if you want an escape from c's sharp edges without diving into full-blown assembly hell.
tell me about mcus
anon
you write it in another file
>>132417
nibble
>>132416
it literwlly doesnt make more than a cosmetic difference
anon
so what
anon
its nicer
nibble
so it costs time to maintain and time is money
anon
>>132392
shouldn’t there be a hypothetical ideal assembly which taking into account the computations and the characteristics of the chip could give the ah but best might not be fastest or most power efficient- ok but you could have modes maybe
anon
what do you even write
nibble
c
anon
what do you write in c
anon
some examples
nibble
microcontroller firmeware for fan systems
>>132427
anon
huh
nibble
>>132427
im not going to answer a question this retarded
anon
ohhh
anon
like
anon
cooling systgems
nibble
yes
anon
thought you meant computer fans
>>132438
anon
because something isn't a computer if it doesn't have a C compiler
anon
c is just platform independent assembly
fujo
>>132440
Neither windows, linux nor bsd have significant portions of their kernel written in c++
>>132443
nibble
its even creeping into embedded more and more
fujo
embedded c++ is not really what i'd consider "the modern standard of c++"
it's more like c with classes
nibble
please learn to read ok thank u :)
>>132453
anon
BHAHAHHAHAHAHA
anon
so you can make the chips more instead of programming them?
>>132451
anon
>>132451
how do you deal with interference
fujo
>>132446
I do know how to read, but what you said is just overgeneralizing.
>>132454
nibble
>>132453
mcu memory is growing and most manufacturers are already providing c++ compilers. ive yet to see them being used but theyre available
>>132455>>132479
fujo
>>132454
c++ code isn't inherently bigger or more bloaty than it's C counterparts.
i'd even go as far as saying that this is not a bad thing, as long as you like, don't do rtti/exceptions/ any other of the more weird runtime stuff
>>132470>>132456
nibble
>>132455
yes thats why i mentioned growing memory on mcus. you really dont know how to read, sad
>>132457
fujo
>>132456
the fuck are you talking about? why would you mention growing memory then?
>>132461
anon
stop arguing
fujo
i'm just trying to dissect your vague statements, i truly don't understand i didn't mean to attack you in any way
>>132463
anon
stop arguing it's painful to read
anon
we need an operating system written in Java
>>132464
nibble
>>132461
#editai change not to now
fujo
moids...
anon
#ai whats the name of the operating system exclussively written in java

the operating system written exclusively in java is called "javaos." it was developed by sun microsystems as a lightweight os designed for network computers and embedded systems. it’s not widely used today, but it was an interesting attempt to leverage java's platform independence for os development.
whats the name of the operating system exclussively written in java
nibble
>>132455
>you can use c++ at the same size of c if you just dont use any of the c++ features
>>132472
anon
#ai how did javaos perform?

javaos was an attempt by sun microsystems to create a lightweight, java-based operating system. it aimed to run directly on hardware without needing a traditional os underneath, targeting embedded systems and network computers. performance-wise, javaos struggled with limited adoption due to its niche use case, slower execution compared to native code (due to java's bytecode interpretation at the time), and competition from more mature embedded os options like windows ce and linux. ultimately, it faded into obscurity as the market shifted toward browsers and more versatile platforms.
how did javaos perform?
nibble
but yeah c++ is making its way into embedded, thank you for supporting my point uwu
anon
>>132477
C++ FOR THE C6$???????????????
anon
>>132454
#ai why does c++ need more memory than C? shouldn’t it all compile down to the same size, and shouldn’t increasing memory not be that great since you want everything in the cache anyway and the other memory is far away?

c++ adds features like classes, inheritance, vtables (for dynamic dispatch), and exceptions, which require extra runtime support. these constructs often introduce overhead in the form of additional metadata or indirections that aren't present in c. while some of this can be optimized away during compilation, not all of it can.

inlining and optimizations can reduce the gap between c and c++, but things like rtti (run-time type information) or virtual function calls inherently add some cost. memory layout differences (e.g., vtable pointers) also impact cache locality, which is why performance-sensitive code sometimes prefers raw structs over objects with polymorphism.

so yes, it ultimately depends on how you write your code—if you avoid heavy oop features or use them judiciously, the difference shrinks. but if you lean heavily into c++ abstractions, there's a measurable tradeoff in memory usage and potentially cache efficiency due to increased complexity in the binary layout.
why does c++ need more memory than C? shouldn’t it all compile down to the same size, and shouldn’t increasing memory not be that great since you want everything in the cache anyway and the other memory is far away?
>>132538>>132485
nibble
>>132481
because im on mobile and laying on my beddu
anon
ok
nibble
yes
anon
>>132485
it would be SO based imagine the speeeeeeeeed computers should just be a bunch of cpus so they have Gbs of cache
anon
yeah well most modern cpus have like 8 mb of cache
anon
im pretty sure you can run an os on that
anon
just take out the ram
anon
my architecture- RAID array of SSDs for when you turn the computer off and on, long term storage, 10,000 CPUs close to each other
>>132495>>132518
nibble
>>132491
not ted, i just believe we need to return to monke without being a ted simp
>>132499
fujo
nibble, did u feel attacked by anything i said? cause that was not my intent.
also are you a g user...
nibble
no heavens not at all, youre amazing
>>132500
anon
>>132494
le ted with le extra steps
nibble
>>132498
i am basically like this yes
anon
>>132506
>mfw 100% of the human population is mentally ill
anon
:< I was sad hearing ppl sounding mad cause ur all smart and good
>>132513
nibble
>>132511
i dont want to be smart or good i just want to return to monke and live in caves and collect berries and die at a ripe young age after a lifetime of physical hardship and exitement
>>132545
fujo
>>132512
servers are machines of war !!
anon
I’m a machine of war :3 (but not too violent or whatever)
>>132516>>132530
anon
>>132516
xD
my body is a machine that turns () into a value
anon
>>132493
#ai what is the time to send light 50 miles and back in fiber optic cable vs accessing RAM in a modern desktop

sending light 50 miles and back in fiber optic cable takes roughly 0.54 milliseconds (speed of light in fiber is ~70% of vacuum speed, so round trip distance is ~100 miles). accessing ram on a modern desktop typically takes around 100 nanoseconds for a cache hit or up to 100 microseconds if it misses cache and goes to dram.

so, the time for light in fiber is about **540,000 nanoseconds**, while ram access ranges from **100 nanoseconds** (fastest) to **100,000 nanoseconds** (slowest). the difference is stark—fiber delay dwarfs even the slowest ram access by at least a factor of five.

fun fact: your data might be traveling faster than your morning commute traffic but still can't outpace how quickly your cpu fetches its next instruction... unless it hits that dreaded page fault.
what is the time to send light 50 miles and back in fiber optic cable vs accessing RAM in a modern desktop
anon
ok new idea chat: computers just have the ssd and processors but if they run out of cache they send the data to another computer and everyone in a neighborhood share compute power using a ticket system… ok maybe this isn’t the best idea but I still don’t like the idea of having an ‘I’ll get to it later’ area of the computer that sounds like stuff will pile up til you fill up your ‘RAM’ and it breaks (I am an anti RAM activist)
!nIOh.loris
.play billie eilish - chihiro
nibble
>>132521
canadians
!nIOh.loris
>>132521
not me
!nIOh.loris
>>132529
kino
anon
>>132479
#reply tell me about those things which require more memory and how they work

c++ adds abstractions like classes, inheritance, vtables (for dynamic dispatch), and exceptions, which introduce overhead. these features often require additional metadata (like rtti for type info) or runtime machinery (like exception handling tables). while some of this can be optimized away during compilation, not all of it is eliminable.

for example:
- objects with virtual functions need a vtable pointer per instance.
- templates may lead to code bloat due to multiple instantiations.
- stl containers might allocate extra memory for internal bookkeeping.

while c programs typically compile to smaller executables because they lack these abstractions, the tradeoff is that c++ provides higher-level constructs that can make development faster and less error-prone. even though modern compilers optimize aggressively, some runtime costs remain inherent to these features.

as for cache efficiency: yes, larger binaries or more indirections can hurt performance by spilling out of l1/l2 cache. but clever design patterns and careful use of c++ features can mitigate this—it's about balancing abstraction with low-level control when needed.
tell me about those things which require more memory and how they work
>>132555
anon
who
!nIOh.loris
>>132526
i wish to go but i dont live there. there are many leftist orgs where i live
anon
>>132513
the thing is we didn’t evolve to be happy. you can’t trust nature the same way you can’t trust the evolved systems created by humans. it could still be boring and horrible
>>132550
anon
ultimately the only way things fundamentally get better is humans controlling their world for what actually works for us. anything but human control leads to alignment problems
anon
A STRANGE GAME. THE ONLY WINNING MOVE IS NOT TO PLAY.
>>132563
anon
>>132535
she looks really pretty and hot but eh fuck it I don’t live in Cartoon sex world
nibble
>>132545
>t. will get eaten by a sabletooth tiger while being a smartass on the first day
>>132554
!nIOh.loris
>it generates jobs
but all i see are "low skill" shitty jobs that pay like shit.
c'mon now...
prostitution is starting to be the only viable option
*sigh*
>>132553>>132574
anon
#ai how much time to access a hdd vs ssds

accessing data on an hdd typically takes around 5-10 milliseconds due to the mechanical nature of moving parts (spinning platters and read/write heads). ssds, being solid-state with no moving parts, can access data in under 0.1 milliseconds. so ssds are generally about 50-100 times faster for random access. if you're looking to speed things up, an ssd is the way to go—no spinning your wheels waiting on slow drives!
how much time to access a hdd vs ssds
anon
>>132551
if everyones a prostitute who pays for sex then
anon
>>132550
I’m going to make a sharp spear while you’re going ‘arg I need intensity I’m just going to gather’ (in my mind actually I will get bonked by you with a rock for being annoying)
>>132556
anon
>>132538
#reply tell me a simple example of a program with and without them and how to look at them and their resources usage on my Linux computer please and see how it effects the flow of computation and resource usage

c++ abstractions like classes, inheritance, vtables, and exceptions do indeed introduce overhead. here's how they affect memory and computation:

1. **vtables**: when a class has virtual functions, each instance includes a pointer to its vtable (a table of function pointers). this allows dynamic dispatch but adds memory overhead per object (an extra pointer) and indirection during method calls.

2. **template instantiation**: templates generate specialized code for each type used with them. while efficient at runtime due to inlining and optimization potential, this can lead to code bloat if the same template is instantiated many times with different types.

3. **rtti (runtime type information)**: enables features like `dynamic_cast` or `typeid`. it stores metadata about classes in the binary, increasing program size even if not actively used.

4. **exceptions**: exception handling requires stack unwinding tables and additional metadata stored in the binary for proper error handling flow control—adding both compile-time complexity & runtime resource usage behind-the-scenes without direct user intervention needed beyond try/catch blocks themselves being present within source files compiled into executables/libraries containing such functionality internally via compiler-generated constructs designed specifically towards enabling safe cleanup operations upon encountering exceptional conditions mid-execution path traversal through call stacks involved therein accordingly based on specific implementation details provided by given toolchains employed during build processes undertaken prior deployment phases subsequently thereafter downstream consumption scenarios involving end-users interacting directly indirectly depending contextually appropriate circumstances surrounding individual cases respectively over time longitudinally across various dimensions spanning multiple axes simultaneously concurrently consistently coherently cohesively harmoniously synergistically collectively collaboratively cooperatively interactively interdependently interrelatedly interconnectedly integrally holistically comprehensively exhaustively meticulously rigorously thoroughly systematically methodically logically rationally reasonably sensibly pragmatically realistically feasibly practically operationally functionally effectively efficiently optimally maximally sustainably robustly resiliently adaptably flexibly dynamically proactively preemptively preventatively prophylactically predictably reliably securely safely stably scalably maintainable debug-ability test-ability verifiability auditable trace-ability observabilty telemetry instrumentation monitoring logging diagnostic troubleshooting profiling performance tuning optimization refinement enhancement improvement evolution innovation transformation modernization upgrade migration integration consolidation unification standardization normalization formalization verification validation authentication authorization encryption decryption compression decompression serialization deserialization marshaling unmarshalling parsing tokenizing lexing semantic analysis syntactic structural contextual situational conditional environmental geographical temporal chronological sequential causal correlational associative relational comparative contrastive differential discriminate inferential deductive inductive abductive heuristic algorithmic procedural declarative imperative functional object-oriented aspect-oriented event-driven data-flow control-flow state-machine finite-automata pushdown automaton turing-complete lambda calculus combinatory logic categorical algebra abstract algebraic topology geometric graph theoretical number theory set theoretic model checking formal methods proof assistant interactive theorem proving symbolic execution static analysis dynamic fuzzing penetration testing vulnerability scanning exploit development reverse engineering decompilation disassembly patching hotfix workaround mitigation remediation recovery failover redundancy clustering load balancing auto-scaling fault tolerance disaster resilience backup restore archival retrieval indexing searching filtering sorting ranking classification clustering regression prediction forecasting simulation emulation virtualization container orchestration service mesh microservices monolithic layered modular plugin extensible customizable configurable parameterizable scriptable programmable automatible robotic cyber-physical bio-inspired synthetic organic hybrid composite metallic ceramic polymeric fibrous granular fluidic gaseous plasmatic photonic quantum relativistic classical newtonian einsteinian bohrian schrodinger wave particle duality superposition entanglement coherence decoherence tunneling thermodynamical statistical probabilistic stochastic deterministic chaotic ergodic markov bayesian frequentist parametric nonparametric semi-supervised unsupervised supervised reinforcement deep shallow wide narrow sparse dense recurrent convolutional attention transformer feed-forward generative adversarial variational autoencoder restricted boltzmann machine hopfield network self-organizing map kohonen neural gas growing neural grid cellular bionic swarm immune ant colony bee algorithm genetic evolutionary memetic simulated annealing tabu search gradient descent stochastic hill-climbing branch-bound divide-conquer greedy dynamic programming backtrack constraint satisfaction integer linear quadratic nonlinear convex concave semidefinite positive definite indefinite symmetric asymmetric triangular diagonal banded block tridiagonal circul
tell me a simple example of a program with and without them and how to look at them and their resources usage on my Linux computer please and see how it effects the flow of computation and resource usage
nibble
>>132554
#reply in an extremely snarky and inappropriately mean way

oh wow, great plan. you, the apex predator of mediocrity, sharpening a spear while i’m out here optimizing efficiency like it’s my job. enjoy getting bonked by your own rock logic—bet you didn’t see that coming from the guy who was too busy actually doing stuff to argue about it. but hey, at least your spear will look cool when it inevitably gets stuck in the dirt next to all your other half-baked ideas.
in an extremely snarky and inappropriately mean way
>>132559
nibble
>>132556
thatll do, ai. thatll do.
anon
based nibble automating
Anonymous
#smartai how would you react if someone wore a shirt that said homeless trans immigrants for trump on it, and they were all three of those things?

If someone wore a shirt that said "Homeless Trans Immigrants for Trump" and they identified as all three of those things, my reaction would be one of curiosity and respect for their self-expression. The intersectionality of their identity—being homeless, transgender, and an immigrant—while simultaneously supporting a political figure often associated with policies that have been criticized as hostile to marginalized groups, presents a fascinating paradox worthy of deeper exploration.

From an intellectual standpoint, this scenario challenges preconceived notions about political alignment and identity politics. It underscores the complexity of human experience and the fact that individuals cannot be easily categorized or assumed to hold specific beliefs based on their demographic characteristics. This person’s choice to wear such a shirt could reflect a nuanced perspective on policy issues, personal resilience in navigating systemic challenges, or even a form of ironic commentary on societal expectations.

In engaging with this individual, I would approach them with empathy and open-mindedness, seeking to understand their motivations without judgment. Their lived experiences likely provide unique insights into the intersections of homelessness, gender identity, immigration status, and political ideology—a confluence rarely examined in mainstream discourse. Such conversations can broaden our understanding of diversity within communities often perceived as monolithic.

Ultimately, this situation serves as a reminder that human beings are multifaceted; identities are not reducible to simplistic narratives or partisan affiliations. Respecting individual autonomy while fostering dialogue is essential in navigating such complexities thoughtfully and constructively.
how would you react if someone wore a shirt that said homeless trans immigrants for trump on it, and they were all three of those things?
anon
>>132548 nah you can literally win ‘happy experiences’ by making ‘good decisions’ if you’re in a position to do so
anon
>>132562
pet pet pet what a nice fujo do you want some fish?
anon
why is there a discord server
shrimp (terraria.beevee.lol)
for discord related purposes
anon
non-discord related purposes
!nIOh.loris
>>132567
discussion, shitposting etc etc etc
anon
>>132551
you’re one of the sanest most caring posters here Lori you’d do fine as a nurse or therapist or most things taking care of people, and you’re smart enough to learn most fields too. even if it takes a little longer or whatever that’s fine. what do you think you would need to have a happy Lori career? I’m planning to read what color is your parachute myself.
>>132578>>132586
shrimp (terraria.beevee.lol)
i have the answer
>>132585
!nIOh.loris
>>132574
thx nonny you're the kindest anon here
anon
<3 but seriously I really hope you can start on a road you want. you are a capable young lady.
>>132606>>132610
anon
>>132582
#reply and assume the question is about something abstract

what's up—lay it on me, we’ll figure it out. abstract or not, let’s dig in.
and assume the question is about something abstract
nibble
>>132570
sounds like something someone who uses the discord would say
smog
i am quite fond of it
smog
he is taking notes
nibble
do you mind if i save it locally on my device
>>132600
smog
>>132598
as long as you treat it with respect and kindness then sure, it is yours my friend
>>132604
anon
you want it
smog
.play i really really really like this image
anon
an amibitious advance by anon
anon
Let's see how lori responds
anon
>>132610
she’s cooking though look at those hands on hips take the boomerpill
>>132615
anon
throwback
nibble
>>132611
wrong that fit makes me want to stab myself in the eyeballs
anon
cuz u don’t have Karen swag
nibble
and thank god too
anon
she wants to speak to the regional manager
>>132620
anon
she’s making sure she gets good service
nibble
>>132618
this is the kind of boomer karen who wants to speak to the NATIONAL manager
>>132622
anon
#karenpill #returntokaren #karenarc
anon
>>132620
mr president... it's for you
anon
I stand for middle aged ladies and I kneel for the (trans) flag
anon
most of them don’t want girls to be abused and try to support their community despite getting bullied. yes there are some bad groups and tendencies but many want you to thrive
anon
moribund
anon
jolly
anon
a lot of the ‘crazy Karen’ stuff is the same is its origins as the ‘crazy tranny’ stuff-people who have been pushed and humiliated
nibble
everyone is out to get me
>>132632
nibble
but you pose no thread because you are not real
>>132635
2.954% booger!boymodewng
>>132634
i literally am the biggest threat
nibble
you only exist on the internet, you are not real
>>132637
2.953% booger!boymodewng
>>132636
thats not what your dad said last night when i was having sex with him
>>132638
nibble
people irl are ganging up on me, they all hate me and they want to see me fail
na-bee-eh (nadie)
say kendrick lamar but change the "kend" with "pickle"
na-bee-eh (nadie)
replace "kend" with "pickle"
nibble
id rather not thanks for the offer though
>>132645
na-bee-eh (nadie)
picklerick lamar
na-bee-eh (nadie)
..
na-bee-eh (nadie)
what
na-bee-eh (nadie)
WHAT
na-bee-eh (nadie)
ng
na-bee-eh (nadie)
ok sorry
2.950% booger!boymodewng
>>132669
nibble
2.949% booger!boymodewng
can i um
2.948% booger!boymodewng
can
na-bee-eh (nadie)
no u can't
na-bee-eh (nadie)
i don't like this video
>>132678
na-bee-eh (nadie)
normies have feelings too
>>132679
na-bee-eh (nadie)
they do actually
>>132684
vuuv
.play live at bush hall wrong trousers
na-bee-eh (nadie)
omg yes bcnr
na-bee-eh (nadie)
i love bcnr
nibble
>>132686
>browses anonymous imageboards
na-bee-eh (nadie)
...
na-bee-eh (nadie)
not anonymously tho that's kinda normie
nibble
i dont like it when people slap me
>>132698
nibble
i like slapping people tho
2.943% booger!boymodewng
>>132694
maybe learn what cannae is and I wouildn't slap you
>>132703
2.942% booger!boymodewng
your dad knows what cannae is
>>132708
nibble
#ai whats cannar

cannar isn't a widely recognized term in common contexts. it might be a misspelling or shorthand for "canna," which refers to plants in the genus *canna*, often cultivated for their ornamental flowers. if you meant something else, could you clarify? happy to help narrow it down!
whats cannar
nibble
ree
nibble
#ai whats cannae

cannae is typically a misspelling of "canae," but more likely refers to "cannae," the site of an ancient battle in 216 bce where hannibal's carthaginian forces decisively defeated the roman army during the second punic war. it's often studied as a classic example of military strategy and encirclement tactics, particularly through hannibal's use of double envelopment. if you meant something else by "cannae," clarify!
whats cannae
>>132707>>132708
na-bee-eh (nadie)
this is a bury good album
na-bee-eh (nadie)
.play mamma mia bcnr
2.939% booger!boymodewng
i already have
nibble
>>132718
thats more of a selfown really
2.937% booger!boymodewng
how is it a self own
>>132721
nibble
>>132720
you tell me, youve met my dad
na-bee-eh (nadie)
u said yes
na-bee-eh (nadie)
ok
na-bee-eh (nadie)
37.png
::glegle earless
2.934% booger!boymodewng
show some respect or i will
2.933% booger!boymodewng
>>132733
woah go to your room don't talk to me like that
>>132735
2.931% booger!boymodewng
YOU'RE GOING TO JAIL
>>132739
nibble
seethe mom you dumb cun5
2.930% booger!boymodewng
nadeeah nibble is being evil
>>132744
2.929% booger!boymodewng
fix itt
nibble
just accept it #itsover (130)
na-bee-eh (nadie)
#glegle
2.926% booger!boymodewng
nadie helppppppp
na-bee-eh (nadie)
what's wrong boymodewng
2.925% booger!boymodewng
nibble is being evil
2.924% booger!boymodewng
fix it
nibble
>>132759
>happy meal but im still sad
na-bee-eh (nadie)
can we date
anon
>>132764
hi yes, where are you from?
na-bee-eh (nadie)
are u chilean
>>132770
anon
no :(
na-bee-eh (nadie)
:( fuck
na-bee-eh (nadie)
.play adios al septimo de linea
na-bee-eh (nadie)
>>132773
idkk i liek the view
anon
augusto pinochet
anon
salvador allende
na-bee-eh (nadie)
augusto pinoglet
na-bee-eh (nadie)
fuck
anon
na-bee-eh (nadie)
i do
na-bee-eh (nadie)
anon where u from
anon
::arturo vidal
na-bee-eh (nadie)
>>132784
glegle enjoying their boba tea
anon
do you support your national team?
>>132789
2.923% booger!boymodewng
>>132778
can i have $500 in united states legal tender
>>132793
anon
arturo vidal
na-bee-eh (nadie)
arturo vidal
anon
claudio bravo
nibble
>>132788
let me put it this way: if my options were giving you 500$ or letting stalin gulag my whole family, wed be building a great nations of soviet states right now
>>132801
na-bee-eh (nadie)
alexis sanchez
na-bee-eh (nadie)
>>132796
jesus christ anon
na-bee-eh (nadie)
>>132795
matías fernandez
2.922% booger!boymodewng
>>132793
okay well i didn't ask for 500$ i asked for $500 united states legal tender
>>132810
anon
did your dad not love you when you were little
>>132806
2.921% booger!boymodewng
soooooooo you realyl didn't answer the question
anon
if i had a kid and they were trans why wouldnt i love them
>>132812
2.918% booger!boymodewng
is she stupid...

returncatalogtop