[ / / / / / / / / / / / / / ] [ r8k / ck / wooo / fit / random / doomer / f1 / foodism / harmony / lathe / lewd / warroom / wtp ]

/prog/ - Programming

Programming

Catalog  Archive

Name
Email
Subject
REC
STOP
Comment *
File
Password (Randomized for file and post deletion; you may also set your own.)
Archive
* = required field[▶Show post options & limits]
Confused? See the FAQ.
Options

Allowed file types:jpg, jpeg, gif, png, webp,webm, mp4, mov
Max filesize is16 MB.
Max image dimensions are15000 x15000.
You may upload5 per post.


File: 41e97c61f74be8d⋯.png (76.34 KB,500x500,1:1,competitive-programming.png)

776eac No.4405 [Open Thread]

ITT we discuss Competitive Programming , is it useful ? have you tried to be part of team >> etc.

1 post omitted. Click [Open Thread] to view. ____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

776eac No.4433

I'm classified for the regional competition of the acm. Didn't try the other ones.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

9eb7c9 No.5374

For real life it's more useful to just work on projects, but I believe learning to solve hard problems on comp. prog. sites really does give you some form of divine intellect.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8a3873 No.5383

It's probably most useful if you're a researcher in algorithms or something.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

68d7cf No.5415

I've done some of this.

Anybody interested here's a good resource: https://contest.cs.cmu.edu/295/s19/

If you're American join the USACO Training program https://train.usaco.org/usacogate it's probably the best training to go from beginner -> strong competitor.

Topcoder and all that junk, I never bothered with. The only thing you should be doing on Topcoder is claiming bounty's for writing features (this is how Topcoder works, they post a feature they need, you write it, they give you the bounty). The actual online competition and whatever is meh, you should physically enroll in a competition if you're truly interested and build a team.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

4ac268 No.5420

>>4430

There's utility in experiencing different software requirements. I'm an experienced programmer that's spent much time writing business software. I've recently started learning about game programming and I've picked up many kinds of techniques and lessons that I can apply for my work in business software.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



e7c6e5 No.5134 [Open Thread]

Discuss and share C++ related talks/questions here. All early and later standards are welcome (be explicit).

20 posts omitted. Click [Open Thread] to view. ____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.
Post last edited at

299e9e No.5300

https://spit.mixtape.moe/view/a58b07a8

Why the unexpected behavior here? Instead of segfaulting it "fails" silently. Please excuse my lack of understanding here.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

bce316 No.5305

>>5300




#include <iostream>
using namespace std;

void swap(int * p, int * q){
int temp;
temp = *p;
*p = *q;
*q = temp;
cout << "Hello" << endl; //this is the unexpected behavior point; cout does not work if int is passed to int* but it also doesn't just crash or not compile; why the unexpected behavior?
}

int main(){
int c = 5;
int d = 10;
swap (c, d); // this should be swap(&c, &d) yet this DOES swap the values but does not cout as expected or segfault
cout << "c is set to: " << c << endl;
cout << "d is set to: " << d << endl;
return 0;
}

It's because you are not calling swap, you are calling

std::swap
. It's getting included indirectly through the
#include <iostream>
, and when you write
using namespace std;
the entire contents of
std
gets brought into the global namespace. You have written a
swap
with a new signature, so that is fine, it just becomes a new overload. When looking at the
swap
call, the compiler performs overload resolution, and decides to call
std::swap
because that is the overload of
swap
which matches your arguments.

See https://en.cppreference.com/w/cpp/algoritPost too long. Click here to view the full text.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

bce316 No.5306

>>5305

>>5300

You can prove this to yourself by deleting your swap function, the code still does the same thing.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

fb0d52 No.5320

>>5305

I swear, everytime I see a post like this, C++ is involved. But seriously I think this explains why "using namespace std;" is a bad idea. Beware of what you make implicit.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

bce316 No.5412

>>5320

>everytime I see a post like this, C++ is involved

this is a mistake even easier to make in C anon, as you and anon just demonstrated. The value semantics of good C++ as (opposed to anon's C-with-classes code) eliminates this issue. For example, this behaves as anon expected and calls his fubar version instead.

#include <iostream>

void swap(int a, int b) {
// fubar
}

int main() {
using namespace std;
int a{1}, b{2};
cout << a << b << '\n';
swap(a, b);
cout << a << b << '\n';
}
and as you said, beware of ignorance.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



File: 8d9e72129983fc2⋯.png (14.65 KB,800x400,2:1,https.png)

be209a No.4564 [Open Thread]

I'm making a Node.js application for the first time without a tutorial and I am trying to use an external API someone else made to grab data.

I am getting a mix content error in the console log whenever I try to call the API because it is HTTP and not HTTPS.

I deployed on Heroku and Heroku is of course secure/https.

I have no idea how to convert the HTTP API into a secure HTTPS link.

Please let me know what tools I need and how to go about it. I have a feeling NGROK may be useful but I am pretty lost with this problem.

____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

be209a No.4566

I am doing the GET through an AJAX call which gets activate onClick.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

be209a No.4572

>>4564

var options = {

url : '',

method : 'GET',

strictSSL : false

};

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

4bd7c2 No.5410

>>4564

Your application should proxy the requests to avoid that.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



File: 3fba14b8e7c6895⋯.png (69.67 KB,286x306,143:153,question 2.png)

b7c11e No.5324 [Open Thread]

Hi I'm been amateur programming for years and now go to school to learn it.

I've always been confused about what the best practice is for declaring variables. When I first did programming in highschool we were told to declare all the variables at the top of the scope (I guess for the convenience of the teacher) but also see people declare them in the middle of the code as needed (like a counter right before a while loop).

So redpill me on the variable question. Logically declaring it right before needing it seems like the best thing to do.

7 posts omitted. Click [Open Thread] to view. ____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

d2220f No.5363

>>5327

honestly this. Many linters will give you a warning that you have too many local variables, and it's true. Local variables are helpers, and they should be set directly before they are being used. If you have a bunch of local variables, either use class/static parameters directly or split up the function. You probably don't need all 16 variables for the same thing, and if you do, put them in an array or something.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

d2220f No.5364

>>5343

this so much this. CS niggers in college will try to follow rules and make their code "super-readable". Newsflash: no code is readable. You just have to make is the most understandable, and even that will take a lot of rewrites before you find that yes, this way is the most optimal way of solving the problem at hand. So just do what seems right, get the functionality, and then review and see if you can make sense of the code.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

936bc0 No.5365

>So redpill me on the variable question. Logically declaring it right before needing it seems like the best thing to do.

Yes, this is best. It's not 1981 any more so we don't need to carry on antiquated practices that were required for the limited memory of the day.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e3ba64 No.5407

>>5324

Just declare them so that the program can be maximally readable to all the people that are working on the code. If it's just you, then do what's most convenient to you.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

f1b3b5 No.5408

It doesn't always make sense to put everything on top.

If say I need a temp variable that I'm only gonna use in a "for" then I'll create that variable on top of that "for" that way everyone knows that that variable is only really used there.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



625a8d No.5385 [Open Thread]

I'll have an internship at back-end of some huge service. But I've never programmed anything more serious than homework or site with 3 pages. What should I learn or do in order not to fuckup at my work?

Someone's advised me to read SRE book. Will it help?

____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

625a8d No.5387

File: f54bf0321f7d31a⋯.png (421.16 KB,570x367,570:367,15572540937850.png)

bump

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8a2f5e No.5388

Keep your mouth shut and listen for the most part. If someone suggests you to do it a certain way, do it and then show it to them they'll appreciate it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8a2f5e No.5389

Also the redhead is obviously the hottest one

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

625a8d No.5392

>>5388

Thanks, it's obvious but important.

>>5389

Oh, she is.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



File: c254f3cd9699aae⋯.jpeg (9.75 KB,195x258,65:86,maxresdef.jpeg)

a6ace5 No.4597 [Open Thread]

Is it snake oil garbage or is it really relevant?

What are some simple application that could be made better by using parallel computing or anything to play with OpenMP

2 posts omitted. Click [Open Thread] to view. ____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a6ace5 No.4609

>snake oil

hadoop?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a6ace5 No.4620

Apply a map to an image. This is an awesome example of SIMD computing.

Anything that's isomorphic to the above example is also a good example, and there are a lot of those.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a6ace5 No.4643

>>4597

This free CMU book will show you all the algorithms and data structures that can benefit from being run in parallel http://www.parallel-algorithms-book.com/ which is a ton of things

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

413768 No.5274

It's certainly not snake oil OP. With multi-core cpus if you don't program intentionally to take advantage of them, then you are leaving a metric shitton of perf on the table. This is currently the best book on the subject in general so I'm shilling it for now.

https://www.manning.com/books/c-plus-plus-concurrency-in-action-second-edition

>t. own this myself

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

0c50c1 No.5382

how the hell is it snake oil? its insanely useful. never read the book in your image but parallelism and concurrency are important concepts to know

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



File: 6fc01fa32961dee⋯.jpg (1.17 MB,2816x2624,44:41,TIMESAND___QDRH.jpg)

711bc1 No.5380 [Open Thread]

I have this disproof of the Riemann hypothesis and I want to use it to come up with the general solution to RSA encryption, and actually all prime factorization encryption algorithms. After disproving RH, what is the next step? Also, thread about RH.

____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.


File: aa70a04d74d6ff7⋯.jpg (15.29 KB,259x194,259:194,download.jpg)

5b09b9 No.5294 [Open Thread]

my first thread here ,my friends suggested to me this site so if its the wrong board suggest me the right one

so

running out of time

anons , i have a project for uni

i must create a website and i only have sum days left

when it comes to programming i have no problem

the problem that i dont have any ideas for the content of my website

its not a big thing

its like a website for an online library when a customer can check books , loan and order them or a website for an online school ,bank and that shiit

but the fuckers my mates took all subject and here i am with just a week left

anons any ideas or examples of content for the website ??? i really need help

any thing that comes to your mind anons

____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

132944 No.5295

imageboard

reference manual (asm, c, wireless cards supported by linux, commodore computers) these have the bonus you might actually want to USE it later. a full z80 reference is not very hard to write but it takes some looking around. you can slap together a half-working z80 interpreter in like a week with just very basic c knowledge.

a gallery of high res vinyl album art scans/painting photography sorted by album ID/chronology and artist.

it sounds like you just need a framework so you can just put in empty todo pages instead of content and you're good to go.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c87570 No.5372

>>5294

the prjects probably over, so whatd you do?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



e41f60 No.5135 [Open Thread]

Discuss and share HolyC related talks here.

Important: Stay only on the subject of HolyC only. Terry is wonderful but nobody seems to ever focus on his work. This will try to fill that gap.

Some documentation: https://web.archive.org/web/20170531043554/http://www.templeos.org:80/Wb/Doc/HolyC.html

2 posts omitted. Click [Open Thread] to view. ____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.
Post last edited at

dd2ac1 No.5285

>>5278

HolyC used to be more like C, but due to the need for the language to work as the shell and the main programming language Terry had to modify the way the language was written. Think how he ones spoke about function pointers how he had to find a new way to represent them in HolyC because of the shell. Terry also wanted to use C as the shell because he never really learned the window batch files or the unix shell.

GCC for Terry had couple of problems

1. GPLv3

Originally terry had a loose idea of selling his OS.

2. JIT

As far as I am aweare GCC does not jit compile any languages..

3. The Size

The feature set of GCC very large and the way how most GNUproject software is written. Means that GCC would take up way too many lines of code and thus either fillup or excede the somewahat arbitrary LOC limit that Terry had. Also GCC has dependencies so those would have to be either ported or reimplemented.

4. Format

TempelOS uses a special fileformat that is somewhat similar to RTF called DolDoc. This is what enebles for the system to have a complex HyperText linking system and for the code to have embeded 3D models, sounds, images and so on. It would propably take a while to implement a proper parser for the format in GCC.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

08a59b No.5334

So is there any project to create a HolyC compiler for a platform other than TempleOS?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

d456bb No.5341

why is C 'holy'?

do you really think there are Divine things about C?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

6e5023 No.5342

>>5341

There is a language called HolyC. It's similar to C and has a lot in common, but is not the same language.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

2f5c53 No.5355

>>5341

The name "HolyC" is a pun. Holy See is the governing body of the catholic church.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



f0f016 No.5133 [Open Thread]

Discuss and share C related talks here. K&R, Ansi/ISO, C99, C11, embedded are all welcome.

23 posts omitted. Click [Open Thread] to view. ____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

abd724 No.5286

can someone explain ALL the uses for the -> operator?

i'm trying to learn OpenGL|ES 2.0 for the raspberry pi and don't really know what the fuck i'm doing besides reading K&R once and the code example here ( https://github.com/Apress/raspberry-pi-gpu-audio-video-prog/blob/master/EGL/window.c ) repeatedly uses the arrow operator from a struct to its members, whereas K&R and other resources I've found say it's only supposed to be used for a pointer to a struct to access members.

so for example, if you have a struct s and a pointer to struct s as ptr_s, and the struct has members x and y, what does s->x even do? shouldn't it only be s.x or ptr_s->x?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

abd724 No.5287

>>5286

nevermind, i'm an absolute nigger monkey. the naming conventions are just horrible in this code, it really is the struct's pointer being passed to a different function and then used with the same name as the main struct. global variables can swallow fat loads.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

791e11 No.5289

>>5167

digital mars has FIRE c++ compiler for windows... high recommend it. Everyone @ rockstar games uses it :)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

791e11 No.5290

GCC: GNU's C compiler, available for almost every platform, and popularly installed on Unix machines.

Digital Mars C/C++: The hackers at Digital Mars have a pretty rippin' C/C++ compiler for Windows that you can download and use for free, and that will work wonderfully for all the code presented in this guide. I highly recommend it.

VC++: Microsoft's Visual C++ for Windows. This is the standard that most Microsoft programmers use, and I freaking hate it. Nothing personal, but I'm one of those crazy people that still uses vi.

Turbo C: This is a classic compiler for MSDOS. It's downloadable for free, and I has a special place in my heart. (It can't handle the "//"-style comments, so they should all be converted to "/**/"-style.)

cc: Virtually every Unix system has a C compiler installed, and they're typically and merely named cc (C Compiler, see?) Just try it from the command line and see what happens!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

791e11 No.5291

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



5252ca No.5228 [Open Thread]

Discuss and share Visual Basic 6.0 (not modern version) related talks here.

____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8ae8b3 No.5252

On Error Resume Next

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

d3c79c No.5272

God I fucking hate Visual Basic.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



8d3fbd No.5136 [Open Thread]

Discuss and share Pascal related talks here.

This includes all variations (for now), but specify which one you're referring to.

____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

f255cd No.5197

begin

writeln('Hello');

end.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

eb5fa0 No.5211

program answer;

const pascal = shit;

begin

write('Pascal is ', pascal)

end.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



File: 1411372549161.jpg (64.52 KB,447x553,447:553,23456456789.jpg)

5e99de No.60 [Open Thread][Last 50 Posts]

Does /prog/ need images?

http://strawpoll.me/2622392

Also you can suggest changes (rules, dashboard).
68 posts and 4 image replies omitted. Click [Open Thread] to view. ____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5e99de No.4504

>>2465

>>2467

>>2483

All of you faggots were never on the original /prog/.

Go to >>>/tech/ all of you.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5e99de No.4593

>>4504

I'm not sure if you're telling them to go to tech to get educated, or as insult like you're exiling them

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5e99de No.4606

>>4593

>go to tech

>to get educated

That ain't happenin

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5e99de No.4626

>>4606

I suppose that depends on your level of knowledge / experience. It has certainly helped point me in the right direction (TOR/VPNs, GNU/Linux, FSF, /prog/, etc)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

b5dad5 No.4767

more textbrowser-friendly sites will go a long way toward reducing internet cancer levels

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



File: 7002c2cb85fa58d⋯.png (51.6 KB,363x403,363:403,progsnake.png)

35e92a No.4632 [Open Thread]

What happened to progrider.org?

4621660041777045444937266963038269833218516043439221319077608463680501833478931199808593675140090794

____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

35e92a No.4646

File: 316d3507b9c178e⋯.png (47.78 KB,1320x222,220:37,1490785527307.png)

https://goatfinger.ga aims to be the successor

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

35e92a No.4647

Their admin threw in the towel because he got bored of the site.

He gave a copy of the database to world4search.readsicp.org, I think.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



File: b6232a4bd5ffaad⋯.png (344.43 KB,581x371,83:53,ClipboardImage.png)

606ddb No.4558 [Open Thread]

Hi /prog/,

I'm looking for some books about Designing programming languages and compilers, give me your best!

(I lost my collection)

I remember specifically liking a book from a professor from the University of Amsterdan, which had a more applied approach.

It had examples in C, but that's all I can remember…

Also, general Compiler and Programming Language Design thread…

____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.


Delete Post [ ]
[]
[1] [2] [3] [4] [5] [6] [7] [8] [9]
| Catalog | Nerve Center | Random
[ / / / / / / / / / / / / / ] [ r8k / ck / wooo / fit / random / doomer / f1 / foodism / harmony / lathe / lewd / warroom / wtp ]