[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

/dpt/ - Daily Programming Thread

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 413
Thread images: 55

File: dpt_flat.png (102KB, 1000x1071px) Image search: [Google]
dpt_flat.png
102KB, 1000x1071px
Old thread: >>60299147

What are you working on, /g/?
>>
Loli servers
>>
Rate my fizzbuzz
proc fizzBuzz
dup 0 = @return if

dup 3 % !
"Fizz" "" ifelse
print

dup 5 % !
"Buzz" "" ifelse
print

dup println
1 - fizzBuzz
end

100 fizzBuzz
>>
>>60310140
Traditional OP pics - best /dpt/ threads
>>
>>60310217
I prefer /dpt/ anime images
>>
>>60310204
I dont like whatever syntax this is
>>
File: K&R hime2.png (1MB, 1280x720px) Image search: [Google]
K&R hime2.png
1MB, 1280x720px
First for 3 star programming!
>>
File: rustism.jpg (124KB, 1499x558px) Image search: [Google]
rustism.jpg
124KB, 1499x558px
>>60310140
>>
>>60310239
Anime is traditional
>>
>>60310244
>he doesn't like RPN
Pleb
>>
>>60310172
>It depends, but for Linux systems: /usr/include.
>The actual library code you're linking against lives in /usr/lib.

Thanks I see. But why can't the compiler automatically link against the library code too then, if it works for the header?
>>
>>60310204
Forth is even worse than Lisp, t b h f a m.
>>60310253
What are you even trying to do?
>>
>>60310275
But OP pic isn't anime
>>
File: polite conversation.png (311KB, 2072x1984px) Image search: [Google]
polite conversation.png
311KB, 2072x1984px
>>60309051
Two men sat down one day at a table for dinner. They were to eat food together as friends, and talk about the tools they use. The first man stated, "Why, a shovel, of course! I don't see how anyone could do their job without one.".

The second man frowned, and replied, "But I only have need for a spoon. In fact, I'm sure that my spoon is much more convenient than your shovel, and I could accomplish tasks quicker with my spoon."

The first man scoffed, saying, "There's absolutely no way a spoon can attain the efficiency of my shiny, massive shovel! Sure, I can't fit it in my pocket, but it accomplishes the tasks much better than your silly little spoon! You must be an idiot!"

At this point, unfortunately the conversation devolved into more and more threats and insults. The second man finally had enough with the first man's diatribes against his elegant spoon, and punched the first man. A terrible, violent fight came next, leaving both men dead. One man became impaled upon a broken stool leg. The other hit his head against a bench.

Upon investigation, a business card was found each man's wallet.

"Mr. First Man, Senior Digger of Ditches and Graves"
"Second Man IV, Licensed Planter of Individual Seeds"
>>
>>60310311
How come Yuki Nagato's silouette is not anime?
>>
>>60310301
>What are you even trying to do?
>What are you even trying to do?
>What are you even trying to do?
Why do you assume im trying to do something?
>>
File: 1474596079094.jpg (29KB, 317x357px) Image search: [Google]
1474596079094.jpg
29KB, 317x357px
>>60310253
Option::from(t).unwrap();

For what purpose?
>>
>>60310248
>Why are you casting the return value of malloc()?
So that I can subtract 1 from it before assignment and thereby have an array that starts at 1 without wasting space
>>
>>60310372
>Rust
>Why do you assume im trying to do something?
You're right, it was a dumb question.
>>
I want to learn a new high performance, close to the metal programming language. The application is going to be a tool that will have to parse a lot of XML (potentially terabytes) from an SSD in the shortest amount of times, so that will be the bottleneck.

Right now, I'm considering rust, C, and a lua dialect that I'd make based on the luajit source code, mainly changing 1 indexing to 0 indexing, but I'm open to other options. I also hear idris is pretty cool but learning functional programming would be pretty slow and I'm not sure I want to do that right now. Open to any other language.
>>
>>60310340
is this anime?
>>
>>60310425
Removes unused variable warning,as i need to get the type from t
>>
>>60310140
>What are you working on, /g/?
Wrote goodreads comment scrapper and my own version of language checker that picks all english comments. Now i need to tidy this a bit and start with sentiment analasys
>>
>>60310337
But the fact you miss is that if you plant individual seeds with your spoon, they will grow into trees, whose wood you can then harvest to turn your spoon into a custom shovel comfier than the other guy's shovel
>>
File: memvec.jpg (128KB, 1388x581px) Image search: [Google]
memvec.jpg
128KB, 1388x581px
>>60310458
Exactly
>>
>>60310475
You don't need to do something so complicated for that.
You could just write
std::mem::drop(t);


or, even better, change the function signature to this:
fn get_mem_size<T>(_: T, sleep: bool) -> Vec<i64>

You won't get any warning this way.
>>
>>60310466
my god it's bart simpson someone help him
>>
>>60310506
I really, really like this post.

I find it quite telling that someone would prefer to wait for many years for a tree to grow in order to dig a ditch.
>>
>>60310475
Then don't take t as an argument if you don't need it, just T as a generic parameter.
>>
>>60310519
Oh, thanks!
I've never written any rust before, so this is useful
>>
Can anyone tell me why the first and third windows have really big widths?
I can't figure it out, and I haven't slept yet, I don't think I have the brainpower to think about it.
Pic related.
>>
>>60310566
All variables starting with an underscore are assumed to be unused, e.g.
let _x = "foo";
won't generate any warnings even if it isn't used.
>>
File: memvec.jpg (128KB, 1199x551px) Image search: [Google]
memvec.jpg
128KB, 1199x551px
>>60310613
Gotcha! Thanks
>>
>>60310616
You can remove `_: T` and `where ..` from get_mem_size and call it like `get_mem_size::<Vec<i64>>(false)`. You can see std::mem::size_of itself doesn't take an object in memory, only a type as a generic parameter.
>>
guys hear me out but what if

hardware-level memory allocation and garbage collection
>>
why is it called malloc and not just alloc

i mean the hell else are you gonna allocate but memory
>>
>>60310821
if it doesn't make anything else slower
>>
>>60310868
i can think of a few things
>>
>>60310868
>i mean the hell else are you gonna allocate but memory
disk space
time
any resource thing
>>
>>60310821
Lisp Machines had these, it didn't help them.
>>60310868
Network ports, CPU time, video buffers, etc.
>>
>>60310944
>disk space
>>60310956
>video buffers
those are memory too

>>60310956
>Network ports
those are just address
>>
What's the point of using auto in C++11?
>>
>>60311051
type inference
>>
>>60311060
Can't I just not put anything?
>>
>>60311065
Nope
>>
>>60311071
What's the difference between those two

curl = curl_easy_init();
auto curl = curl_easy_init();
>>
>>60311025
> those are memory too
Yeah, but the memory in your video card is quite different from your regular RAM.
> those are just address
You still have to allocate them so no other processes would use the same ports as you.
>>
>>60311025
Disk space is not necessarily memory.
>>
>>60311079
The former is an assignment to something that already exists.

The latter is the creation of a new variable that will be strongly typed based on the return value of the expression on the right.
>>
>>60311079
The second declares a new variable called curl.
The first assigns to a pre-declared variable.
>>
>>60311093
>>60311099
Oh okay thanks I'm dumb
>>
learning clojure
>>
>>60310248
>First for 3 star programming!
I have only ever seen a 3 star program once.

It was a compacting garbage collector.
>>
So i have 30 hours to get how works:
collections, generic classes, templates and shit like that, c++/java
I have background in oop, structures etc
Can i do it?

I used all that but it was long time ago, i need to fully refresh my memory
>>
>>60311233
Sounds like your "background in OOP" extends to a high school course, and that you didn't actually learn anything. I don't understand how you can just forget all about collections and generics.
>>
>>60311233
>Can i do it?
no
>>
>>60311233
Yes, start reading and doing simple examples and you should easily grasp the basic concepts.
>>
I have to go to uni but I can't stop farting
what do I do?
>>
>>60311290
>I don't understand how you can just forget all about collections and generics.
I haven't wrote a single line of code in c++/java in 2 years.
I use OOP every day, but not this 2 languages.
>>
File: 1480756493221.jpg.jpg (95KB, 528x960px) Image search: [Google]
1480756493221.jpg.jpg
95KB, 528x960px
I'm finally getting comfortable with using OpenGL. Now I can go make the next Minecraft!!
>>
>>60310301
but Anon, lisp is God tier.
>>
>>60311337
lol
>>
>>60311531
Where is the problem anon?
>>
>>60311531
this is valid C
// 
>>
>>60311531
>inane trivial/superficial problems
fuck off kid, stop trying to fit in
>>
sopa de macaco uma delicia
>>
>>60311292
Can you do it?
>>
>>60311531
Programming languages with forced indentation are worse.

>inb4 get a normal editor
>>
>>60311303
Change your diet
>>
>>60310465
Don't roll your own language, off with the LuaJIT option.

As for the others, there are many ways to compile C, some off which yield faster executables than others. Given that Rust is young, you're probably better off going deep with C and the details of how the compilers process it, so you can feed the right C program to the right compiler so that it performs good enough. Also are you going to roll your own xml library or not?

Alternatively you could try a nosql database engine, it already knows to process xml and to do it ultra-efficiently with baroque JIT compiling techniques. Believe me or not they do outperform hand-crafted C.
>>
File: 1494431048377.jpg (59KB, 340x523px) Image search: [Google]
1494431048377.jpg
59KB, 340x523px
>>60312263
>Don't roll your own language
>>
How is youtube video working, why you can just simple find video url?
I dont know if my idea is wrong but when i checked last time "Network" while watching youtube video, it looked like im watching live stream?
Is that how?
How can i do that?
>>
>>60312344
YouTube is not a platform for sharing vids. Youtube is an advertisement platform.
>>
>>60312344
Yep, youtube serves the videos it has in streaming. That's why it hangs when your lose your connection to the internet in the middle of a video, and also why you can start watching 2-hour long videos right away without having to download the whole thing beforehand, which would be far instantaneous.
>>
>>60312344
>How is youtube video working, why you can just simple find video url
This is an English speaking board. Arrange your sentences in a standard way because no one understands you completely.
>>
>>60310431
That is the most horrifying thing I have read this week.
May God have mercy on your soul.
>>
>>60311303
Become an hero. You'll get garbage collected and a new instance of (You) won't have this problem.
>>
>>60310253
That indent style is not idiomatic
>>
>>60311443
How can one of the most horrible creations ever be "God tier"?
>>
FUCKFUCKFUCK testing
>>
>>60310613
Also, they are semantically different from ignoring a return value with _ .

Anything bound to _ will have its destructor (i.e. drop() instance) called immediately, while an underscored variable will have drop called at the end of the current scope. This can be worth keeping in mind if your destructor has side effects or if you need to release resources such as locks.
>>
>>60312711
Yes, correct. _ pattern matches to everything without binding a value to a name, hence the destructor is run immediately. Variables starting with underscore are just normal variables, only difference is that the compiler doesn't warn when they are unused.
>>
Aside from classes and templates, what other features in C++ are worth using?
>>
>>60310204
Huh, structured Forth actually looks really good desu.

Does your program print the numbers that are not divisible by 3 or 5 though?
>>
>>60313099
No "features" in C++ are worth using, they are a disservice to intelligent programmers. Especially cl*sses and that pathetic attempt at "polymorphism".
>>
>>60313099
If you are asking this you are not ready for C++. Stick to babby languages like C
>>
>>60313101
Yes, but unfortunately it prints the numbers every time. ("dup println" line)

I decided against using quotes with multiple statements inside in my language to simplify things, so not printing the num when it's fizz/buzz would invole more (ugly) code
>>
>>60313099
>templates
>lambdas
>auto
>operator overloading
>namespaces
>>
>>60313217
Who wrote that?
>>
>>60313312
I did.
>>
>>60313324
Where? I don't see it before this post >>60313217
>>
Vba is lit
>>
>>60313324
Don't bother responding anon, he's trolling you with his greentext-is-for-quoting autistic wannabe-meme.

>who are you quoting anon?
>>
>>60313362
I'm quoting myself
>>
>>60313217
>templates
Ugly trash.
>lambdas
Not a "feature". Every single programming language has them.
>auto
A "feature" for retards who can't type-check in their head. Useless.
>operator overloading
Custom operators are better.
>>
>>60313359
vowel length is lexically significant in English, anon
>>
>>60313136
>cl*sses
We need to forbid star posting inside words.
>>
>>60313312
>>60312291
>>>/jp/
>>
>>60313336
Ok
>>
>>60310140
This might seem basic to most people here but how do i go about letting the user make new objects by using their inputs?
>>
>>60313432
guile
>>
>>60313432
>make new objects by using their inputs?
You want a Python/Lisp/C#/Perl/Java/Ruby/PHP/JS REPL or something?
>>
>>60313385
>Ugly trash.
with auto function definitions they get much nicer

>Not a "feature". Every single programming language has them.
it's still a feature even if everything has it

>A "feature" for retards who can't type-check in their head. Useless.
reduces code duplication

>Custom operators are better.
and are a superset of operator overloading
>>
>>60313432
sounds like a huge security vulnerability
>>
>>60313390
Try that on your home website.
>>
>>60313432
i should probably mention its on python
>>60313480
It's not for anything serious, just a small project
>>
>>60313469
>with auto function definitions they get much nicer
Which are unneeded. And "much nicer" doesn't somehow mean "not ugly".
>it's still a feature even if everything has it
No. It's a basic requirement for being a programming language. You can hardly call that a "feature".
>reduces code duplication
So? It's an insult to the programmer. If you can't type-check in your head you simply shouldn't be allowed near a compiler.
>and are a superset of operator overloading
In what way? My language has custom operators, but not operator overloading.
>>
Is OOP supposed to be difficult?
>>
>>60313488
My home doesn't have a website.
>>
>>60313544
You asked "What other features in C++ are worth using?", not "What features does C++ have that are better than the vast majority of other languages?"
>>
>>60313550
yes
>>
>>60313544
(I'm not >>60313469)
I don't believe your lang has custom operators but no type inference.
>>
>>60313550
no
>>
>>60313550
maybe
>>
>>60313550
its designed ot make programming easier my niqqa
>>
>>60313637
>nigger
You do sound like one indeed.
>>
>>60313596
I never asked anything. I just pointed out that your answer is wrong, since the correct answer would be "C++ doesn't have any features worth using".

>>60313614
It has type inference, but it's never really used except for making sure the type checker is correct. Type annotations are mandatory.
>>
>>60313647
>anything else but "can you repeat the question?"
You had
ONE JOB
>>
>>60313637
Pajeet, my son
>>
>>60313647
And it fails miserably.
>>
# macro square = << fun x -> x * x >>;;
macro square : (int -> int) expr =
<< fun x_1 -> Pervasives(*global*).( * ) x_1 x_1 >>
# macro n = << $square (42+1) >>;;
macro n : int expr =
<< (fun x_3 -> Pervasives(*global*).( * ) x_3 x_3)
(Pervasives(*global*).(+) 42 1) >>
# $n;;
- : int = 1849

Why is OCAML so fucking ugly?
>>
>>60313667
>>60313678
>memes
>>
>>60313655
Lambdas aren't worth using?
Ok, you imperative retard
>>
>>60313690
>memes
>>>/v/
>>
>>60313650
>>60313670

White Slav here, you filthy faggots
>>
>>60313691
A base requirement for a programming language isn't a feature, therefore it doesn't apply when mentioning features worth using. Please learn to read before making retarded statements.
>>60313707
>White Slav
That's impossible by definition.
>>
>>60313707
So basically a nigger
>>
>tfw monitoring the text messages of my teammates back in forth as they struggle to complete the project that I already completed

Shouldnt have made me do all the work this semester. Oh well, you dug your grave, now lie in it.

Its like music to my ears. I should pour some wine.
>>
should i learn hasklel
>>
>>60313750
>reddit spacing
I didn't even bother to read your post, because I already know it's fucking stupid. Piss off.
>>
does accessing a bit at an index in a bit vector take constant time? if so, how? i don't understand how accessing the 6000th bit in a bit string could take the same time as the first one, because the way i would do it is perform 6000 right shifts on b and then return b & 1
>A bit vector is simply an array of bits (0s and 1s). A bit vector of length m takes much less space than an array of m pointers. Describe how to use a bit vector to represent a dynamic set of distinct elements with no satellite data. Dictionary operations should run in O(1) time.
>>
>>60313760
Yes, before that redditor replies to you with his shitty running gag
>>
>>60313768
Ive been on this website for 10+ years and not one person has complained about my spacing till now.
>>
>>60313760
Only as a stepping stone.
>>
>>60313707
shouldn't you be hacking people's toasters to mine you $5 a year in bitcoins?
>>
>>60313760
Shitkell is practically useless.
>>
>>60313784
You write like a redditor. Obviously other redditors on the boards you visit wouldn't be complaining about that.
>>
>Get keeper on full autism spree
Isn't this killing /dpt/?
>>
>>60313778
What do you mean by this?
>>
>>60313760
Learn python instead, it's faster than trashkell
>>
>>60313750
>>60313768
>>60313821
Could you point to the original source of this? I'm really interested in reading further.
>>
>>60313840


> The original source is the post you just replied to
>>
>>60313776
Have you ever programmed? No computer allows you to bitshift along a 6000bit long integer because that would be dumb. You understand that an array of pointers is O(1) access right? now take an array of bytes, say each byte is 8 bits of the bit vector, store them accordingly, and access the 6000 element with array[750] & 1. done.
>>
>>60313835
>Learn python
Did that poster mention he was subhuman?
>>
>>60313860
No, that's why I recommended python.
>>
File: 2017-05-10 20.17.55.jpg (1MB, 2560x1920px) Image search: [Google]
2017-05-10 20.17.55.jpg
1MB, 2560x1920px
>>60313719
>>60313721
>>60313791
>>
>>60313856
>No computer allows you to bitshift along a 6000bit long integer because that would be dumb.
literally not the point so i stopped reading your post there
>>
>>60313869
But only subhumans would use python, he didn't mention he was of your kind so why are you trying to corrupt him?
>>
>>60313776
You understand that an array of pointers is O(1) access right? now take an array of bytes, say each byte is 8 bits of the bit vector, store them accordingly, and access the 6000 element with array[750] & 1. done.
>>
>>60313899
>But only subhumans would use python
No, only subhumans would yous trashkell, try not to make people join your "kind". No amount of desperation is going to help you.
>>
>>60313903
determined this was a part of your previous post without parsing it so i followed through with my decision by not reading this post either
>>
>>60313825
The one who keeps making posts like >>60313544
>>
>>60313899
SHITKELL is for animals
>>
>>60313938
>No, only subhumans would yous trashkell
I understand that it's hard for you to think logically, but those two things aren't somehow mutually exclusive.
>try not to make people join your "kind".
I'm not a double digit like yourself so I wouldn't be using either python or haskell.

>>60313964
see my response to the other subhuman.
>>
>>60313947
Sounds like what a fucking idiot who can't figure that if you can random-access 64 bits in a pointer array then it would be trivial to access 1 bit in a bit array in O(1) time would do. Have a good time failing your class negro.
>>
Excuse me guys, I got a question


If hask*ll is garbo callected, why isn't it collecting itself?
>>
>>60313956
What's wrong with that post?
>>
>>60313977
>I wouldn't be using either python or haskell.
Using python requires tripple digit IQ, I just assumed the poster met the requirement.

However if he has a single digit IQ like yourself he should use shitkell
>>
>>60313993
Good question
>>
>>60314003
the rate at which he makes posts
>>
>>60314006
>Using p*thon requires tripple digit IQ
Only assuming IQ is measured in integers and not naturals.
>>
>>60313977
>see my response to the other subhuman.
See >>60313964 again
>>
File: 1452606704319.jpg (433KB, 1000x1166px) Image search: [Google]
1452606704319.jpg
433KB, 1000x1166px
Ok so, me and a friend have a discrepancy...
I've got a Bot that just uses the console, you log into Steam, requests 2fa if needed etc, then it just does everything for you whilst printing little bits and pieces the average user probably wont care about, but can be useful for debugging etc.
He's saying for maximum user friendliness it should have a GUI

Why on earth would I bother adding a GUI?
Couldn't even the most simple of simpletons read and input a username and password?
>>
>>60313993
Making me think
>>
>>60314035
I'm not sure I quite understand you. So the post itself is correct but you just don't like something?
>>
>>60313993
Because anything made with/for trashkell is trash
>>
>>60313870
Slavs are literally snowniggers
>>
>>60314041
>steam
do you expect gamers to know how to use a command line program
>>
>>60314041
>Does everything for you
What is "everything"? Who is your target audience?
>>
>>60314081
>Snowniggers
kek, you stupid faggot
>>
>>60313990
it's summer so there's no classes, good friend, and also just tell me how to implement constant time access for a bit array other than doing right shifts then
>>
File: 1452370193606.jpg (18KB, 500x342px) Image search: [Google]
1452370193606.jpg
18KB, 500x342px
>>60314119
>>60314113
It literally accepts friendship requests, hands out messages once accepted, replies to messages
I didn't bother doing anything else because that's all they asked for.

All the user has to do is log in and then let it run.
>>
>>60314148
Just write a simple gui in some pleb language that calls your executable
>>
>>60314148
This sounds like it's for a trading bot of some kind, just from the description. Your friend is wrong, a GUI isn't necessary since the target audience sounds technologically competent to the degree where a terminal is not intimidating. Maybe you could change how you log things (instead of returning to terminal, log to a file).
>>
>>60314140
T
R
I
V
I
A
L

you have random access on bytes right? Then you access the right byte inside the bit vector, and you find the bit's value with right shifts.

T
R
I
V
I
A
L
>>
>>60314188
>and you find the bit's value with right shifts.
i'm saying that since you have to perform 6000 right shifts to access the 6000th index, it's not constant time. i knew you didn't understand what i was saying so i didn't bother reading your post
>>
File: 1491927408556.gif (1MB, 480x287px) Image search: [Google]
1491927408556.gif
1MB, 480x287px
>>60314203
>you have to perform 6000 right shifts
are you braindead?
>>
File: 1453576997268.jpg (7KB, 244x207px) Image search: [Google]
1453576997268.jpg
7KB, 244x207px
>>60314183
I'd considered doing the log to a file, the trading part, it's literally not even for trading, they just wanted a bot that could do as was mentioned above, although the messages do come from a .txt but thats literally it.
>>60314181
But what would even be the point of it
what would you even populate it with
>pic related
>>
>>60314203
no you dont you fucking brainlet who doesn't understand RAM, you fetch just one byte, and you cut that byte up to get the target bit, how is that too difficult for you to grasp? You understood array pointers, how are you so bounded that you can't generalize that to bit vectors in RAM?
>>
>>60314230
Two inputs with user's credentials and a big red button to start, that's it.
>>
>>60314218
if you understand it, then explain why it takes as much time to shift a bit by 5 as it does to shift it by 1
>>
File: 1453558918051.png (11KB, 343x543px) Image search: [Google]
1453558918051.png
11KB, 343x543px
>>60314250
I guess I'll probably just have to resign to that if it keeps up.
>>
>>60314257
Grasp the fucking basics before you come here to boast you dummy.
>>
>>60314257
You don't have to perform 6000 shifts, you fetch the right byte, then perform at maximum 7 shifts, which on modern CPUs is O(1)
>>
>>60314280
since you can't explain it, i assume you don't truly understand it either
>>
>>60314312
then that would be O((n/8)+(n%8)) not O(1), wouldn't it?
>>
File: 1485786552834.png (171KB, 374x347px) Image search: [Google]
1485786552834.png
171KB, 374x347px
What's better for lambda syntax "->" or "=>"?
>>
>>60314314
I'm too lazy to draw you a fucking diagram of how RAM is random access and its content can be copied from and to the CPU register, there's already plenty available on the internet, but none that's babby-tier enough for you you stupid cunt.
>>
>>60314350
why are you so angry just because i ask you to explain something
>>
>>60314344
λx.e
>>
>>60314363
probably because you are acting like a fag

just a guess
>>
>>60314230
Yeah, just change it to log to a file. Worst case you pick up just about any damn language and mock up some quick GUI wrapper to satiate the brainlets.

I can only assume GUI users would be on Wangblows, so you could fire up VS and do some jank-ass Winform/WPF window that calls your actual program. Otherwise, you could pick up Tkinter and mock something up super fast.
>>
>>60314336
Fetching a byte is an O(1) operation. Then shifting is another O(1). You could argue that it's an O(1+1) operation.
Keep in mind that you can also perform bitshifting by multiplying/dividing by a power of 2. If you think that multiplying numbers is not an O(1) operation I wont reply anymore.
O(2) is still constant time.
>>
>>60314336
NO ITS FUCKING NOT!!! fetching the byte is O(1) because RAM is an array, not a stack. You have O(k + (n%8)), where k is some material constant for fetching bytes, and n%8 is what you think it is. That's basically O(1)
>>
lol, i figured out how continuous-time FIR filters work with the fourier transform and window functions and everything, this shit is so obscure if you don't know exactly what to google and such, if i were anything less than a genius i'd be one of those brainlets who use those rinky-dink shit filters because they can't be bothered to figure things out properly
>>
>>60314378
I already have '.' for pi.
And a dot with "λx : t . e" looks out of place.
>>
>>60314428
>I already have '.' for pi
>>
>>60314428
i don't think it's that out of place, and you can always have

λ(x:t).e

you can re-use syntax for pi types, plus you could even add

t → e
if you ignore the input
>>
Using DFS you can detect a cycle in a directed graph by maintaining an array of visited vertices and a structure that tracks which vertices are currently being processed in the recusrive DFS call stack.

"In addition to visited vertices we need to keep track of vertices currently in recursion stack of function for DFS traversal. If we reach a vertex that is already in the recursion stack, then there is a cycle in the tree."

Will this algorithm also reliably detect cycles in an undirected graph?
>>
>>60314458
What were you trying to say?

>>60314473
>λ(x:t).e
That actually looks fine. I'll try some form of it.
>plus you could even add t → e if you ignore the input
I would prefer an explicit '_' for that.
>>
File: 1493993714204.jpg (79KB, 600x783px) Image search: [Google]
1493993714204.jpg
79KB, 600x783px
>submit program to professor
>complain about my writing for statement like this
for(int i = 0; i < 5; i++)

>says MANY C compilers don't support that and I should write it like this
int i;
for(i = 0; i < 5; i++)

The functionality of my first example was added in the C99 standard, ok maybe he's compiling in C89 mode for some ungodly reason, well I've seen him use single line comments, a feature added in C99... Is my professor retarded or am I missing something here. Should I go out of my way to point out whenever he uses a feature that was introduced in C99?
>>
>>60314336
Ive seen some shit
>>
>>60314534
Your teacher is right.
>>
File: 1494363339754.png (441KB, 3555x2198px) Image search: [Google]
1494363339754.png
441KB, 3555x2198px
>>60314534
>C
lmao
>>
>>60314534
>enforcing C89 for teaching
He's a retarded purist dinosaur
>>
>>60314534
He's right.

You're wrong.
>>
>>60314556
>his program uses strings
please kindly go back to /wdg/
>>
>>60314534
Did your make file specify a standard newer than C89?
>>
>>60314581
Name one program in your desktop that doesn't
>>
>>60314595
>quoting
plebian string user detected
>>
>>60314545
>>60314578
explain yourselves
>>
>>60314569
>>60314588
>deleting a post over a small type
autism
>>
File: peter2.jpg (46KB, 747x316px) Image search: [Google]
peter2.jpg
46KB, 747x316px
>>60314613
Here, this will help you.
>>
>>60314545
>>60314578
if the teacher insists on using ansi C in the current year he shouldn't use // comments
>>
>>60314606
if you need to use strings, you should use the right tool for the job. like python or javascript
>>
>>60314676
>or javascript
almost had me, bruh
>>
>>60314676
That doesn't answer my question.
>>
>>60314698
what question?
>>
>>60314581
this

what fucking code monkey shit are you fuckers doing that you need to use strings to any significant extent. is your program 90% GUI and 10% premade libraries or what the fuck?
>>
>>60314638
>pointing out a silently corrected typo
autismer
>>
>>60314748
>silently
>implying your [DELETED] doesnt stick out like a sore thumb
>>
>>60314656
I agree about // comments. Maybe your teacher doesn't know that it's not valid C. Tell him, he will thank you.
>>
File: 1493245789653.jpg (299KB, 900x900px) Image search: [Google]
1493245789653.jpg
299KB, 900x900px
>>60314768
>He uses a browser extension made just for one particular anonymous image board
autismest
>>
>>60314807
Why do these extension faggots need to ruin 4chan?
>>
>>60314807
eww wtf is that cringe shit?
>>
>>60314534
>Not specifying the c version in a pragma just to fuck with him
Also yes, your professor apparently doesn't know // is not valid in ANSI c.
>>
>>60314807
>he doesn't browse this shithole 16 hours a day
Hola reddito!
>>
>tfw graduating in month with cs
i feel like i know absolutely nothing practical and in the practical areas, im awful. Not saying im good at the impractical areas either. How am I supposed to get a job?

its hard to get motivated enough to do projects in free time, i just want to play games and jack off most of the time. I guess after graduation I'll have more time to do random projects and not worry about class.

a bit of a blog post but am i fucked?
>>
why do haskell programmers get ALL the girls
>>
>>60314857
SHITkell*
Sorry for the typo
>>
File: 1488.jpg (414KB, 1477x1108px) Image search: [Google]
1488.jpg
414KB, 1477x1108px
daily reminder that 4chin and /g/ runs on russian software
all hail putin, the arian king, hope of white race
poccия cилa, зaпaд мoгилa <-- murica is kill
you heard it here first
>>
>>60314879
Happy stalingrad day
>>
having to program in a shitty api in a shitty language in a shitty tool is the worst thing to ever happen.

Fuck blender & pythonI hope ill never have to touch this piece of shit software ever again. fucking cancer
>>
>>60314879
did whoever made this not know that the statue of liberty is in the middle of a harbor
>>
>>60314879
Ha ReactOS выдeлили дeньги?
>>
>>60313199
I'm not familiar with all the words you use, but maybe something like this?

proc fizzBuzz
dup 0 = @return if

dup 5 %
over dup 3 %

dup !
"Fizz" "" ifelse
print

over !
"Buzz" "" ifelse
print

* !
"" over ifelse
println

1 - fizzBuzz
end

100 fizzBuzz
>>
Can anyone help me with a problem with printing? The program prints correctly on W7 and W10 on different machines on printer X.
The program prints correctly on W10 and printer Y, however it prints incorrectly on W7 and printer Y. The code is identical in all cases, as well as the settings (clean install). Is this a case of drivers and would installing W10 on the machine fix the problem?
>>
>>60315008
>>60310204
Is forth turing complete or is it only as powerful as a pushdown automata?
>>
File: 1491134366158.jpg (85KB, 650x780px) Image search: [Google]
1491134366158.jpg
85KB, 650x780px
>>60310204
What are you writing it in? Have you started compiling yet?
>>
>>60315067
Turing-completeness isn't a measure of "power". Most computable functions are worthless trash.
>>
>>60315025
>>>/g/sqt


>Is this a case of drivers and would installing W10 on the machine fix the problem?
Who knows? Maybe. Try it.
>>
File: 1439859880247.gif (260KB, 266x207px) Image search: [Google]
1439859880247.gif
260KB, 266x207px
>>60315075
I wrote my own compiler, with my own language edits
>>
>>60315008
You're on a good path, but on line 11 you swap 100 with the % 3 result, and then taking the 100 as the 5 % result.

proc fizzBuzz
dup 0 = @return if

dup 5 %
swap dup 3 %

dup !
"Fizz" "" ifelse
print

; Stack: %5result, 100, %3result
swap ! ; So here you are swapping %3result with 100, then not it
"Buzz" "" ifelse
print

* !
"" @swap ifelse
println

1 - fizzBuzz
end

100 fizzBuzz
>>
>>60315067
PDA with two stacks is equivalent to a Turing machine, and Forth has at least two, usually even more (float, string and control flow stacks)
>>
>>60315139
wdg is that way >>>/g/wdg/
>>
>>60315167
Over isn't swap. It's like dup but it duplicates the element one slot down.
>>
(module wedding
(static (final-class person
name::string
fname::string
(sex::symbol read-only))
(wide-class married-man::person
mate::person)
(wide-class married-woman::person
maiden-name::string
mate::person)))

As we can see people are allowed to change their name but not their sex.

>people are allowed to change their name but not their sex.
Absolutely problematic!
>>
>>60315345
submit a pull request
>>
>>60315246
Oh, I haven't implemented that one yet, but sure will. Here's fizzbuzz only with swap, pretty ugly.
proc fizzBuzz
dup 0 = @return if

dup 5 % !
swap dup 3 % !

dup
"Fizz" "" ifelse
print

@swap swap dip
swap dup "Buzz" "" ifelse print
+ !
swap dup @swap swap
dip swap

@print @pop ifelse

"" println

1 - fizzBuzz
end

100 fizzBuzz
>>
So I'm playing with DLL injection a bit around and so far so good, I check error code of every function call, no problems here, I verify with Process Hacker that the module has been loaded and it's there but the attach never gets called in the DLL, what gives? Anything obvious I'm missing?
>>
>>60315420
stop it right now.
>>
>>60315444
Stop what?
>>
>>60315205
here's your (You)
>>
File: 04.jpg (83KB, 393x325px) Image search: [Google]
04.jpg
83KB, 393x325px
>create an android app that werks but code is too messy to even show to anyone
Where to learn software design?
>>
>>60315514
read this sentence.

Eye-scan complete.

Thank you.
>>
File: 1493157041639.jpg (23KB, 250x250px) Image search: [Google]
1493157041639.jpg
23KB, 250x250px
how in fuck can someone work as a developer for over 30 years and STILL be absolutely awful
boggles my mind
>>
>>60315546
I can't read this post, sorry. Use standard American or Australian English next time.
>>
>>60315583
Thank you for reading the sentence.
>>
>>60315611
Can someone who speaks his language translate this?
>>
>>60315583
>A*rican "English"
>>
>>60315689
Who are you talking to?
>>
>>60315689
>>60315716
>>>/r/ibbit
>>
>>60315689
You are reading this sentence.
>>
>>60315716
Oh, so is that his language? I don't speak "African "English"". Since you appear to be black, could you help me with translating his posts?
>>60315738
To the thread as a whole.

>>60315739
see >>60315739

>>60315740
Translation?
>>
>>60315762
>>>/r/abbit
>>
>>60315762
Read this sentence again.
>>
>>60315778
refer to >>60315778
>>
>>60315789
>>>/r/ibbit
>>
>>60315762
>This much upset
Burgers gotta be nuked ASAP
>>
>>60315762
This sentence is comprised of letters, spaces and two characters.
>>
>>60315762
I'm not "America" either, I'm white.
>>
>>60315806
Why do you think that would somehow remove me from this thread/world? Thankfully I'm not one of their communist kind.
>>60315813
But what do these letters, spaces and characters mean? It doesn't look like English at all.
>>60315829
I don't think so.
>>
>>60315838
>>>/r/ebbit
>>
>>60315861
see >>60315861 and then repeat the previous instruction
>>
>>60315884
>>>/r/abbit
>>
File: 2000000.png (487KB, 540x540px) Image search: [Google]
2000000.png
487KB, 540x540px
I see you guys are having a rich discussion on programming
>>
>>60315913
go back to 9gag
>>
>>60315913
This is not really a "programming" thread, it's just language circle jerking and shitposts while pretending to be programmers.
>>
>>60315926
I see you there friend
>>
File: 14561658083420.png (383KB, 690x690px) Image search: [Google]
14561658083420.png
383KB, 690x690px
Programming question:
What type does anime have?
>>
>>60315937
what do you mean?
>>
>>60315944
anime implements ILoser interface and inherits EternalFailure
>>
>>60315970
>interface
>>>/r/abbit
>>
File: 1494429234196.jpg (260KB, 736x916px) Image search: [Google]
1494429234196.jpg
260KB, 736x916px
>>60315979
>>
File: 1458524886190.png (71KB, 300x346px) Image search: [Google]
1458524886190.png
71KB, 300x346px
How can I make a program least portable? I want my program to run on Linux and Linux only, which will require the Linux kernel. I want to actively prevent cross compilation, and even if it does it should require an active Linux kernel.
>>
File: 1494219560695.jpg (420KB, 3200x1703px) Image search: [Google]
1494219560695.jpg
420KB, 3200x1703px
>>60314824
>>60314827
where do you think you are?
>>
>>60315970
>anime
>OOP
no thanks
>>
>>60315996
But Linux is complete trash if you're using GNU with it, which you most likely are.
>>
>>60315996
>He writes nonfree software
fucking kill yourself and your shit software
>>
>>60315996
That's not very Linux of you.
>>
>>60315996
Make syscalls
>>
>>60316030
How can you "kill" "software"?
>>
File: 2017-05-10-223531_255x52_scrot.png (4KB, 255x52px) Image search: [Google]
2017-05-10-223531_255x52_scrot.png
4KB, 255x52px
WHY DOES SUBLIME HIGHLIGHT f AND d ATOMS REEEEE
>>
>>60316085
>incorrect usage of "REEEEE"
I don't want reddit stink nearby. Fuck off.
>>
>>60315996
Depend on systemd :^)
>>
>>60316083
by making it run only on one platform with less than 2% marketshare
>>
Is ATS really the best lang ever made?
>>
Just switched to linux, should I bother with a ide for python on just run atom with script?
>>
>>60316103
>you must screech according to a subset of frustrations concerning the pride of being a recluse ; any other usage of my nerdscreech is gonna lead you to reddit
nice autism there but you're to fuck off
>>
>>60316124
Pycharm
>>
>>60316119
I don't want subhuman micropajeets to touch my software
>>
>>60316124
sublime + sublimeREPL works fine desu

better than eclipse, less bloated than pycharm
>>
>>60316138
I want to see the reasoning why you're not from reddit, which you obviously are. Everything in your posts reeks of reddit.
Seriously: piss off. Your kind is not welcome here.
>>
>>60316154
no john, you are the pajeet if you make nonfree software
>>
>>60316163
You have been gate keeping for 4 hours by now.
>>
>>60316124
>ide
Get off /g/
>>
>>60315996
>what is cygwin
>>
>>60316170
Source is open and you are fee to use it, if your system meets the requirements
>>
>>60316154
But GNU software is precisely for subhumans. Why would you let only one group of subhumans use your software?
>>
>>60316184
Does cygwin make use of the Linux kernel?
>>
>>60316163
sure, almighty Lord of the Nodev threadsquatters, gatekeeper of the 4chan kodeshrines
>>
>>60316199
>kodeshrines
So basically you're admitting that you're a redditor then.
>>
>>60316186
It doesn't respect the four essential freedoms and thus is nonfree.
>>
>>60316194
don't think so but check this
>https://en.wikipedia.org/wiki/Cooperative_Linux
>>
>>60316107
This actually
>>
>>60316188
Anything but GNU are for uncivilized orcs. Plain and simple.
>>
File: 2017-05-10-224825_396x64_scrot.png (8KB, 396x64px) Image search: [Google]
2017-05-10-224825_396x64_scrot.png
8KB, 396x64px
reminder
>>
>>60316213
>freedom"s"
>>>/r/ibbit
>>
>>60316262
thanks
>>
>>60316262
>*reddit*
How is your first day here going?
>>
>>60316282
nah, it doesn't work for the first field
>>
>>60316262
>>>/leddit
>>
>>60316239
Isn't GNU for Communists by communists?
>>
>>60316306
>Isn't GNU for Subhumans by subhumans?
fixed your typo.
>>
File: 1472093544621.jpg (17KB, 358x373px) Image search: [Google]
1472093544621.jpg
17KB, 358x373px
>>60316277
Hi r*ddit!
>>
File: 1482157527288.png (677KB, 800x2000px) Image search: [Google]
1482157527288.png
677KB, 800x2000px
>>60316306
>>
>>60316325
>ribbit the reddit frog
Back to your subreddit

>>60316327
>an image straight from ribbit
Seriously, just piss off.
>>
>Gate keeper is also a microsoft shill
What a surprise
>>
>>60316355
>peak autism level
Let's drive you nuts.

reddit
memes
> Who am I quoting
>>
File: 1466624707921.jpg (32KB, 399x388px) Image search: [Google]
1466624707921.jpg
32KB, 399x388px
>>60316355
Stop trying so hard to fit in
>>
>>60316355
nice memes friendo :^)
>>
>>60316369
I am going to block you now. You annoy me.

>>60316373
>rabbit the ribbit frog
Are we being raided by redditors like you today?
>>
>>60316327
The real life equivalent of GPL is like being a Roach, a Moroccan or a Muslim. Once you get infected by it you and your offspring are forever fucked.
>>
>>60316385
>:^)
If you're going to act like a fucking redditor, go to fucking reddit.
>>
File: 1485544929663.png (66KB, 554x400px) Image search: [Google]
1485544929663.png
66KB, 554x400px
>>60316387
>ribbit
nice redditspeak, but you have to go back friend :^)
>>
>>60316387
>You annoy me.
Is the guilt-consistence kicking in?


Or do you need more to have your daily autistic meldown?


Reddit


meems
Object orientation
>>
>>60316401
Nice argument, micros**t shill
>>
>>60316408
>ribbit frog
>:^)
I don't want reddit stink nearby. Fuck off.

>>60316413
I don't see your posts now. I blocked you.
>>
>>60316406
No. Are you able to do anything about it.
>tfw reddit tab open
>>
>>60316421
Both microsoft and GNU software is for pure subhumans.
>>
File: 1490390702239.png (93KB, 320x252px) Image search: [Google]
1490390702239.png
93KB, 320x252px
>>60316452
>>
>>60316429
get a life you're in a programming thread all day everyday doing this shit instead of actually programming
>>
>>60316429
So you cannot see my posts now

public class HelloWorld {

public static void main(String[] args) {
// Prints "Hello, World" to the terminal window.
System.out.println("Hello, World");
}
>>
File: 1474306575869.png (660KB, 1106x1012px) Image search: [Google]
1474306575869.png
660KB, 1106x1012px
>>60316429
Is it summer already? You'll have to return >>>/v/ermin
>>
>>60316480
He does the gate keeping for free
>>
>>60316481
I'll try to guess what you wrote.
No. I don't see your posts.

>>60316482
Why do you keep denying being a redditor? Fuck off.
>>
>>60316509
wtf I love reddit now!
>>
File: 1466271087062.jpg (18KB, 306x306px) Image search: [Google]
1466271087062.jpg
18KB, 306x306px
>>60316509
Back to your consumerist shill threads vermin
>>
>>60316464
I don't use Linux or W*ndows or anything with even slight traces of GNU, sorry.
>>
>Jannies keep the board clean
>He keeps the thread clean
kek
>>
>>60316538
>actually admitting to be a mactoddler
>>
>>60316550
Don't use that garbage either. It's not worthy of being mentioned with even such shit as GNU.
>>
so what anime do you guys watch while programming?
>>
Has anyone here tried ATS? It seems interesting but I can't make head or tails of it.
>>
>>60316559
yea yea, you use shitbsd or some other trash I get it, you are "different"
>>
>>60316533
>ribbit the reddit frog
I didn't even bother to read your post, because I already know it's retarded. Seriously, piss off.
>>
>>60316586
Why did you get timid so suddenly. Hello wtf?
I still have a reddit tab open and I am still here? Do your job and drive me out
>>
File: 1467149910660.jpg (36KB, 657x527px) Image search: [Google]
1467149910660.jpg
36KB, 657x527px
>>60316586
>tfw running out of pepes to trigger you with
anyways someone should make a new one, this one is at bump limit
>>
>>60316601
>wtf
Why do you keep denying being a redditor? Fuck off.

>>60316612
>"pepes"
I don't want reddit stink nearby. Fuck off.
>>
File: 1480116443396.jpg (37KB, 680x734px) Image search: [Google]
1480116443396.jpg
37KB, 680x734px
>>60316622
>yfw you'll never fit in with the cool guys
>>
>>60316622
>Fuck off.
No
>>
File: v&.png (35KB, 475x122px) Image search: [Google]
v&.png
35KB, 475x122px
>>60310179
>>
>>60316646
oof
>>
>>60316631
Of course a redditard would deny being in reddit. Piss off.
>>60316634
Yes.
>>
>>60314344
[]
>>
>>60316667
>Piss off.
He is not. Pls save 4chen we are being raided :^((((
>>
File: 1471088615984.jpg (6KB, 250x164px) Image search: [Google]
1471088615984.jpg
6KB, 250x164px
>>60316667
>Piss off
It's so obvious you're a redditard it hurts
>>
>>60316693
>:^(
Go be retarded somewhere else, like at reddit.

>>60316695
Only an obvious redditor would not know it. Back to your subreddit.
>>
>>60316667


Literally posting this to /r/4chan now, come on. Up your game. Whatever you are trying to do to keep me out of 4chan is definitely not working
>>
File: 1472762416784.png (202KB, 432x520px) Image search: [Google]
1472762416784.png
202KB, 432x520px
>>60316706
>Knowing what a subreddit is
Caught red handed, redditshit
>>
>>60316706
>Go be retarded somewhere else


I don't really see any compelling reasons for that
>>
File: 1466959099491.png (153KB, 423x516px) Image search: [Google]
1466959099491.png
153KB, 423x516px
>>60316742
>trying to deny your redditness
not so fast reddito
>>
>>60316742
Hello, reddit
>>
>>60316761
So you won't deny being a redditor? As I predicted.
Just fucking leave and spare yourself from further embarrassment.
>>
File: The power of our gate keeper.jpg (106KB, 655x472px) Image search: [Google]
The power of our gate keeper.jpg
106KB, 655x472px
>>60316742
>Didn't read your post.
>>60316667
>Piss off.
>>60316509
>Fuck off.
>>60316406
>go to fucking reddit.

Ur cute, post ur feet
>>
remember to report both of these thread-derailing chucklefucks
>>
File: 1485278067409.gif (2MB, 580x433px) Image search: [Google]
1485278067409.gif
2MB, 580x433px
>>60316782
>he can't even read greentext
Jesus christ you can't be more of an obvious redditfag
>>
>>60316742
>Didn't read your post.
Of course, your single digit IQ cannot handle reading.
>>
>>60316816
Seriously though, why is he so docile?
>>
>>60316816
That picture does reflect your retardation quite well
>>60316819
I don't want reddit stink nearby. Fuck off.
>>60316840
Didn't even start reading your post.
>>60316851
Ah yes. Ribbit the reddit frog.
>>
>>60316863
He's a self hating, projecting reddit user
>>
File: 1488143910221.jpg (48KB, 330x319px) Image search: [Google]
1488143910221.jpg
48KB, 330x319px
>>60316883
>reddit stink
You're the patient zero mate
>>
>>60316883
>Replies got limited to one-liner "please leave me alone"
Cute boy doing cute things
>>
>>60316883
Pls anon. I like young boys.
>>
>>60316883
Low energy cuck
>>
>>60316915
Why do you keep denying being a redditor? Fuck off already.
>>
File: The power of our gate keeper.jpg (32KB, 700x525px) Image search: [Google]
The power of our gate keeper.jpg
32KB, 700x525px
>>60316936
>Fuck off already.
>>
File: 142842563050.jpg (3KB, 125x100px) Image search: [Google]
142842563050.jpg
3KB, 125x100px
>>60316936
Why are you projecting your self hate? You're the only redditor ITT
>>
>>60316883
>reddit stink
he who smelt it, dealt it
>>
File: The power of our gate keeper.jpg (43KB, 400x400px) Image search: [Google]
The power of our gate keeper.jpg
43KB, 400x400px
Is your mum helping you during this mental stress?
>>
Name 1 (one) language comfier than scheme
>>
>>60316946
Stop trying to justify your mental illness.
>>60316950
>posting the rabbit frog
Imagine having a life so dull and pointless that you're reduced to this.
Seriously, just fuck off.
>>
>>60316984
Aww, why didn't your reply to me, bb? <3
>>
File: 1476361825837.jpg (59KB, 395x401px) Image search: [Google]
1476361825837.jpg
59KB, 395x401px
>>60316984
Imagine being such a redditfag that you have to try this hard to fit in
>>
>>60316977
Scheme.
>>
>>60317015
Don't bully kids
>>
>>60317015
You need to disprove your blatant redditry in the first place.
>>
>>60317026
The burdeon of proof is on you my redditfriend
>>
>>60314344
=> imo
>>
Make a proper thread next time, retard.
>>60316753
>>
>>60317042
>burdeon
What is that? Something they say on rabbit?
>>
We can make it to 500 goyim!
>>
>>60317075
Only if you have a single digit IQ
>>
>>60317113
A single digit of what?
>>
One of these days I ought to actually put some real effort into learning Rust. It seems like a reasonably nice language, even if I am doing rather well with C++ and Ruby. I might do some research on it someday or something.
>>
>>60317387
Rust is for traps, not for girls
>>
File: rust is a safe space.png (18KB, 802x136px) Image search: [Google]
rust is a safe space.png
18KB, 802x136px
>>60317387
Rust is literally an SJW language.
>>
new thread:
>>60317495
>>
>>60317387
It'll really suit your striped socks
>>
>>60317410
I am neither a trap nor a girl.
>>
>>60317808
lying is very un-ladylike
>>
>>60310956
> Lisp Machines had these, it didn't help them.
actually it did, but the average poster on /g/ wouldn't know anything about it
>>
>>60318378
Indeed. Is that the reason you don't know anything about it as well?
Thread posts: 413
Thread images: 55


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.