Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Let's help each other fight this Brave New World

Name: Super Hell !JM1IoNO1/U 2018-06-29 14:26

Complain about it, try to understand the reasons for it, and think up methods of combating it.

Name: Anonymous 2018-06-29 14:42

HALT AND CATCH FIRE

Name: Anonymous 2018-06-29 18:59

I tried. I wrote "Putin sucks" at the vk.com and got charged with terrorism. Barely managed to escape Russia. Good luck!

Name: Anonymous 2018-06-29 19:47

This is a nice thread and all, but it would better suited in /lounge/ since it has nothing to do with programming.

Name: Super Hell !JM1IoNO1/U 2018-06-29 20:19

>>4
When I said means of combating, I thought of technological means, mostly software. It depends on what the community makes of this thread.

Name: Hoi Polloi 2018-06-29 21:05

We shall overcome.

>>3
I tried. I wrote "Putin sucks" at the vk.com

V Kontakte? Molodets!

Name: Anonymous 2018-06-30 4:32

Social media: have a neutral/normie social media presence on facebook, twitter, etc (even if you have to fake it). Don't reveal your true thoughts and political stances. No social media = red flag. I wouldn't be surprised if other countries copy China's social credit system.

Name: Anonymous 2018-06-30 14:10

What programming language is this?

Name: Super Hell !JM1IoNO1/U 2018-06-30 17:30

>>8
I'm experimenting website scanning with Python, because it's easy to use.

Name: Super Hell !JM1IoNO1/U 2018-06-30 20:17

Also, this thread is open to software request, if it isn't super complicated and doesn't require a graphical interface.

Name: Anonymous 2018-06-30 21:33

>>10
can you make an aggregated web-enabled disintermediate robust seamlessly granular "hello world"?

Name: Anonymous 2018-06-30 21:54

Text based adventure game in Malbolge.

Name: Super Hell !JM1IoNO1/U 2018-06-30 22:28

>>12
What purpose would that serve? This is something I've been noticing for a long time. This misunderstanding that difficult = worthwhile, because it somehow will impress others and that seems to be what programming skill is all about, right? Your post shows a complete lack of creativity or critical thought. It seems lik I have to spell things out for you guys, but I mean software that fits the theme of the thread, which you can read if you scroll a little bit upwards to the original post.

Name: Anonymous 2018-07-01 1:08

>>13
It totally fits the theme of this thread, the text adventure game can be about dystopias and other shite.
Purpose? Have fun maybe?

Name: Super Hell !JM1IoNO1/U 2018-07-01 16:59

>>14
Then not on a goddamn esoteric language created with difficulty in mind.

This could serve as counter-propaganda, I think. It's a nice idea if pollished a bit, and does meet the non-gui requirement I made. But still it'd have to use ncurses, which creates a learning dependency all the same, since I've never learned to use this lib, and that was my original meaning and intention, tha I would create programs that are very easy for me to make, based only on my current knowledge.

Name: Super Hell !JM1IoNO1/U 2018-07-01 17:00

Also, fun is overrated.

Name: Anonymous 2018-07-01 18:22

Boomers like older languages with manual memory management because they think dealing with hardware issues is better than spending time solving meaningful problems that require higher levels of abstraction. Don't listen to dinosaurs when they tell you to learn C instead of Python.

Name: Anonymous 2018-07-01 20:19

>>15
Then not on a goddamn esoteric language created with difficulty in mind.
Be more clear on your rules then, asshole.

But still it'd have to use ncurses
No, you would not.

Name: Anonymous 2018-07-01 20:19

tha I would create programs that are very easy for me to make, based only on my current knowledge.
"I don't want to learn new things"

Name: Super Hell !JM1IoNO1/U 2018-07-01 23:50

>>19
I don't. I already know enough. New rule is you can't specify the language, only the functionality you desire. And preferably something tangently useful, not simple entertaining.

>>18
I thought you would have sense, and I wouldn't have to spell everything out for you. But anyway, I guess I can be more clear. For now it's like this:

The interface will be the command line.

Preferably suggest something you know how to do, but don't have the time to implement (as a guide to the level of difficulty that I am expecting). Also, short development time is preferable.

Useful over unuseful. Entertainment for fun is to be considered useless. Propaganda utilities aren't. Always make the clear distinction.

That's it for now. I think this is enough to get the meaning. I'm concentrating on creating tools to interact with the internet without a browser, for now.

Name: Anonymous 2018-07-02 6:33

>>15
depending on what kind of text adventure you want, you might not need curses. parser-based games could just as well use readline, but in practice you should rather just use Inform 7

Name: Anonymous 2018-07-02 6:38

write a dubs checker

Name: Anonymous 2018-07-02 17:39

>>22
((n%100)/11)%1==0 Edited on 02/07/2018 17:42.

Name: Anonymous 2018-07-02 21:05

>>20
Make a type checker for the calculus of constructions. It does not get more useful than this.

Name: Super Hell !JM1IoNO1/U 2018-07-02 22:32

>>24
I've never heard of such a thing. What problem does it solve?

Name: Anonymous 2018-07-03 0:07

>>25
Makes sure that your programs are not buggy crapware.

Name: Anonymous 2018-07-03 0:57

%1==0

Name: Anonymous 2018-07-03 2:49

$ python
Python 3.6.5 (default, Jun 20 2018, 23:49:18)
[GCC 4.2.1 Compatible Android (4691093 based on r316199) Clang 6.0.2 (https://a on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> def f(n):
... return ((n%100)/11)%1==0
... >>> f(22)
True
>>> f(23) False
>>> f(133) True
>>> f(134) False
>>> f(132)
False >>> f(35455)
True

Name: Super Hell !JM1IoNO1/U 2018-07-03 2:50

>>26
That can be done by simply being competent.

Name: Super Hell !JM1IoNO1/U 2018-07-03 3:05

Also, I would have to learn something I don't know.

https://cs.stackexchange.com/questions/41192/algorithmic-type-checking-for-calculus-of-inductive-constructions

Reading up on this it seems this is a problem that isn't solved yet, and going into it would constitute novelty search. I am not a scientist.

Name: Anonymous 2018-07-03 3:30

Also, I would have to learn something I don't know.
Good, learn it then.

Reading up on this it seems this is a problem that isn't solved yet
Bullshit, coq does it fine, Agda does it fine, Idris does it fine.
There are readable implementations of it in under 100 lines.

As for the question, this is a totally different problem that is not required to make a normal type checker (and the solution is given in HoTT).

Name: Super Hell !JM1IoNO1/U 2018-07-03 3:37

Good, learn it then.
How about no.

Bullshit, coq does it fine, Agda does it fine, Idris does it fine.

Then use those tools. Hey, I even heard Coq is open source, maybe you could, I don't know, copy its code? Why waste time on stupid challenges?

Name: Anonymous 2018-07-03 5:02

How about no.
Why do you hate learning important things? Are you a tool?

Name: Anonymous 2018-07-03 6:31

hey /prog/, what progs should I ram?

no, not those. give me different progs!

t. super hell

Name: Anonymous 2018-07-03 11:06

hax my anus

Name: Anonymous 2018-07-03 12:51

A program that given a function in the form \(f(x) = c_nx^n + c_{n-1}x^{n-1} + ... + c_0x^0\) shows a diagram in the console.

Name: Anonymous 2018-07-03 13:06

>>35
a program that takes anus as input and outputs a haxed anus

Name: Anonymous 2018-07-03 13:36

Super hell

We need a network of giving away stuff, like sharing food clothing.
A way to end credit or discourage it (An alternative)
A way to envourage cryptos over "real" money

All this in a convenient andsmartphone/social network friendly way




"Money"and their priests is whats wrong woth the world.

Name: Anonymous 2018-07-03 20:02

Image macro for fake quotes
Google play independent apk repository (I think a simple web-browsable dir) Edited on 03/07/2018 20:07.

Name: Super Hell !JM1IoNO1/U 2018-07-03 20:19

>>38
This is useful requesting. I'll need to plan things a bit.

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List