You are not logged in.

#101 2008-05-06 21:55:34

TheBodziO
Member
From: Dukla, Poland
Registered: 2006-07-28
Posts: 230
Website

Re: A script proclaiming Arch's superiority

You know what? Let's wikify it! smile


It's not the best thing when they call you a "member" you know… wink

Offline

#102 2008-05-06 22:36:24

wuischke
Member
From: Suisse Romande
Registered: 2007-01-06
Posts: 630

Re: A script proclaiming Arch's superiority

ornitorrincos: Is the second one euskera? I only know a few sentences (Langabezian nago. wink ), so I might be mistaken.

Offline

#103 2008-05-07 01:49:21

ssjlegendx
Member
Registered: 2008-01-01
Posts: 94
Website

Re: A script proclaiming Arch's superiority

Converting ASCII to binary:

0100000101110010011000110110100000100000011010010111001100100000011101000110100001100101001000000110001001100101011100110111010000100001

Hex:

417263682069732074686520626573742100

Octal:

101162143150040151163040164150145040142145163164041

(Yeah, I cheated. tongue)

Last edited by ssjlegendx (2008-05-07 01:52:14)


#!/vim/rocks

Offline

#104 2008-05-07 03:33:05

paramthegreat
Member
Registered: 2006-06-27
Posts: 38

Re: A script proclaiming Arch's superiority

This one should also be added ...

public class ArchlinuxIsTheBest {
    public static void main(String args[]) {
        System.out.println("\nArch is the best!!\n");
    }
}

Run it ..
javac ArchlinuxIsTheBest.java
java ArchlinuxIsTheBest

It works on windows, mac, linux, bsd, solaris .... big_smile (portable, WORA code) tongue

Last edited by paramthegreat (2008-05-07 03:33:40)

Offline

#105 2008-05-07 10:32:19

drag0nl0rd
Package Maintainer (PM)
From: Czech Republic
Registered: 2007-10-24
Posts: 127
Website

Re: A script proclaiming Arch's superiority

Czech:

Arch je nejlepší!

smile)

Offline

#106 2008-05-07 11:13:22

kakTuZ
Member
From: Hannover, Germany
Registered: 2007-10-20
Posts: 86

Re: A script proclaiming Arch's superiority

Now, that the simple script that started all has grown, it seems obvious, that a full fledged multi-media application is necessary to do the job. The beginning was purely KISS, but now, for external representation i think that Arch needs more of a "KISS MY ASS" style. Therefore the application have to make use of sound hardware, that has become widely adopted in desktop computers. But instead of using something from the Arch Theme Song Collection, I propose to use something that clearly states: THE BEST, THE BEST, THE BEST, THE BEST

Offline

#107 2008-05-07 11:32:06

Allan
Pacman
From: Brisbane, AU
Registered: 2007-06-09
Posts: 11,365
Website

Re: A script proclaiming Arch's superiority

TheBodziO wrote:

You know what? Let's wikify it! smile

Started... http://wiki.archlinux.org/index.php/Arch_is_the_best

I need to leave it for the moment so feel free to contribute!

Offline

#108 2008-05-07 17:11:36

ornitorrincos
Forum Fellow
From: Bilbao, spain
Registered: 2006-11-20
Posts: 198

Re: A script proclaiming Arch's superiority

ornitorrincos: Is the second one euskera? I only know a few sentences (Langabezian nago. wink ), so I might be mistaken.

yes, I wondered if anyone was going to notice it smile


-$: file /dev/zero
/dev/zero: symbolic link to '/dev/brain'

Offline

#109 2008-05-07 21:14:23

ckristi
Member
From: Bucharest, Romania
Registered: 2006-11-21
Posts: 225

Re: A script proclaiming Arch's superiority

For kernel mode, add to init/main.c (in your kernel source directory) the following:

printk ("Arch is the best");

Patch submitted to Linus. Awaiting Mr. Torvalds response. smile


In love I believe and in Linux I trust

Offline

#110 2008-05-07 21:30:44

moljac024
Member
From: Serbia
Registered: 2008-01-29
Posts: 2,676

Re: A script proclaiming Arch's superiority

ckristi wrote:

For kernel mode, add to init/main.c (in your kernel source directory) the following:

printk ("Arch is the best");

Patch submitted to Linus. Awaiting Mr. Torvalds response. smile

Omg, you have to inform us of Linus' response big_smile

Last edited by moljac024 (2008-05-07 21:36:25)


The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...

Offline

#111 2008-05-07 22:05:03

ckristi
Member
From: Bucharest, Romania
Registered: 2006-11-21
Posts: 225

Re: A script proclaiming Arch's superiority

Linus said it must be thoroughly tested (so everyone, pick a copy of Arch and do it)... and maybe it will be merged upstream in the 3.0.x or 3.2.x version of the kernel. ;-)

Last edited by ckristi (2008-05-07 22:05:32)


In love I believe and in Linux I trust

Offline

#112 2008-05-08 08:06:39

The_Major
Member
From: Newport, UK
Registered: 2008-03-31
Posts: 18

Re: A script proclaiming Arch's superiority

ckristi wrote:

Linus said it must be thoroughly tested (so everyone, pick a copy of Arch and do it)... and maybe it will be merged upstream in the 3.0.x or 3.2.x version of the kernel. ;-)

We can't wait that long, time to work on a patchset wink


Who Knows? Who Cares? Who will remember anyway?

Offline

#113 2008-05-08 11:29:28

firewalker
Member
From: Hellas (Greece).
Registered: 2006-06-05
Posts: 552

Re: A script proclaiming Arch's superiority

A loadable Kernel module for "Arch is the Best!".

aitb.c

/* aitb.c - "Arch Is The Best!" kernel module
 */
#include <linux/module.h> 
#include <linux/kernel.h>


int init_module(void)
{
   printk("Arch is the Best!\n");
    
   return 0;
}


void cleanup_module(void)
{
  printk(KERN_ALERT "Removing aitb module...\n");
  printk(KERN_ALERT "Arch is still the Best!\n");
}

Makefile

obj-m += aitb.o

all:
    make -C /lib/modules/`uname -r`/build M=`pwd` modules

clean:
    make -C /lib/modules/`uname -r`/build M=`pwd` clean

Just enter to the directory where aitb.c is located an run the command:

make -C /lib/modules/`uname -r`/build M=`pwd` modules

Last edited by firewalker (2008-05-08 11:34:12)


Γίνε ρεαλιστής, μείνε ονειροπόλος ...

Offline

#114 2008-05-08 13:27:36

Borb
Member
Registered: 2006-02-12
Posts: 30

Re: A script proclaiming Arch's superiority

%!PS
/Font /Helvetica-Bold findfont def
/FontSize 72 def

Font FontSize scalefont setfont

{newpath 0 0 moveto (Arch is the Best!) show showpage} loop

Run this on your printer and go and stick the output somewhere smile

Last edited by Borb (2008-05-08 13:28:04)

Offline

#115 2008-05-08 21:33:39

Dusty
Schwag Merchant
From: Medicine Hat, Alberta, Canada
Registered: 2004-01-18
Posts: 5,986
Website

Re: A script proclaiming Arch's superiority

To commemorate everyone's outstanding commitment to this worthwhile project, I created a couple of Arch Schwag products:

http://www.zazzle.com/archlinux/product … 1757299947
http://www.zazzle.com/arch_is_the_best_ … 5313657831

Hope you all enjoy.

Dusty

Offline

#116 2008-05-08 22:00:21

lucke
Member
From: Poland
Registered: 2004-11-30
Posts: 4,018

Re: A script proclaiming Arch's superiority

Yay, I want a shirt like that.

Offline

#117 2008-05-08 23:01:03

finferflu
Forum Fellow
From: Manchester, UK
Registered: 2007-06-21
Posts: 1,899
Website

Re: A script proclaiming Arch's superiority

Dusty wrote:

To commemorate everyone's outstanding commitment to this worthwhile project, I created a couple of Arch Schwag products:

http://www.zazzle.com/archlinux/product … 1757299947
http://www.zazzle.com/arch_is_the_best_ … 5313657831

Hope you all enjoy.

Dusty

Ahaha! big_smile


Have you Syued today?
Free music for free people! | Earthlings

"Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away." -- A. de Saint-Exupery

Offline

#118 2008-05-08 23:54:52

adekoba
Member
Registered: 2007-07-10
Posts: 128
Website

Re: A script proclaiming Arch's superiority

haskell:

main = do putStrLn "Arch is the Best!"

abcdefghijklmnopqrstuvwxyz

Offline

#119 2008-05-08 23:56:53

jb
Member
From: Florida
Registered: 2006-06-22
Posts: 466

Re: A script proclaiming Arch's superiority

Due to the enormous popularity of this functionality, here's the HDL so it can one day be hardware accelerated.

use std.textio.all;

entity the_best is
end the_best;

architecture arch_is of the_best is
begin
       p : proclamation
       variable l:line;
       begin
               write(l, String'("Arch is the best!"));
               writeline(output, l);
               wait;
       end proclamation;
end arch_is;

...

Offline

#120 2008-05-09 01:05:51

peart
Member
From: Kanuckistan
Registered: 2003-07-28
Posts: 510

Re: A script proclaiming Arch's superiority

I'm surprised nobody has done this in the D programming language yet.  Nah, not really.  That was sarcasm.

Phobos library:

import std.stdio;                                                                           

void main()
{                                                                                           
    writefln("Arch is the best!");
}

Tango library:

import tango.io.Stdout;

void main()                                                                                 
{                                                                                           
    Stdout("Arch is the best!").newline;
}

Offline

#121 2008-05-09 08:03:57

xelados
Member
Registered: 2007-06-02
Posts: 314
Website

Re: A script proclaiming Arch's superiority

This topic is fucking hilarious.

Offline

#122 2008-05-09 08:34:30

ibendiben
Member
Registered: 2007-10-10
Posts: 519

Re: A script proclaiming Arch's superiority

Actually we might consider closing the source on this one.

Offline

#123 2008-05-09 09:57:27

headhunter242
Member
Registered: 2007-08-07
Posts: 4

Re: A script proclaiming Arch's superiority

Maybe you are missing the fundamental of programming...

archdiagramrv0.png

As you can see you can express your free opinion!

Offline

#124 2008-05-09 11:00:06

shining
Pacman Developer
Registered: 2006-05-10
Posts: 2,043

Re: A script proclaiming Arch's superiority

xelados wrote:

This topic is fucking hilarious.

I read that as : "the topic is censored, hilarious!" and was wondering wtf it meant..


pacman roulette : pacman -S $(pacman -Slq | LANG=C sort -R | head -n $((RANDOM % 10)))

Offline

#125 2008-05-09 11:11:55

wuischke
Member
From: Suisse Romande
Registered: 2007-01-06
Posts: 630

Re: A script proclaiming Arch's superiority

Erlang:

-module(arch).
-export([arch_is_the_best/0]).

arch_is_the_best() -> io:fwrite("Arch is the best!\n").

Usage:

$ erl
1> c(arch).
{ok,arch}
2> arch:arch_is_the_best().
Arch is the best!
ok

Offline

Board footer

Powered by FluxBB