"4tran"? (52)

1 Name: #!/usr/bin/anonymous : 2008-01-02 08:24 ID:x3wju2qA

I don't know too much about programming, but I am curious about this: Is it possible to make a 4chan (or any *chan) site, however simple it may be, in fortran? I seriously doubt it, but hey, that's what I asked for.

3 Name: #!/usr/bin/anonymous : 2008-01-02 14:37 ID:x3wju2qA

>>2
Yeah, the most I was really expecting would be something like as bad as the tandy strongbad emails. Something solely text-based.

4 Name: #!/usr/bin/anonymous : 2008-01-03 07:24 ID:m3GH/4Dq

Do it in lisp instead! (it has been done before in lisp actually)

5 Name: #!/usr/bin/anonymous : 2008-01-03 10:44 ID:45d5jt9Y

>>4
no one gives a shit fuck off

6 Name: #!/usr/bin/anonymous : 2008-01-03 13:53 ID:dD/YWtlR

>>4
Where has it been done in Lisp?

7 Name: #!/usr/bin/anonymous : 2008-01-03 16:30 ID:K6TrBkny

There is a language called COBOLscript. No foolin'.

http://downloads.zdnet.co.uk/0,1000000375,39066310s,00.htm

8 Name: #!/usr/bin/anonymous : 2008-01-03 20:08 ID:Heaven

>>6
some idiot on /prog/ did it but then gave up after i kept finding ways to break it.

9 Name: High Fructose!nIP2DlX816 : 2008-02-15 07:56 ID:1HmjxEUN

Hi, as a Fortran programmer I'd like to give my input on this.

Fortran has modern filesystem access and can call library functions. (In some special cases you may need to write a set of hooks in C/C++. This is an issue of how Fortran functions expect to have parameters passed to them and is more of a problem when mixing imperative Fortran code with object-oriented code in another language. Fortran calling C functions is rarely a problem. Also some compilers can work around this.)

You can indeed write CGI, and you can interface with MySQL or other database systems. (Oracle?) Alternatively you could of course give your board its own special way of storing posts.

So if you really wanted to you could implement a full-fledged imageboard with cross-board linking, animated thumbnails, and other such advanced features, that would be capable of handling heavy traffic loads - something that could be the codebase for a huge site like 2chan or 4chan.

But, there are real reasons all these boards are written in PHP, Perl, etc.

You could just as well code a "2ch-style" or "2chan-style" board in Fortran as you could in C or Ada or whatever, but in the end all of these would end up being fairly complicated programs and probably end up being maintenance nightmares.

Despite the performance costs of the "script infrastructure" it's serving us just fine.

Here's a much more interesting question: Can you do it in INTERCAL?

10 Name: #!/usr/bin/anonymous : 2008-02-20 19:20 ID:8QiVHOlw

The real question here is: can it be done in Brainfuck?

11 Post deleted.

12 Name: #!/usr/bin/anonymous : 2008-02-21 03:26 ID:Heaven

>>10
Not with the standard version. However with a custom BF interpreter that allows for file I/O, it's certainly possible.

Actually I might do this some day for the hell of it.

13 Name: #!/usr/bin/anonymous : 2008-02-21 19:30 ID:Heaven

14 Name: #!/usr/bin/anonymous : 2008-02-22 01:20 ID:hw6piy+E

s/dick/vag/

15 Name: #!/usr/bin/anonymous : 2008-02-22 02:12 ID:Heaven

>>13
BrainSub is an abomination of BrainFuck, and its named subroutines destroy everything BF stands for.

16 Name: #!/usr/bin/anonymous : 2008-02-22 02:55 ID:Heaven

>>15
True, I thought that was pretty lame, but I looked through the rest of that wiki category and didn't see any other BF derivatives that handled file I/O.

17 Name: #!/usr/bin/anonymous : 2008-02-22 07:09 ID:Heaven

It'd be trivial to extend an existing implementation to add file manipulation without all that other bloat.

Essentially what it needs is a way to define the beginning and end of a string to use as a filename, functions to open a file for reading or writing defined by the string you've set, close a file, and change the standard input/output stream to point to that file.

Suppose we used ^ to set a string-start marker, ? to read a file, ! to write, and @ to append. Then you could do something like:

^ first character is here
o --[>-<-------]>+>
u ----[>+++++<--]>->
t ----[>+++++<--]>-->
p --[>-<-------]>++>
u ----[>+++++<--]>->
t ----[>+++++<--]>--
!

And now your . would write to "output".
You could then adjust the file operations so that after opening a file they would write a file handle into the current cell. Then, and assuming since this is the first file, our file handle is probably going to be #3 (since 0/1/2 are predefined to stdin/out/err), if we immediately did a . after the !, our file would get a \x03 written to it.

Now we just need two more commands, one to close a file when we're done with it -- say, $ -- and another to set the current handle that . or , operate on -- perhaps : to change the write handle and ; to change the read handle.

After that, you'd be set to make a Brainfuck-based imageboard.

18 Name: #!/usr/bin/anonymous : 2008-02-22 13:45 ID:cqtUwiVo

>>15

BrainFuck "stands for" having a compiler that is less than 256 bytes. In that sense, pretty much every single implementation of it ever, except the original, has been an abomination.

19 Name: #!/usr/bin/anonymous : 2008-02-22 16:40 ID:Heaven

>>18
Well, that's just, like, your opinion, man.

20 Name: #!/usr/bin/anonymous : 2008-10-10 18:09 ID:IDHv1ux+

OP IS A FAGGOT JUST GO ON /b/

21 Name: #!/usr/bin/anonymous : 2008-10-11 01:57 ID:PImTzPXF

>>18

Wow. I've seen useful forth compilers in less than 256 bytes. BrainFuck is a childs puzzle- suggesting it's accomplished anything but is positively silly.

>>17

Perhaps a better approach would be a BF which had a region of memory that was persistant- for example having it mmap()'d.

22 Name: #!/usr/bin/anonymous : 2008-10-12 08:26 ID:Heaven

>>21

> Wow. I've seen useful forth compilers in less than 256 bytes.

Liar, post code.
I hope you mean compiled and not the source code less than 256 bytes. (which is still very few, but with perl/j/k... who knows)

23 Name: #!/usr/bin/anonymous : 2008-10-12 14:04 ID:PImTzPXF

>>22

The 8501 has 256 bytes of ram and runs forth. There are other PICs with less memory, but they usually run a "hosted" forth (e.g. a 3-inst-forth variant), so I wasn't going to count them.

Since Forth's source and code forms are equivalent (like assembly), I don't think it matters whether it's compiled or not. Pretend it's source-code form is the "annotated" and "commented" form.

24 Name: #!/usr/bin/anonymous : 2008-10-13 14:12 ID:ImspI/uV

>>22

http://www.nada.kth.se/~matslina/awib/

is the only BF compiler I've seen written in BF and frankly it's quite large. All of the tiny BF compilers I've seen are written in C which seems more to demonstrate the compactness of C rather than the compactness of BF.

Comparing Forth and BF makes BF seem quite bloated. >>21 is right. BF is a childs toy- useful for stretching the mind and for personal amusement. It is not a demonstration of anything small or compact though...

25 Name: #!/usr/bin/anonymous : 2008-10-23 11:02 ID:cqtUwiVo

>>23

The 8501 also has much shorter instructions than a modern 32-bit processor, making it much easier. The original Brainfuck compiler was something like 240 bytes on m68k, with file format and operating system overhead, and generation of valid executable files, not just compiled code in memory.

>>24

You're entirely missing the point. First, the original Brainfuck compiler wasn't written in C, it was written in Assembly in order to get it small enough. And yes, it was a demonstration of something small and compact.

Here is the original implementation: http://aminet.net/package.php?package=dev/lang/brainfuck-2.lha

Note that the description is "240 byte compiler. Fun, with src." The README further states:

> Yes, I squeezed another ridiculous 56 bytes out of the compiler. They have their price, though: The new compiler requires OS 2.0, operates on a byte array instead of longwords, and generates executables that are always 64K in size. Apart from that the language hasn't changed. Again: *** OS 2.0 required for the compiler and the compiled programs ***

The interpreter works fine under any OS version. And yes, thanks to Chris Schneider for his ideas how to make the compiler shorter.

26 Name: #!/usr/bin/anonymous : 2008-10-27 13:42 ID:Heaven

>>25

I stand corrected!

27 Name: #!/usr/bin/anonymous : 2011-02-17 12:56 ID:BP9aVcKn

faggots

28 Name: #!/usr/bin/anonymous : 2011-02-17 12:56 ID:BP9aVcKn

FAGGOTS

29 Name: #!/usr/bin/anonymous : 2011-03-01 00:25 ID:Heaven

gAFFOTS

30 Name: #!/usr/bin/anonymous : 2011-06-20 04:46 ID:Heaven

magorts

31 Name: #!/usr/bin/anonymous : 2011-06-23 08:08 ID:Heaven

MAGNOTS

32 Name: #!/usr/bin/anonymous : 2011-06-25 01:41 ID:Heaven

foghats

33 Name: #!/usr/bin/anonymous : 2011-07-01 08:09 ID:Heaven

Frigates

34 Name: #!/usr/bin/anonymous : 2011-07-09 05:48 ID:Heaven

graphites

35 Name: #!/usr/bin/anonymous : 2011-07-11 18:21 ID:Heaven

FIGMENTS

36 Name: #!/usr/bin/anonymous : 2011-07-22 00:27 ID:Heaven

daggots

37 Name: #!/usr/bin/anonymous : 2011-07-28 00:35 ID:Heaven

Sagats

38 Name: #!/usr/bin/anonymous : 2011-07-29 20:16 ID:Heaven

fORgeTS

39 Name: #!/usr/bin/anonymous : 2011-07-30 07:20 ID:Heaven

ffonagorts

40 Name: #!/usr/bin/anonymous : 2011-08-08 02:07 ID:Heaven

>>40 GETS

41 Name: #!/usr/bin/anonymous : 2011-08-23 03:02 ID:Heaven

feghoots

42 Name: #!/usr/bin/anonymous : 2011-08-31 23:12 ID:Heaven

Spigots

43 Name: #!/usr/bin/anonymous : 2011-09-02 22:41 ID:Heaven

FOOGERTS

44 Name: #!/usr/bin/anonymous : 2011-09-09 20:54 ID:Heaven

frogettes

45 Name: #!/usr/bin/anonymous : 2011-09-17 02:05 ID:Heaven

Baguettes

46 Name: #!/usr/bin/anonymous : 2011-09-25 22:57 ID:Heaven

fat gits

47 Name: #!/usr/bin/anonymous : 2011-10-03 02:29 ID:Heaven

FAT GITS

48 Name: #!/usr/bin/anonymous : 2011-12-21 23:02 ID:Heaven

Gadgots

49 Name: #!/usr/bin/anonymous : 2012-01-26 01:40 ID:K0BjkvGN

If you want to be cool and challenge yourself, write the website not in "modern" Fortran, but in Fortran 66 or Fortran 77 <- DUBS languages!!!

7^2 GET

50 Name: #!/usr/bin/anonymous : 2012-04-20 21:13 ID:Heaven

51 Name: #!/usr/bin/anonymous : 2012-07-31 16:35 ID:5/0f+pg0

check out Factor http://factorcode.org/

52 Name: #!/usr/bin/anonymous : 2012-10-20 14:12 ID:Heaven

Well, it's obvious there is just not enough love for trans-fortran programmers. Every link google knows for "THE" operation (C->F translator, so you can compile regular cgi/php) is 404.

This thread has been closed. You cannot post in this thread any longer.