I am looking for expert opinions
http://groups.google.com/group/gnu.emacs.help/browse_thread/thread/54fb97d15b234d31#
> Probably doesn't meet your intent, but this is a really impressive bit
> of (whacky) art:
Lisp runs faster than C. Once you get more time away from screwing
Palestinians, and other false-flags, you will find ideas like these
How to make Lisp go faster than C
Didier Verna
Abstract
Contrary to popular belief, Lisp code can be very ef-
cient today: it can run as fast as equivalent C code
or even faster in some cases. In this paper, we explain
how to tune Lisp code for performance by introducing
the proper type declarations, using the appropriate
data structures and compiler information. We also
explain how e ciency is achieved by the compilers.
These techniques are applied to simple image process-
ing algorithms in order to demonstrate the announced
performance on pixel access and arithmetic operations
in both languages.
=======
Standard Disclaimer, nothing personal
http://www.youtube.com/watch?v=lX18zUp6WPY
http://www.youtube.com/watch?v=XQapkVCx1HI
http://www.youtube.com/watch?v=tXJ-k-iOg0M
Hey Racist and INcompetent FBI Bustards, where is the ANTHRAX Mailer ?
Where are the 4 blackboxes ? Where are the Pentagon Videos ? Why did
you release the 5 dancing Israelis compromising the whole 911
investigation ? If the Dubai Police can catch Mossad Murderers and put
the videos and Iranian Police can why cant you put the Pentagon
Videos ? If Iran police can put the AMERICAN TERRORIST, Riggi and
puting on INTERNATIONAL MEDIA a day after catching him without
TORTURE, why cant you put the INNOCENT patsies on the MEDIA. Why did
you have to LIE about Dr Afiya Siddiqui and torture that Innocent
little mother of 3 and smashing the skull of her one child ?
http://www.youtube.com/watch?v=DhMcii8smxk
http://www.youtube.com/watch?v=0SZ2lxDJmdg
There are CRIMINAL cases against CIA CRIMINAL Bustards in Italian
courts.
FBI bustards paid a penalty of $5.8 million to Steven Hatfill, but
only because he was a white. They got away with MURDER of thousands of
Non-whites in all parts of the world.
Daily 911 news : http://911blogger.com
http://www.youtube.com/watch?v=tRfhUezbKLw
http://www.youtube.com/watch?v=x7kGZ3XPEm4
http://www.youtube.com/watch?v=lX18zUp6WPY
On Jun 14, 10:10 am, bolega <gnuist...@gmail.com> wrote:
> Quoting the following post :-
>
> I am looking for expert opinions
>
> http://groups.google.com/group/gnu.emacs.help/browse_thread/thread/54...
> http://www.youtube.com/watch?v=DhMcii8smxkhttp://www.youtube.com/watch?v=0SZ2lxDJmdg
Here is the paper :
http://www.iaeng.org/IJCS/issues_v32/issue_4/IJCS_32_4_19.pdf
Get ghostview which can show you better font display of the older
types.
I give good help and I ask people to spread the info in my sig by
quoting it.
The FAT per DIEM FBI bustards use our TAX PAYER MONEY and INCOMPETENCE
is UNACCEPTABLE.
=====
http://www.youtube.com/watch?v=lX18zUp6WPY
http://www.youtube.com/watch?v=XQapkVCx1HI
http://www.youtube.com/watch?v=tXJ-k-iOg0M
Hey Racist and INcompetent FBI Bustards, where is the ANTHRAX Mailer ?
Where are the 4 blackboxes ? Where are the Pentagon Videos ? Why did
you release the 5 dancing Israelis compromising the whole 911
investigation ? If the Dubai Police can catch Mossad Murderers and put
the videos and Iranian Police can why cant you put the Pentagon
Videos ? If Iran police can put the AMERICAN TERRORIST, Riggi and
puting on INTERNATIONAL MEDIA a day after catching him without
TORTURE, why cant you put the INNOCENT patsies on the MEDIA. Why did
you have to LIE about Dr Afiya Siddiqui and torture that Innocent
little mother of 3 and smashing the skull of her one child ?
http://www.youtube.com/watch?v=DhMcii8smxk
http://www.youtube.com/watch?v=0SZ2lxDJmdg
There are CRIMINAL cases against CIA CRIMINAL Bustards in Italian
courts.
FBI bustards paid a penalty of $5.8 million to Steven Hatfill, but
only because he was a white. They got away with MURDER of thousands of
Non-whites in all parts of the world.
Daily 911 news : http://911blogger.com
http://www.youtube.com/watch?v=tRfhUezbKLw
http://www.youtube.com/watch?v=x7kGZ3XPEm4
http://www.youtube.com/watch?v=lX18zUp6WPY
Conclusion : FBI bustards are RACIST and INcompetent. They could
neither catch the ANTHRAX or 911 YANK/Jew criminals nor could they
cover them up - whichever was their actual task.
SLASH the SALARIES of FBI/CIA/NSA etc BUSTARDS into half all across
tbe board, esp the whites/jew on the top.
The only point to discuss would be that Scheme - in the R5 version of
the spec at least - doesn't have standard way to specify type data
unless I am mistaken. Therefore you will find that Scheme compilers
add their own syntax for it. Again we are led to a moot point.
Is that why I had to use assembly code instead of C for some parts of my
previous projects?
There was even one example where the C compiler made spectacularly bad
code. I only needed 6 pointer registers (the arch has 8), but the
compiler decided to use only one or two and spilled and reloaded them
from the stack for each use. Yay!
Ray
> The only point to discuss would be that Scheme - in the R5 version of
> the spec at least - doesn't have standard way to specify type data
> unless I am mistaken. Therefore you will find that Scheme compilers
> add their own syntax for it. Again we are led to a moot point.
One of the points of something like Chez Scheme is that it compiles
standard Scheme, without additional static typing -- which, personally,
I find rather annoying -- into code that is often quite competitive with
C code if not faster.
More specifically, there is nothing inherently slow about the Scheme
language. While there are some things that are inherently expensive,
they are not more expensive than the equivalent constructs in C by
nature. Scheme can be compiled into very fast code, without resorting to
tricks like type declarations, and there are real life compilers out
there which do this.
I've heard it said, it is easy to beat C compilers for fast code, it's
just hard to beat them at benchmarks written for C. That is, do the same
type of things as what Scheme gives you, such as lots of dynamic
allocation and resizing, higher order functions, and closures, and you
won't find C faster. Benchmarks to compare C with Scheme often don't
compare the things Scheme is good at, but focus only on the static
things that C was designed for.
Aaron W. Hsu
> I've heard it said, it is easy to beat C compilers for fast code, it's
> just hard to beat them at benchmarks written for C. That is, do the same
> type of things as what Scheme gives you, such as lots of dynamic
> allocation and resizing, higher order functions, and closures, and you
> won't find C faster.
I don't know about that...
It's hard to beat the speed of a program that segfaults immediately. ;)
It's hardly fair if you're going to demand that the C program actually
works correctly.
--
Grant
Are you a new gavino or something like that?
> Are you a new gavino or something like that?
I think there is an infinite supply of them.
Maybe (equalp bolega gavino) but not eq.
Note the disclaimer which is untypical for
the original gavino.
As I understand that was a quote from another guy.
nanothermite911fbibustards:
Doing that put him in my killfile. Quoting off-topic gibberish is not
good manners either.
But I was already suspicious of this guy being gavino 2.0. He kept
asking very general and broad questions, while giving no indication
that he writes actual code.
Tamas
What is a killfile?
Which news-reader do you use?
I always wanted to be able to filter news but Iceape won't let me.
> But I was already suspicious of this guy being gavino 2.0.
I think it's important to understand that gavinos are non-denumerable
(proof of this is left as an exercise - it is a fairly obvious
diagonalisation argument), so it's not really correct to refer to them
by numbers like 2.0, or at least not without saying that it is an
approximation (maybe this was implicit of course, in which case I
apologise). I believe that gavinos are normally mapped to [0, 1) in
fact, though I'm not an expert in the field.
> What is a killfile?
That this question can even be asked!
Gavinos are the supersymmetric partners of gavons. You may think that
bolega and gavino are never seen together because they're the same
person, but it's really the Pauli Exclusion Principle at work.
Cheers,
Pillsy
This could be the start of a beautiful flame war.
I think that a finite state continuous-time Markov process is a good
model for gavinos. They arrive with a Poisson rate of about 1-5/year
(remains to be estimated), then alternate between a "dormant" and
"active" state (only in the case of reentrant gavinos only, of course,
otherwise they don't come back from the dormant state). In the
"active" state, they post nonsense occasionally.
If this is a good model, then gavinos are denumerable by construction.
But the 2.0 was referring to the level of sophistication. This one
reached the level of Emacs doctor mode, at least.
Tamas
> If this is a good model, then gavinos are denumerable by construction.
I don't think they are, are they, because the transition probabilities
are real.
> Tamas K Papp wrote:
>> Doing that put him in my killfile. Quoting off-topic gibberish is not
>> good manners either.
> Interesting!!!
>
> What is a killfile?
As its name implies...
> Which news-reader do you use?
That this question can even be asked!
> I always wanted to be able to filter news but Iceape won't let me.
Use GNUS (ie. emacs!).
--
__Pascal Bourguignon__ http://www.informatimago.com/
I am using Pan on Linux. Not perfect, but satisfactory.
Tamas
Thank you for the replies, though.
Now I know
- what a killfile is (where $Tim \notin killfile (\ddot\smile)$)
- how to use it with Iceape
- some alternative newsreaders I might try in future.
Thank you for answering.
Norbert
Norbert_Paul wrote
> What is a killfile?
> Which news-reader do you use?
and will never ask that again.
> Cool!! Are there finite non-denumerable sets?
Either my newsreader is broken or I am, as I think I sent an answer to
this but it doesn't seem to be there. Anyway: no.
That's one of the worst compiler stories I've heard since 1979! How
awful!