"I have a mind like a steel... uh... thingy." Patrick Logan's weblog.

Search This Blog

Saturday, October 25, 2008

Factor Talk at Galois

From the pdxfunc email list...
Factor is a programming language which has been in development for a little over 5 years. Factor is influenced by Forth, Lisp, Smalltalk. Factor takes the best ideas from Forth -- simplicity, short, succint, code, emphasis on interactive testing, and meta-programming. Factor also brings modern high-level language features such as garbage collection, object orientation and functional programming familiar to users of languages such as Lisp, Smalltalk and Python...

In this talk, I will give the rationale for Factor's creation, present an overview of the language, and show how Factor can be used to solve real-world problems with a minimum of fuss. At the same time, I will emphasize Factor's extensible syntax, meta-programming and reflection capabilities, and show that these features, which are unheard of in the world of mainstream programming languages, make programs easier to write, more robust, and fun.

Friday, October 24, 2008

Enterprise 2.0

Bob Warfield writes...

"Very little in the way of Enterprise Software has properly understood
the potential impact the web has on that niche or how to even begin to
respond to it."

http://smoothspan.wordpress.com/2008/10/21/is-enterprise-20-a-real-trend-or-a-bubble-that-has-burst/

Every success I have seen in enterprise IT has been based on making
essential data better, and/or making the technology of getting to that
data simpler. Web 2.0, and by extension Enterprise 2.0, is about
"social" computing. The societies withing and around an enterprise are
by necessity based on the core information of that enterprise.

The web now *is* the way to make data better and accessing it simpler.
If the future of your enterprise IT is not making it more like the
web, what the heck *is* the future of your enterprise?

Intel p0wned by Apple

http://blog.oregonlive.com/siliconforest/2008/10/intel_backtracks_after_trashin.html

Smalltalk and CPUs

Interesting stuff from OOPSLA 2008 re: Smalltalk and CPUs -
historical, and multiple.

http://goran.krampe.se/blog/OOPSLA/OOPSLA08-more.rdoc

Thursday, October 23, 2008

Antennae for Flex

If you're doing Flex then try Antennae esp. if you like the SDK more
than Eclipse. Provides a lot of tools, templates, utils. Ant-based.

http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&postId=7322&productId=2

Wednesday, October 22, 2008

Facts, More or Less

From the Oregonian today (surry, no link)...

* 12 - percentage of Republicans who believed in June that Obama is a Muslim
* 14 - percentage now

Finally...
* 90 - perentage of the human brain that consists of fat.

Can't we just get the election over with?

Somebody's really going to F something up in the next two weeks...

http://timrileylive.wordpress.com/2008/10/22/818/

Monday, October 20, 2008

Smalltalk Superpowers

Michael L-S's report out on the Smalltalk Superpowers day at OOPSLA...

"After each snippet, the group would give it thumbs up or thumbs down.
Thumbs down meaning it's evil and thumbs up meaning it's good. We
generally judged by whether we would want to use this technique for an
actual production system.. it's a sign of success if you get all
thumbs down in my opinion :)...

When we have an evil talk, we dim the lights. When we have a "for
good" we turn the lights back on. It adds to the atmosphere."

http://www.cincomsmalltalk.com/userblogs/mls/blogView?showComments=true&printTitle=Smalltalk_Superpowers__OOPSLA_08&entry=3401977970

Sunday, October 19, 2008

P&G Goes Direct, More Or Less

Financial Times on Proctor and Gamble's moves toward direct-selling products over the web...

Procter & Gamble is testing its ability to use the internet to sell its toothpaste, household cleaners and nappies directly to US households, in a potential long-term strategic challenge to its retail partners...

In another indication of the flux, Wal-Mart, P&G’s largest customer, is hiring a strategy executive whose tasks include assessing the potential effect of direct-to-consumer sales by its own suppliers.

Nappies? Oh yeah... Financial Times is a UK publication.

Emacs: Query Replace Over Multiple Files

I've received a number of comments on my earlier Query Replace post. Today Kaom Te asked about query replace over multiple files.

One of my favorite shell commands is "find" and in particular, emacs supports "find" as part of its "dired" mode. (dired == directory editing)

Type "meta-x find-dired" and emacs will prompt you through the arguments to "find" multiple files in various ways. The result is a dired buffer listing all the matching files, which you can operate on as with any dired buffer, including query/replace.

The other common way to query and replace over multiple files is to use "tags". Tag files are like indexes you build over various kinds of sources. Tag files can be built for multiple source directories and files in C, Java, Lisp, Erlang, HTML, etc.

Then, of course, there is an emacs function called "tags-query-replace" which will perform a query/replace over the files in your TAGS file with fewer steps than using "find-dired". Tags have many other uses as well since they understand the definitions of the source format, e.g. "meta-." can be used to open a buffer on the definition of the name currently under the cursor ("point" in emacs).

Blog Archive

About Me

Portland, Oregon, United States
I'm usually writing from my favorite location on the planet, the pacific northwest of the u.s. I write for myself only and unless otherwise specified my posts here should not be taken as representing an official position of my employer. Contact me at my gee mail account, username patrickdlogan.