Unix Technical Forum

SEO

vBulletin Search Engine Optimization


Go Back   Unix Technical Forum > Unix Operating Systems > Slackware Linux Support

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-19-2008, 01:48 PM
steelneck
 
Posts: n/a
Default Program away SW patents

Make your national anthem to a patent infringiment!

Crazy idea? Well, yes. :-)
Possible? I think so.
The idea is a way to show how sick software patents
really are, and that everything gets patentable when
you allow patent on written works that you publish(software).
It is also a way for a bright programmer to help fighting
this mess in a way that fits his knowledge.

Write som kind of interpreter that turns your national
anthem in plain text to a working program that infringes
a software patent. If you succeed, you have done nothing
wrong, you have only defined a programming language (sort of).
But anyone hwo write and put the national anthem on the
net infringes a patent since they are "making" and
distributing the infringing "program".

Ouuch, very sick indeed.

How common this interpreter then will be does not matter,
the "program" (the lyrics) infringes, or else would programmers
programming for the more obscure plattforms stand outside
both the law and the SWP.

Is there anyone that picks up the glove and take on this
challenge? I would do it myself if i had the knowledge, i
just know enough to think that it is possible. A thing like
this ought to make some headlines that forces politicians
and decicionmakers to start use their heads in this matter,
to really show what a program is and how idiotic SWP is.

Here you can find a generated database of 22 644 screwed
european patents (it is a crawler that searches the EPO
database based on keywords, classification, like a spamfilter:

http://gauss.bacon.su.se/indices/

So, are there anyone that picks up the glove and take on
this challenge? I think it could be done, just to show
the wierd consequences.



--
Software is not manufactured, it is something you write and publish.
Keep Europe free from software patents, we do not want censorship
by patent law on written works.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-19-2008, 01:48 PM
+Alan Hicks+
 
Posts: n/a
Default Re: Program away SW patents

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

This is off-topic. Take it elsewhere; it's not wanted here.

- --
It is better to hear the rebuke of the wise,
Than for a man to hear the song of fools.
Ecclesiastes 7:5
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBIVWdlKR45I6cfKARAlz2AKCJXKvGbCTOTXZNI4l89O 4PPR2rkgCdG5hT
Yg/aKZ2aVzf6KPVzfMEnv3Q=
=v1Ue
-----END PGP SIGNATURE-----
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-19-2008, 01:48 PM
steelneck
 
Posts: n/a
Default Re: Program away SW patents

+Alan Hicks+ wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> This is off-topic. Take it elsewhere; it's not wanted here.
>


Not here either.

What are you doing about it?


--
Software is not manufactured, it is something you write and publish.
Keep Europe free from software patents, we do not want censorship
by patent law on written works.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-19-2008, 01:49 PM
MikeyD
 
Posts: n/a
Default Re: Program away SW patents

steelneck wrote:

> Make your national anthem to a patent infringiment!
>
> Crazy idea? Well, yes. :-)
> Possible? I think so.
> The idea is a way to show how sick software patents
> really are, and that everything gets patentable when
> you allow patent on written works that you publish(software).
> It is also a way for a bright programmer to help fighting
> this mess in a way that fits his knowledge.
>
> Write som kind of interpreter that turns your national
> anthem in plain text to a working program that infringes
> a software patent. If you succeed, you have done nothing
> wrong, you have only defined a programming language (sort of).
> But anyone hwo write and put the national anthem on the
> net infringes a patent since they are "making" and
> distributing the infringing "program".
>

But that would be a very contrived programming language. I mean, would you
consider a bunch of #DEFINEs to be enough? You certainly would need to show
that you could implement your language in itself, otherwise it could be
argued that the language is the program not the anthem.
Maybe try running various anthems through the whitespace interpreter? See if
any of them already form patent-infringing programs.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-19-2008, 01:51 PM
Ewald Pfau
 
Posts: n/a
Default Re: Program away SW patents

steelneck <jemamo@telia.com> wrote:

> Make your national anthem to a patent infringiment!


> Write som kind of interpreter that turns your national
> anthem in plain text to a working program that infringes
> a software patent.


When applying the Forth language here, so the above is really a trivial
exercise. First you write a specific language, to be able to write tunes.
Then you write tunes. Forth hardly steals any letters and signs for syntax,
so the notation may look much the way one prefers.

The following is small and should work for simple tunes. For polyphonic
writing, one should insist on a multitasking Forth (which should as well be
quite common to find; but notation will become a bit less portable).

( -------------------------- )

: play-a-tone ( pitch length --)
( * dummy, may produce a sound.)
2drop ;

variable duration
: s= 4 duration ! ; ( ... short)
: e= 8 duration ! ;
: es= 12 duration ! ;
: q= 16 duration ! ; ( <- the quarter note)
: qe= 24 duration ! ;
: h= 32 duration ! ;
: hq= 48 duration ! ;
: f= 64 duration ! ; ( ... long)

: mt ( pitch -- pitch+)
( * short name for laying down a note during compilation:
store and increment for next candiate.)

create ( <- build word)
dup c, ( <- associate pitch)
1+

DOES> ( --)
( * run-time: fetch pitch, play it)

c@ duration c@ ( pitch, length)
play-a-tone ;

( ** introduce chromatic scale in three octaves. **)
( 'mt' is a 'building word' now, which inherits a method.)

0 ( <- compilation pitch value for deepest tone)

mt _c mt _c# mt _d mt _d# mt _e mt _f
mt _f# mt _g mt _g# mt _a mt _a# mt _b

' _c# alias _db
' _d# alias _eb
' _f# alias _gb
' _g# alias _ab
' _a# alias _bb

mt c mt c# mt d mt d# mt e mt f
mt f# mt g mt g# mt a mt a# mt b

' c# alias db
' d# alias eb
' f# alias gb
' g# alias ab
' a# alias bb

mt c_ mt c#_ mt d_ mt d#_ mt e_ mt f_
mt f#_ mt g_ mt g#_ mt a_ mt a#_ mt b_

' c#_ alias db_
' d#_ alias eb_
' f#_ alias gb_
' g#_ alias ab_
' a#_ alias bb_

drop ( <- discard augmented compilation pitch value)

: |: ( --)
( * compile loop to play twice)

s" 2 0 do" evaluate ; immediate

: :| ( --)
( * end of loop to play twice)

s" loop" evaluate ; immediate

( -------------------------- )
( Now, one may proceed to composing. Give the tune a name by using a leading
':'; adjust duration of single notes as needed and add each note in turn;
stop definition by ';')

: some_fragment
q= f
q= f e f g hq= a e= g f
q= g g g e= f e q= f d c ;

( -------------------------- )

> Is there anyone that picks up the glove and take on this
> challenge?


I did not invent this. Maybe you are not so long around in the software
circus (or did not look around far enough), so not to expect a simple
answer, technically?

There is for sure other notations around, for tunes, but the above engine
might be adjustable for the purpose.

There is as well specific motivation to make such heavy announcement for
Forth in a 'C'-based circus, after, tradititonally, the writing in Forth all
the time (same old as 'C') has had much more of the self-understanding, as
an exercise to _writing text_ and much less to _producing a program_, which
ends being understood as a product. This is, since 'compiling' is understood
as quite a trivial exercise in Forth (it is translated: 'append to the
dictionnary'). The meaning of 'source-code' changes by this. In many cases,
'the' source-code already is 'the' program'. So there is much less reason,
to identify 'the program' as tight part of 'the machine'. Instead, it is
text.

A similar way of view has been introduced to the 'big circus' in computing
only lately, by the OS efforts, Linux and xBSDs. Only here, it is obvious
to the great public, that 'program' consists of written text - after the
compiler has been moved, to be a wide-range tool, part of the operating
system for most machines, instead of just being a money machine for some
specialists. (And this is, what I like as to be appreciated with slackware -
nearly everything just compiles out of the box. Merci!)

***

But you're right, when being able to produce a stand-alone program (this
depends on the Forth implementation), so the tune is sealed inside. Maybe,
there will be a switch applicable from outside, to change the method?
Instead of playing the tune, it could control, say, a production line for
pencils instead?

(So I find myself ranting...)

Instead of being pushed to think a bit harder, about what is happening in
such a case (I mean: not in the engineering sense), thoughts seem like
coming along more and more streamlined in a warehouse sense. This is what I
hate most about the above issue, you brought up: it is one more wall in the
way, so to render a bit more into luxury, how to keep up with straight and
appropriate thoughts, about how the world looks like. Instead, that
warehouse dream is sold as facts, and other thoughts obviously are expected
to follow in turn - even if something is wrong in the game.

Now, as well copyright is a compromise, but at least, this way some respect
comes along with a commonly accepted protection, so the idea ist not lost:
there is a world beyond of the warehouse. And beyond, there is tongues, as
treasures, and language use makes for everyday exchange with the biggest
treasures mankind has. Linguists might be asked, to learn more - probably,
one ought to forget, for first, about copyright and similar results of
common crazyness in order to be able to keep track of what state of the art
is.

Software circus quite for sure is not aware of state of the art here. Some
big industry quite for sure is far too close, coming along with imposed
training into different channels of 'should' - with such a 'should' taken
far too often for an 'is' - and 'public engagement' too often be expected to
put the picture right again, even when hindered by strategic victims and
other lousy accidents.

Talking about 'the genious' has been a fine construct of thoughts back in
19th century, to harmonize fine ideas of artists with early essays in
industrial management. It allowed to identify some fine idea with some
artist - in same terms, as such identification became necessary for to
merely survive, for such an artist. Thus, this story is entering the
warehouse then (and the winding road of exploitation, in same terms - e.g.
in music, it meant, not just to perform with high quality, but being forced
to exploit some style, in favour of some specific recognition - now, as one
may find easily, at beginning of 'modern times' in music, around 1910, such
exploitation had until now made suspect about everything which could be
construed with musical craftmanship, en vogue at that time, with its main
roots having drawn an epoch of around 250 years at that time).

This is ideas which have been borrowed to the warehouse, built on some
identification of 'the genious' (nowadays it may be preferred to stress, how
'creative' all those personal involvements are, but in spite of the ancient
term having become a bit suspect, in terms of a warehouse, the old genious
should still wait just around the corner, after the underlying construct
hardly changed).

Now, the warehouse asks for more. The idea has to be inside 'the thing'. As
soon as 'the thing' is in the warehouse, the idea goes with it. The idea is
expected to remain there, after having been declared to belong to 'the
thing'.

This is the point, where any respect may have been gone away, finally, when
'the idea' is frozen into 'the thing', and as soon as that thing is
shreddered, in order to disappear on the garbage hill, that idea is expected
to disappear as well, since it has been kicked out of the context of all
that treasure of ideas, long before (a linguist might want to introduce the
term 'structuralism' here). So in sequence, finally, it looks to me like
kind of a lost effort in history of thoughts. But it has been paid for.

For sure I understand, that a lot of short-living things are in just
reasonable terms associated with short-living ideas.

But then there is a short-minded try on the way, to scale into much bigger
grades, by refraining from to acknowledge an appropriate insight - when
trying to scale from some funny ideas in specific plastic dreams, up to
treasures of thoughts elsewhere, which are kept lively in everyday
correspondance. Money cannot buy the latter. It just does not translate.
Instead, it translates other way round to installation of severe
hinderances. As if installing measures of war against everyday
correspondance, which it cannot control. Exploitation of values might refer
to dead fragments, lying around in such 'past-tense future', which is
missing a simple present tense.

Looks to me as if to try, to kill elephants for the profit of some bit of
ivory to earn. Or about as if to believe, planting 1000 little trees could
replace a extinct ecosystem of an exploited region.

Maybe you are right, and it works to just apply enough phantasy of
'presence' to a 'machine' - and such a 'machine' probably would have to
neglect such presence (understood by me for first in terms of a grammar
tense)? As one may learn in debate regarding that topic in Europe, there is
reasonable positions worked out (in above terms: there have quite 'present
arguments' been worked out[*]), but the nuisance sits, where such arguments
are just wiped away in strategic fights. Hunters of elephants seem not to
have changed much in mentality.

This gives big reason for still being on the alert, so, as to keep contact
with one's deputy to the European parliament.
[*] As about the borderline, when to regard the idea to be part of 'the
thing'.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 06:38 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878