Are there any libraries that can extract structured web content as
represented visually in the browser?
I realize I could write regexes and extract using the HTML, but I was
wondering if there was something that worked with the browser-rendered
representation. I.e., something a tad more human-
So, fundamentally, it's an architecture for dealing with "trivially
parallel" problems? Would that be an accurate summary?
(Not to imply your problems are trivial.)
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email t
At the risk of sounding incredibly uneducated about the matter (oh wait,
it's true):
What is the purpose/need/reason for this kind of architecture? What can you
do with it? Where would you use it? Why would you use it?
Thanks,
Jonathan
--
You received this message because you are subscrib
> Java has a lack of this top-down processing, and it sometimes causes
> problems because the order in which static initializers will execute
> is not generally predictable.
If you're programming with a side-effect free functional approach,
that shouldn't be a problem right?
Or are you saying tha
With C# inside of Visual Studio, I have very good IDE support for top-
down design. If I use an undeclared method, it is displayed in red,
with a tooltip saying "Cannot resolve symbol '[symbol name]'". A
context menu provides me "generate > method stub", which will do what
it says, and add parame
t coll)))
>
> (defn sum [coll]
> (apply + coll))
>
> On Feb 21, 11:05 pm, Jonathan Mitchem wrote:
>
>
>
>
>
>
>
> > I'm new to Lisps in general, and very new to Clojure.
>
> > When I was trying out CL, I could put my "defun/defn"s i
eclare sum)
>
> (defn average [coll]
> (/ (sum coll) (count coll)))
>
> (defn sum [coll]
> (apply + coll))
>
> On Feb 21, 11:05 pm, Jonathan Mitchem wrote:
>
>
>
>
>
>
>
> > I'm new to Lisps in general, and very new to Clojure.
>
&
I'm new to Lisps in general, and very new to Clojure.
When I was trying out CL, I could put my "defun/defn"s in any order in
the file, and it would load and run fine in the REPL. However, in
Clojure, it seems to be much more C/C++-like and I have to define
things before I use them in other defns.