Arc Forumnew | comments | leaders | submitlogin
pageonetimes.com - powered by arc (pageonetimes.com)
21 points by antiismist 5883 days ago | 19 comments


7 points by antiismist 5883 days ago | link

Here is the site that I have been working on--a sports news aggregator. For people who think that sports news should be on the front page of the paper.

-----

6 points by sacado 5883 days ago | link

That's usually the page I don't read ;) but I like the style you gave to your site (except the "+" link, which reads like "+-" at first sight)

-----

2 points by antiismist 5882 days ago | link

I have gotten a couple comments about the + looking like a + and a -, so I added

  a {text-decoration: none;} 
to the stylesheet, which maybe takes care of that problem.

Does that look better?

-----

3 points by almkglor 5882 days ago | link

Much, much better. Would you mind some more additional (hopefully constructive) criticisms?

-----

2 points by antiismist 5882 days ago | link

Yeah keep it coming. I really appreciate the feedback

-----

3 points by almkglor 5882 days ago | link

My current major objection is the size of the headlines, which I think should be larger. Alternatively make the summaries shorter. How do you generate the summaries?

Also, the bottommost part appears too ragged for me. Some amount of measurement may be possible.

A final suggestion: perhaps make the highest-ranked 1 or 2 headlines near the top of the page in even larger text (in addition to the headline+summary currently on the page.). The top headlines in large text should maybe be just headlines, no summary, but put an anchor link to the headline+summary version in the rest of the page. Basically, something a little like the banner headline of the front page of a newspaper.

-----

2 points by antiismist 5882 days ago | link

Thanks for the feedback. The summaries are put in manually when the comment is posted, so nothing fancy. In practice one just has to remember to grab some text before using the bookmarklet (which fills in the rest).

A lot of people have said that the ragged bottom takes away a bit from the look and feel. There doesn't seem to be an easy way to fix that. The best I can come up with is to try and estimate the line height of each story, and if it exceeds a certain amount then truncate it, but only if it is on a page w/ other stories.

I'll play around with the top-top headlines idea. Is it inline with the look and feel of newspapers.

Thanks for the suggestions!

-----

Edit: The headlines are now bigger. It is better, thanks!

I moved them from 1em to 1.25em after trying it via firebug.

-----

2 points by almkglor 5882 days ago | link

Regarding summaries, I think it would be possible to actually pull some text using Arc (although currently there seems to be no decent way to open a client connection, and certainly there don't seem to be any libraries for client-side HTTP). Of course the summarization would have to be done too. Hmm.

-----

1 point by antiismist 5882 days ago | link

What I could do is if you use the bookmarklet, then it will pull in a best guess as to what the summary is and put it into the box. Then the user can edit that if they want. That wouldn't be too hard.

With ajax I could do the same thing once the user fills in the url.

-----

3 points by almkglor 5881 days ago | link

IMO the hard part is the "best guess". ^^ I've been looking for papers about summarization and haven't found much. Hmm. Maybe look at the title and try to fetch words around words in the title, i.e. use the title's terms as search terms.

-----

3 points by antiismist 5881 days ago | link

There is an easy way and a hard way to do it. For most articles, if you take the first element in the DOM that is a paragraph and contains above a certain number of words, then I am guessing that would most times be the leader paragraph.

The second easy way is to do the above most of the time, but have some site-specific things that are used instead.

You could also use some classifying software to ID the proper paragraph. You could have a training set of all the descriptions that have been on the site before, and find text that most matches that text, and use that. Or find the first bit of text that matches beyond a certain threshold, and use that.

The hardest way is to automatically generate a summary. I work in the automated document analysis business, and this is indeed pretty hard to do.

-----

3 points by sacado 5882 days ago | link

Yes, it looks really good now !

-----

2 points by antiismist 5883 days ago | link

That's a good point with the + looking like a + and a -, I'll add that to the to-do list.

-----

4 points by wfarr 5883 days ago | link

Very nice!

As usual, I'm interested in your deployment method, and perhaps getting a gander at the source to see what approaches you might've taken to certain problems. =)

-----

5 points by antiismist 5883 days ago | link

For my deployment method, see this thread for the hosting details: http://arclanguage.com/item?id=4288

My code is a little rough - I am working on cleaning it up. Send me an email to pageonetimes@idoh.com and I will send it when it is ready.

If you're stuck on any problems or have any questions, ask away!

-----

3 points by tokipin 5883 days ago | link

nice! well i know you didn't ask for cosmetic tips, but i think the titles are (slightly) too small/underemphasized (or other things are slightly overemphasized)

-----

3 points by antiismist 5883 days ago | link

Thanks for the tip! I'l add that to the to-investigate list. I am trying to cram as much info into the page as possible, and it is hard to hit the right balance.

-----

6 points by pg 5882 days ago | link

Wow. That's great.

-----

4 points by antiismist 5881 days ago | link

Thanks for releasing the source code for news. I am having a fun time working through it and I am learning a lot about Arc in the process.

-----