Re: Mathematica 7 compares to other languages

2008-12-03 Thread Xah Lee
On Dec 3, 8:24 am, Jon Harrop <[EMAIL PROTECTED]> wrote: > My example demonstrates several of Mathematica's fundamental limitations. enough babble Jon. Come flying $5 to my paypal account, and i'll give you real code, amongest the programing tech geekers here for all to see. I'll show, what kind

Re: Mathematica 7 compares to other languages

2008-12-03 Thread Xah Lee
your judgement), or it turns out Mathematica 6 is necessary, or any problem that might occure, i offer money back guarantee. Xah ∑ http://xahlee.org/ ☄ On Dec 3, 2:12 pm, "Thomas M. Hermann" <[EMAIL PROTECTED]> wrote: > On Dec 3, 3:15 pm, Xah Lee <[EMAIL PROTECT

Re: Mathematica 7 compares to other languages

2008-12-03 Thread Xah Lee
On Dec 3, 4:22 pm, "Thomas M. Hermann" <[EMAIL PROTECTED]> wrote: > On Dec 3, 5:26 pm, Xah Lee <[EMAIL PROTECTED]> wrote: > > > > > Agreed. My paypal address is “xah @@@ xahlee.org”. (replace the triple > > @ to single one.) Once you paid thru paypa

Re: Mathematica 7 compares to other languages

2008-12-04 Thread Xah Lee
alright, here's my improved code, pasted near the bottom. let me say a few things about Jon's code. If we rate that piece of mathematica code on the level of: Beginner Mathematica programer, Intermediate, Advanced, where Beginner is someone who just learned tried to program Mathematica no more t

Re: Mathematica 7 compares to other languages

2008-12-05 Thread Xah Lee
On Dec 4, 6:09 pm, [EMAIL PROTECTED] wrote: > For the interested, with MMA 6, on a Pentium 4 3.8Ghz: > > The code that Jon posted: > > Timing[Export["image-jon.pgm", [EMAIL PROTECTED]@Main[2, 100, 4]]] > {80.565, "image-jon.pgm"} > > The code that Xah posted: > > Timing[Export["image-xah.pgm", [EMA

Re: Mathematica 7 compares to other languages

2008-12-07 Thread Xah Lee
For those interested in this Mathematica problem, i've now cleaned up the essay with additional comments here: • A Mathematica Optimization Problem http://xahlee.org/UnixResource_dir/writ/Mathematica_optimization.html The result and speed up of my code can be verified by anyone who has Mathema

Re: Mathematica 7 compares to other languages

2008-12-08 Thread Xah Lee
On Dec 8, 5:10 am, Jon Harrop <[EMAIL PROTECTED]> wrote: > Xah Lee wrote: > > For those interested in this Mathematica problem, i've now cleaned up > > the essay with additional comments here: > > > • A Mathematica Optimization Problem > >

Re: Mathematica 7 compares to other languages

2008-12-08 Thread Xah Lee
2008-12-08 Xah Lee wrote: > > Also, in this discussion, thanks to Thomas M Hermann's $20 offered to > > me for my challenge to you, that i have taken the time to show working > > code that demonstrate many problems in your code. A moron, wrote: > You failed the cha

Re: Mathematica 7 compares to other languages

2008-12-08 Thread Xah Lee
Dear George Neuner, Xah Lee wrote: > >The phenomenon of creating code that are inefficient is proportional > >to the highlevelness or power of the lang. In general, the higher > >level of the lang, the less possible it is actually to produce a code > >that is as efficie

Re: Mathematica 7 compares to other languages

2008-12-09 Thread Xah Lee
On Dec 8, 4:56 pm, Jon Harrop <[EMAIL PROTECTED]> wrote: > Xah Lee wrote: > > A moron, wrote: > > > You failed the challenge that you were given. > > > you didn't give me a challenge. > > Thomas gave you the challenge: > > "What I want in

Re: Mathematica 7 compares to other languages

2008-12-09 Thread Xah Lee
On Dec 8, 4:56 pm, Jon Harrop <[EMAIL PROTECTED]> wrote: > Xah Lee wrote: > > A moron, wrote: > > > You failed the challenge that you were given. > > > you didn't give me a challenge. > > Thomas gave you the challenge: > > "What I want in

Re: Mathematica 7 compares to other languages

2008-12-09 Thread Xah Lee
On Dec 8, 5:25 pm, Terry Reedy <[EMAIL PROTECTED]> wrote: > Lest anyone doubt that problem size is important for comparing program > run times, consider ... just in case there's any doubt: Simply change these lines in Jon's program: Main[9, 512, 4] to Main[9, 512, 4.] and it will run faster. A

Re: Mathematica 7 compares to other languages

2008-12-09 Thread Xah Lee
On Dec 8, 4:07 am, Jon Harrop <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > Well, its past 'tonight' and 6 hours to go till past 'tomorrow'. > > Where the hell is it Zah Zah? > > Note that this program takes several days to compute in Mathematica (even > though it takes under four secon

Re: Mathematica 7 compares to other languages

2008-12-09 Thread Xah Lee
Jon Harrop moron wrote: > Only for trivial input and not for the challenge you were given. what challenge? > That code is evaluated once to build the scene. There is no point in > optimizing it. The point is optimizing your incompetence. > That performance issue only affects trivial problems an

looking up function's doc in emacs

2008-12-10 Thread Xah Lee
in programing elisp in emacs, i can press “Ctrl+h f” to lookup the doc for the function under cursor. is there such facility when coding in perl, python, php? (i'm interested in particular python. In perl, i can work around with “perldoc -f functionName”, and in php it's php.net/functionName. Bot

Re: Mathematica 7 compares to other languages

2008-12-10 Thread Xah Lee
Xah Lee wrote: > > Let's say for example, we want to write a function that takes a vector > > (of linear algebra), and return a vector in the same direction but > > with length 1. In linear algebar terminology, the new vector is called > > the “normalized” vector of

Re: Mathematica 7 compares to other languages

2008-12-10 Thread Xah Lee
Xah Lee wrote: > > For those of you who don't know linear algebra but knows coding, this > > means, we want a function whose input is a list of 3 elements say > > {x,y,z}, and output is also a list of 3 elements, say {a,b,c}, with > > the condition that > > &g

Re: Mathematica 7 compares to other languages

2008-12-10 Thread Xah Lee
On Dec 10, 2:47 pm, John W Kennedy <[EMAIL PROTECTED]> wrote: > Xah Lee wrote: > > In lisp, python, perl, etc, you'll have 10 or so lines. In C or Java, > > you'll have 50 or hundreds lines. > > C: > > #include > #include > > void normal(i

Re: Mathematica 7 compares to other languages

2008-12-11 Thread Xah Lee
On Dec 11, 12:32 am, Gerard flanagan <[EMAIL PROTECTED]> wrote: > Xah Lee wrote: > > On Dec 10, 2:47 pm, John W Kennedy <[EMAIL PROTECTED]> wrote: > >> Xah Lee wrote: > >>> In lisp, python, perl, etc, you'll have 10 or so lines. In C

Re: Mathematica 7 compares to other languages

2008-12-11 Thread Xah Lee
Xah Lee wrote: • A Example of Mathematica's Expressiveness http://xahlee.org/UnixResource_dir/writ/Mathematica_expressiveness.html On Dec 11, 3:53 am, "William James" wrote: > function normal( ary ) > { var div = Math.sqrt( > ary.map(function(x) x*x).reduce(functio

Re: Mathematica 7 compares to other languages

2008-12-11 Thread Xah Lee
On Dec 10, 2:47 pm, John W Kennedy wrote: > Xah Lee wrote: > > In lisp, python, perl, etc, you'll have 10 or so lines. In C or Java, > > you'll have 50 or hundreds lines. > > C: > > #include > #include > > void normal(int dim, float* x, f

Re: Mathematica 7 compares to other languages

2008-12-11 Thread Xah Lee
On Dec 11, 6:50 am, the.brown.dragon.b...@gmail.com wrote: ;; Chicken Scheme. By the.brown.dragon...@gmail.com (require 'srfi-1) (define (normalize vec) (map (cute / <> (sqrt (reduce + 0 (map (cute expt <> 2) vec vec)) Is it possible to make it work in scsh? (i'm running scsh 0.6.4, and don'

Re: Mathematica 7 compares to other languages

2008-12-25 Thread Xah Lee
> >On Dec 10, 2:47 pm, John W Kennedy wrote: > >> C: > > >> #include > >> #include > > >> void normal(int dim, float* x, float* a) { > >> float sum = 0.0f; > >> int i; > >> float divisor; > >> for (i = 0; i < dim; ++i) sum += x[i] * x[i]; > >> divisor = sqrt(sum); > >> fo

HTML Correctness and Validators

2008-12-28 Thread Xah Lee
/html_correctness.html plain text version follows. --- HTML Correctness and Validators Xah Lee, 2008-12-28 Some notes about html correctness and html validator. Condition Of Website Correctness My website “xahlee.org” has close to 4000 html files. All are valid html files. “Valid” here

Why not Ruby?

2008-12-31 Thread Xah Lee
Just spent 3 hours looking into Ruby today. Here's my short impression for those interested. * Why Not Ruby? http://xahlee.org/UnixResource_dir/writ/why_not_Ruby.html plain text version follows: -- Why Not Ruby? Xah Lee, 2008-12-31 Spent about 3

Re: programming by evolution?

2009-02-23 Thread Xah Lee
On Feb 23, 4:56 am, Roedy Green wrote: > On 19 Feb 2009 18:56:42 GMT, Albert van der Horst > wrote, quoted or indirectly quoted someone > who said : > > >Note here, that eXtreme > >>Programing is one of the snake oil, > > Extreme programming is a variant on Deming's idea of constant > incremental

Re: reading file to list

2009-02-25 Thread Xah Lee
On Feb 25, 3:34 am, nick_keighley_nos...@hotmail.com wrote: > the nasty cons then only appears in a single function which > you can hide in a library I think the following answers that. Q: If you don't like cons, lisp has arrays and hashmaps, too. A: Suppose there's a lang called gisp. In gisp,

Re: reading file to list

2009-02-25 Thread Xah Lee
On Feb 25, 10:18 am, Xah Lee wrote: > On Feb 25, 3:34 am, nick_keighley_nos...@hotmail.com wrote: > > > the nasty cons then only appears in a single function which > > you can hide in a library > > I think the following answers that. > > Q: If you don't like

Re: a look at the browser scene & emacs

2009-02-26 Thread Xah Lee
On Feb 26, 12:57 am, Miles Bader wrote: > There is ample room for people to discuss this evolution, but approaches > that start with "first, toss out the existing user interface" aren't gonna > fly. Who said to toss out existing user interface, you? Are you saying that i start my suggestion wit

Re: a look at the browser scene & emacs

2009-02-26 Thread Xah Lee
On Feb 26, 1:59 am, Tassilo Horn wrote: > Xah Lee writes: > > Hi Xah, > > > is the suggestion of using modern standard shortcut set of X C V for > > Cut, Copy, Paste, of which Linux uses, means it is turning emacs to a > > fancy Notepad clone? > > The func

Ban Xah Lee

2009-03-07 Thread Xah Lee
Of interest: • Why Can't You Be Normal? http://xahlee.org/Netiquette_dir/why_cant_you_be_normal.html • Ban Xah Lee http://xahlee.org/Netiquette_dir/ban_Xah_Lee.html I consider this post relevant because i've been perennially gossiped about in comp.lang.* groups today and in the pa

Which Lisp to Learn?

2009-03-07 Thread Xah Lee
Favorite Lisp Xah Lee, 2009-03-04 Javier wrote: “What open source implementation of Lisp do you prefer and why?” My fav is Emacs Lisp. Because it is practical. More or less the most widely used lisp today. Considered as a tool, it has probably some 10 times more users than either Common Lisp or

Re: Ban Xah Lee

2009-03-09 Thread Xah Lee
Christian wrote: On Mar 9, 1:22 pm, Christian wrote: > XahLeeschrieb:> Of interest: > > > • Why Can't You Be Normal? > > http://xahlee.org/Netiquette_dir/why_cant_you_be_normal.html > > IMHO the point that you never reply to responds is what makes it > problematic. > I have seen 10 or more t

Re: Ban Xah Lee

2009-03-27 Thread Xah Lee
esult: Machine Learning and Data Mining in Pattern Recognition: 5th International Conference, MLDM 2007, Leipzig, Germany, July 18-20, 2007, Proceedings (Lecture ... / Lecture Notes in Artificial Intelligence) (Paperback) by Petra Perner (Editor) http://books.google.com/books?id=CE1QzecoVf4C&pg=PA4

multi-core software

2009-06-04 Thread Xah Lee
Of interest: • Why Must Software Be Rewritten For Multi-Core Processors? http://xahlee.org/UnixResource_dir/writ/multi-core_software.html plain text version follows. -- Why Must Software Be Rewritten For Multi-Core Processors? Xah Lee, 2009-06

Re: The Complexity And Tedium of Software Engineering

2009-06-04 Thread Xah Lee
On Jun 3, 11:50 pm, Xah Lee wrote: > Of interest: > • The Complexity And Tedium of Software Engineering > http://xahlee.org/UnixResource_dir/writ/programer_frustration.html Addendum: The point in these short examples is not about software bugs or problems. It illustrates, how seemingl

Re: Python's doc problems: sort

2008-05-20 Thread Xah Lee
I offer the python community complete rewrite of the Python doc. The resulting doc would be one of the best technical writing among Open Source community's documentations. (a fair verification can be obtained by polling professional writers and editor community, e.g. staff writers of Time Mag or ot

Xah's Edu Corner: The Concepts and Confusions of Pre-fix, In-fix, Post-fix and Fully Functional Notations

2006-03-15 Thread Xah Lee
The Concepts and Confusions of Pre-fix, In-fix, Post-fix and Fully Functional Notations Xah Lee, 2006-03-15 Let me summarize: The LISP notation, is a functional notation, and is not a so-called pre-fix notation or algebraic notation. Algebraic notations have the concept of operators, meaning

Re: Xah's Edu Corner: The Concepts and Confusions of Pre-fix, In-fix, Post-fix and Fully Functional Notations

2006-03-16 Thread Xah Lee
Xah Lee wrote: « The Concepts and Confusions of Pre-fix, In-fix, Post-fix and Fully Functional Notations http://xahlee.org/UnixResource_dir/writ/notations.html » A side note: the terminology “Algebraic” Notation is a misnomer. It seems to imply that such notations have something to do with the

Re: Xah's Edu Corner: What is Expressiveness in a Computer Language

2006-03-19 Thread Xah Lee
What is Expressiveness in a Computer Language Xah Lee, 200502, 200603. In languages human or computer, there's a notion of expressiveness. English for example, is very expressive in manifestation, witness all the poetry and implications and allusions and connotations and dictions. There

Python has a new Logo

2006-03-23 Thread Xah Lee
Python has a new logo! See http://python.org/ And it is a fantastic logo. Xah [EMAIL PROTECTED] ∑ http://xahlee.org/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Python has a new Logo

2006-03-23 Thread Xah Lee
is there larger versions of the logo? and, any usage restrictions? i also like to find out the the artist name. Any pointer is appreciated. Thanks. Xah [EMAIL PROTECTED] ∑ http://xahlee.org/ Felipe Almeida Lessa wrote: > Em Qui, 2006-03-23 às 07:43 -0800, Xah Lee escreveu: > &g

A Lambda Logo Tour

2006-04-05 Thread Xah Lee
A Lambda Logo Tour (and why LISP languages using λ as logo should not be looked upon kindly) Xah Lee, 2002-02 Dear lispers, The lambda character λ, always struck a awe in me, as with other mathematical symbols. In my mind, i imagine that those obscure math symbolism are etched in stone by god

Xah's Edu Corner: Teach Ourself Programing In Ten Years?

2010-01-02 Thread Xah Lee
t version follows. ---------- The Condition of Industrial Programers Xah Lee, 2006-05 Before i stepped into the computing industry, my first industrial programing experience was at Wolfram Research Inc as a intern in 1995. (Wolfram Research is famously known for their highly su

Xah's Edu Corner: Unix Pipe As Functional Language

2010-01-25 Thread Xah Lee
Dear comrades, Hot from the press: • Unix Pipe As Functional Language http://xahlee.org/comp/unix_pipes_and_functional_lang.html plain text version follows: -- Unix Pipe As Functional Language Xah Lee, 2010-01-25 Found the following juicy

python 3's adoption

2010-01-26 Thread Xah Lee
Some thoughts about Python 3 Adoption. Xah Lee, 2010-01-26 Some notes of Wikipedia readings related to Python. Unladen Swallow, a new project from Google. It is a new python compiler with the goal of 5 times faster than the de facto standand implementation CPython. Also note Stackless Python

Re: python 3's adoption

2010-01-27 Thread Xah Lee
e_dir/why_cant_you_be_normal.html Xah On Jan 26, 7:12 pm, "Alf P. Steinbach" wrote: > * John Bokma: > > > "Alf P. Steinbach" writes: > > >> Please don't post more noise and ad hominem attacks to the group, > >> Steve. > > > Funny that you

Re: python 3's adoption

2010-01-27 Thread Xah Lee
On Jan 26, 3:47 pm, Xah Lee wrote: > * Many functions that return lists now returns “Views” or > “Iterators” Instead. A fucking fuck all fucked up shit. A extraneous > “oop engineering” complication. (See: Lambda in Python 3000) See also: “Iterators: Signs of Weakness in Object

Haskell's new logo, and the idiocy of tech geekers

2009-10-02 Thread Xah Lee
Haskell has a new logo. A fantastic one. Beautiful. For creator, context, detail, see bottom of: • A Lambda Logo Tour http://xahlee.org/UnixResource_dir/lambda_logo.html this is posted here because it relates to various computer software/ language's logo, a subject discussed by me several times

python admin abuse complaint

2010-02-02 Thread Xah Lee
This is a short complaint on admin abuse on #python irc channel on freenode.net. Here's a log: 2010-02-02 (12:11:57 PM) The topic for #python is: NO LOL | http://pound-python.org/ | It's too early to use Python 3.x | Pasting > 3 lines? Pastebin: http://paste.pocoo.org/ | Tutorial: http://docs.py

Python's Reference And Internal Model Of Computing Languages

2010-02-02 Thread Xah Lee
just wrote this essay. Comment & feedback very welcome. Python's Reference And Internal Model Of Computing Languages Xah Lee, 2010-02-02 In Python, there are 2 ways to clear a hash: “myHash = {}” and “myHash.clear()”. What is the difference? ↓ The difference is that “m

Re: Python's Reference And Internal Model Of Computing Languages

2010-02-02 Thread Xah Lee
()On Feb 2, 6:46 pm, Ryan Kelly wrote: > > On Tue, 2010-02-02 at 17:28 -0800, Xah Lee wrote: > > I know, I know, do not feed the trolls.  But this is just so *wrong* > that I can't help myself. > > > In Python, there are 2 ways to clear a hash: > > No, n

Re: python admin abuse complaint

2010-02-04 Thread Xah Lee
ank you. For anyone reading this thread and interested in my opinions, i have written many essays related to this and netiquette. Many of which detail other similar incidences that i personally experienced, such as freenode's irc ban in #emacs channel. If you are interested, they can be

NoSQL Movement?

2010-03-03 Thread Xah Lee
ng. So, i thought i'd post here to solicit some opinins from the programer community i know. Here's the plain text version - The NoSQL Movement Xah Lee, 2010-01-26 In the past few years, there's new fashionable thinking about anti relational database, now bl

Re: NoSQL Movement?

2010-03-08 Thread Xah Lee
obably number one among the world's user of databases, probably double or triple than the second user with the most large datasize. At that point, it seems logical that they need their own db, relational or not. Xah ∑ http://xahlee.org/ ☄ On Mar 4, 10:35 pm, John Nagle wrote: > Xah Lee wr

Re: NoSQL Movement?

2010-03-09 Thread Xah Lee
On Mar 8, 11:14 am, Duncan Booth wrote: > Xah Lee wrote: > > For example, consider, if you are within world's top 100th user of > > database in terms of database size, such as Google, then it may be > > that the off-the-shelf tools may be limiting. But how many users &g

Re: NoSQL Movement?

2010-03-10 Thread Xah Lee
scale it. Right, but that doesn't seems to have any relevance about my point. Many says that scalability is key to NoSQL, i pointed out that unless you are like google, or ranked top 1000 in the world in terms data size, the scalability reason isn't that strong. Xah Lee wrote: > man

Hacker News, Xahlee.Org, and What is Politics?

2010-03-15 Thread Xah Lee
A essay related to the recent discussion of banning, and lisp associated group at ycombinator.com . - Hacker News, Xahlee.Org, and What is Politics? Xah Lee, 2010-03-14 Today, i noticed that someone posted one of my article “Why Emacs is still so

Re: to RG - Lisp lunacy and Perl psychosis

2010-03-17 Thread Xah Lee
2010-03-17 On Mar 10, 9:17 am, Ben Morrow wrote: > Also, flamebait language-comparison xposts involving Lisp are one > of Xah Lee's trademarks. You might want to look into not imitating > him/her/it. being a professional programer today, typically you know more than just one language. Practical

Google AI challenge: planet war. Lisp won.

2010-12-02 Thread Xah Lee
discovered this rather late. Google has a AI Challenge: planet wars. http://ai-contest.com/index.php it started sometimes 2 months ago and ended first this month. the winner is Gábor Melis, with his code written in lisp. Congrats lispers! Gábor wrote a blog about it here http://quotenil.com/Pl

Re: Google AI challenge: planet war. Lisp won.

2010-12-22 Thread Xah Lee
On Dec 20, 10:06 pm, "Jon Harrop" wrote: > Wasn't that the "challenge" where they wouldn't even accept solutions > written in many other languages (including both OCaml and F#)? Ocaml is one of the supported lang. See: http://ai-contest.com/starter_packages.php there are 12 teams using OCaml. S

opinion: comp lang docs style

2011-01-04 Thread Xah Lee
a opinion piece. 〈The Idiocy of Computer Language Docs〉 http://xahlee.org/comp/idiocy_of_comp_lang.html -- The Idiocy of Computer Language Docs Xah Lee, 2011-01-03 Worked with Mathematica for a whole day yesterday, after about 10 years hiatus

Re: opinion: comp lang docs style

2011-01-06 Thread Xah Lee
On Jan 4, 3:17 pm, "ru...@yahoo.com" wrote: > On 01/04/2011 01:34 PM, Terry Reedy wrote: > > > On 1/4/2011 1:24 PM, an Arrogant Ignoramus wrote: > > > what he called > >> a opinion piece. > > > I normally do not respond to trolls, but while expressing his opinions, > > AI made statements that are

do you know what's CGI? (web history personal story)

2011-01-14 Thread Xah Lee
some extempore thought. Do you know what is CGI? Worked with Mathematica for 5 hours yesterday. Fantastic! This old hand can still do something! lol. My plane curve packages soon to be out n am gonna be rich. ...gosh what godly hours i've spend on Mathematica in 1990s. Surprised to find that i e

Re: do you know what's CGI? (web history personal story)

2011-01-15 Thread Xah Lee
7;s Point Of View. 〈Avatar and District 9 Movie Review〉 http://xahlee.org/Periodic_dosage_dir/skina/avatar.html ---------- Avatar and District 9 Movie Review Xah Lee, 2010-01-07 -- Avatar Went to watch the movie Avatar (2009 fil

Guy Steele on Parallel Programing

2011-02-05 Thread Xah Lee
might be interesting. 〈Guy Steele on Parallel Programing〉 http://xahlee.org/comp/Guy_Steele_parallel_computing.html -- Guy Steele on Parallel Programing Xah Lee, 2011-02-05 A fascinating talk by the well respected computer scientist Guy Steele

Re: How to Write grep in Emacs Lisp (tutorial)

2011-02-08 Thread Xah Lee
On Feb 8, 9:32 am, Icarus Sparry wrote: > On Tue, 08 Feb 2011 13:51:54 +0100, Petter Gustad wrote: > > Xah Lee writes: > > >> problem with find xargs is that they spawn grep for each file, which > >> becomes too slow to be usable. > > > find . -maxdepth

Re: How to Write grep in Emacs Lisp (tutorial)

2011-02-11 Thread Xah Lee
On Feb 11, 2:06 am, Alexander Gattin wrote: > Hello, > > On Tue, Feb 08, 2011 at 05:32:05PM +, Icarus > > Sparry wrote: > > The key thing which makes this 'modern' is the > > '+' at the end of the command, rather than '\;'. > > This causes find to execute the grep once per > > group of files,

Problems of Symbol Congestion in Computer Languages

2011-02-16 Thread Xah Lee
might be interesting. 〈Problems of Symbol Congestion in Computer Languages (ASCII Jam; Unicode; Fortress)〉 http://xahlee.org/comp/comp_lang_unicode.html -- Problems of Symbol Congestion in Computer Languages (ASCII Jam; Unicode; Fortress) Xah Lee

Re: Problems of Symbol Congestion in Computer Languages

2011-02-18 Thread Xah Lee
On 2011-02-16, Xah Lee  wrote: │ Vast majority of computer languages use ASCII as its character set. │ This means, it jams multitude of operators into about 20 symbols. │ Often, a symbol has multiple meanings depending on contex. On 2011-02-17, rantingrick wrote: … On 2011-02-17, Cthun wrote

Re: Problems of Symbol Congestion in Computer Languages

2011-02-18 Thread Xah Lee
i think for special purposes OSes, they have quite a lot ... from Mitsubishi, NEC, etc... in their huge robotics industry among others. (again, this is all second hand knowledge) ... i recall having read non-english comp lang that appeared recently... Xah Lee -- http://mail.python.org/mailman/listinfo/python-list

Emacs Form Feed (^L) Display Suggestion and Tips

2010-06-24 Thread Xah Lee
• Emacs Form Feed (^L) Display Suggestion and Tips http://xahlee.org/emacs/modernization_formfeed.html plain text version follows -- Emacs Form Feed (^L) Display Suggestion and Tips Xah Lee, 2010-06-24 This page discusses some problems involving the Form feed

Re: Emacs Form Feed (^L) Display Suggestion and Tips

2010-06-24 Thread Xah Lee
On Jun 24, 5:41 am, Xah Lee wrote: > • Emacs Form Feed (^L) Display Suggestion and Tips > http://xahlee.org/emacs/modernization_formfeed.html a follow up question. when i was learning python in ~2005, i remember seeing it in python code, but i haven't done much python since. Does py

Re: Emacs Form Feed (^L) Display Suggestion and Tips

2010-06-25 Thread Xah Lee
On Jun 24, 11:12 am, Tassilo Horn wrote: > Xah Lee writes: > > Hi Xah, > > > also, besides emacs elisp, does anyone see the form feed char in other > > lang source code? > > It's quite often used in messages in newsgroups and mailing lists.  The > Gnus n

Famous Emacs People With Hand Injuries

2010-06-28 Thread Xah Lee
• Famous Emacs People With Hand Injuries http://xahlee.org/emacs/emacs_hand_pain_celebrity.html plain text version follows. - Famous Emacs People With Hand Injuries Xah Lee, 2010-06-28 This page collect tales of computer programer

disputing the history of lisp machines

2010-06-28 Thread Xah Lee
just discovered a blog written by a old lisper Dan Weinreb, refuting on a story on Lisp Machine companies as told by Richard Stallman. “Rebuttal to Stallman’s Story About The Formation of Symbolics and LMI” (2007-11), by Dan Weinreb. At http://danweinreb.org/blog/rebuttal-to-stallmans-story-about-

death of newsgroups (Microsoft closing their newsgroups)

2010-07-13 Thread Xah Lee
• Death of Newsgroups http://xahlee.org/UnixResource_dir/writ2/death_of_newsgroups.html plain text version follows. -- Death of Newsgroups Xah Lee, 2010-07-13 Microsoft is closing down their newsgroups. See: microsoft.public.windows.powershell

have you read emacs manual cover to cover?; (was Do we need a "Stevens" book?)

2010-07-30 Thread Xah Lee
cleaned up and extended my previous post. Sentences and ideas made more precise and detailed. • Emacs Idolization: Have You Read the Emacs Manual From Cover to Cover? http://xahlee.org/emacs/emacs_manual_cover_to_cover.html plain text version follows: ---

a article on does lang influence thought

2010-08-10 Thread Xah Lee
Great article. 〈Lost in Translation〉 (2010-07-23), by By Lera Boroditsky. From The Wall Street Journal. “New cognitive research suggests that language profoundly influences the way people see the world; a different sense of blame in Japanese and Spanish” http://online.wsj.com/article/SB100014240

math symbols in unicode (grouped by purpose)

2010-08-13 Thread Xah Lee
some collection of math symbols in unicode. • Math Symbols in Unicode http://xahlee.org/comp/unicode_math_operators.html • Arrows in Unicode http://xahlee.org/comp/unicode_arrows.html • Matching Brackets in Unicode http://xahlee.org/comp/unicode_matching_brackets.html these are grouped by

Re: math symbols in unicode (grouped by purpose)

2010-08-15 Thread Xah Lee
hi kenny! Xah Lee wrote: > some collection of math symbols in unicode. > • Math Symbols in Unicode >    http://xahlee.org/comp/unicode_math_operators.html Kenneth Tilton wrote: > I am surprised you do not include the numeric character codes. i thought about it, but the page would

Re: What text editor is everyone using for Python

2009-06-05 Thread Xah Lee
On May 25, 10:35 am, LittleGrasshopper wrote: > With so many choices, I was wondering what editor is the one you > prefer when coding Python, and why. I normally use vi, and just got > into Python, so I am looking for suitable syntax files for it, and > extra utilities. I dabbled with emacs at som

is there python image lib that does imagemagick?

2009-06-08 Thread Xah Lee
is there a python image library that does pretty much what imagemagick does? all i need is for converting png/jpg, and scaling images. No need other fancy things imagemagick does. i know there's a python wrapper for imagemagick, but i need independent ones that doesn't require shell calls. Basica

a evaluation of Google-code-prettify

2009-06-21 Thread Xah Lee
For those of you interested in the Google tech of syntax coloring source code in html on the fly using javascript, i've spent few hours for a evaluation. See: • Google-code-prettify Examples http://xahlee.org/js/google-code-prettify/index.html Xah ∑ http://xahlee.org/ ☄ -- http://mail.pytho

talk of concurrency by Anders Hejlsberg and Guy Steele

2009-06-24 Thread Xah Lee
of recent talks about concurrency, this video interview would be of interest: http://channel9.msdn.com/posts/Charles/Anders-Hejlsberg-and-Guy-Steele-Concurrency-and-Language-Design/ Anders Hejlsberg and Guy Steele: Concurrency and Language Design Posted By: Charles | Oct 6th, 2008 @ 6:27 AM | 75,

OT: unix to Windows technology

2009-07-08 Thread Xah Lee
Dear unixers & lispers, i've been using Mac for the past 19 years, and been a professional sys admin or web app developers on the unix platform, since 1998 (maily Solaris, Apache, Perl, Java, SQL, PHP). In june, i bought a PC (not for the first time though), and made a switch to Windows, for the f

Re: OT: unix to Windows technology

2009-07-08 Thread Xah Lee
Xah Lee wrote: > • Switching from Mac/Unix To PC/Windows > http://xahlee.org/mswin/switch_to_windows.html Kenneth Tilton wrote: > You just discovered PCs are cheaper? > > The funny thing is that that is Microsoft's answer to the Apple Mac-PC > ads, they show people sho

Re: OT: unix to Windows technology

2009-07-09 Thread Xah Lee
a fried showed me this today: http://xahlee.org/funny/Microsoft_eula.html not sure which site originally reported it. Xah ∑ http://xahlee.org/ ☄ -- http://mail.python.org/mailman/listinfo/python-list

Re: If Scheme is so good why MIT drops it?

2009-07-25 Thread Xah Lee
PHP is popular because it is geared for the server-side web scripting lang, and simpler and easy to use, than popular free alternatives at the time (such as Perl and Java's JSP). Python became popular primarily because its ease-to-read syntax. Btween the two, PHP is much easier to use, and much a

Google sitemap generator in python gone?

2009-08-05 Thread Xah Lee
google used to have a sitemap generator written in python, at: https://www.google.com/webmasters/tools/docs/en/sitemap-generator.html but the url is gone. It seems the current version is moved here: http://code.google.com/p/googlesitemapgenerator/ and is written in JavaScript. is the old python

Social problems of Python doc [was Re: Python docs disappointing]

2009-08-09 Thread Xah Lee
The prob with python docs is with the python priests. there are frequent posts about python doc's poor quality, and some efforts to improve the doc (such as wiki or seggestions), about few times a year (in so much as i've seen), the typical response is pissing fight, with python priests to tell th

A Exhibition Of Tech Geekers Incompetence: Emacs whitespace-mode

2009-08-13 Thread Xah Lee
• A Exhibition Of Tech Geekers Incompetence: Emacs whitespace-mode http://xahlee.org/UnixResource_dir/writ/emacs_whitespace-mode_problems.html plane text version follows: -- A Exhibition Of Tech Geekers Incompetence: Emacs whitespace-mode Xah

Re: A Exhibition Of Tech Geekers Incompetence: Emacs whitespace-mode

2009-08-15 Thread Xah Lee
Fresh out of the oven: • How to use and setup Emacs's whitespace-mode http://xahlee.org/emacs/whitespace-mode.html Xah ∑ http://xahlee.org/ ☄ On Aug 13, 6:36 pm, Xah Lee wrote: > • A Exhibition Of Tech Geekers Incompetence: Emacs whitespace-mode > http://xahlee.org/UnixResour

Xah's Edu Corner: The importance of syntax & notations.

2009-08-15 Thread Xah Lee
Xah's Edu Corner: The importance of syntax & notations. http://www.stephenwolfram.com/publications/recent/mathml/mathml_abstract.html this article should teach the coding sophomorons and computer “science” idiotic authors who harbor the notion that syntax is not important, picked up by all the el

Re: Social problems of Python doc [was Re: Python docs disappointing]

2009-08-16 Thread Xah Lee
now valid html. Good riddence of the fucking TeX. Also, code examples have syntax coloring on. Xah ∑ http://xahlee.org/ ☄ On Aug 12, 12:15 pm, Raymond Hettinger wrote: > [Xah Lee] > > > i've wrote several articles about this issue, total time spend on this > > is prob

python doc available in emacs info format?

2009-08-16 Thread Xah Lee
e_dir/writ/lang_purity_cult_deception.html Xah ∑ http://xahlee.org/ ☄ On Dec 11 2008, 6:56 am, Matthias wrote: > Xah Lee writes: > > in programing elisp in emacs, i can press “Ctrl+h f” to lookup > > the doc for the function under cursor. is there such facility > > when c

Re: Xah's Edu Corner: The importance of syntax & notations.

2009-08-16 Thread Xah Lee
gh. I was expecting he'd go into some details about the science of math notations, or, as he put it aptly: “linguistics of math notations”. However, he didn't touch the subject, except saying that it haven't been studied. Xah On Aug 15, 10:54 pm, Xah Lee wrote: > Xah's E

Re: Social problems of Python doc [was Re: Python docs disappointing]

2009-08-16 Thread Xah Lee
On Aug 12, 12:15 pm, Raymond Hettinger wrote: > [Xah Lee] > > > i've wrote several articles about this issue, total time spend on this > > is probably more than 2 months full-time work. See: > > > • Python Documentation Problems > > http://xahlee.org/p

Re: python doc available in emacs info format?

2009-08-17 Thread Xah Lee
info format for Xah Lee writes: > in programing elisp in emacs, i can press “Ctrl+h f” to lookup > the doc for the function under cursor. is there such facility > when coding in perl, python, php? On Dec 11 2008, 6:56 am, Matthias wrote: > Yes, try C-h S (or similarly S):

Re: Xah's Edu Corner: The importance of syntax & notations.

2009-08-17 Thread Xah Lee
2009-08-17 On Aug 16, 10:32 pm, Xah Lee wrote: > Personally, particular interesting info i've learned is that, for all > my trouble in the past decade expressing problems of traditional math > notation, i learned from his article this single-phrase summary: > “traditional math

<    1   2   3   4   5   6   >