Spanish News

My personal blog

Booth Babe Contest - AdTech Update

So I thought it would be fun to get my pic with all the booth babes and have a poll on who thought what company had the best booth babes (also known as booth bunnies). You can see them in the gallery. I will post the poll soon. On another topic seeing all these companies and the [...] (Read on Source)



The Widening World of Widgets

What's a widget? According to Widgipedia, "a widget is a small application that runs on your desktop or in a Web page. Widgets enrich your desktop or Web pages with functionary, useful information and a lot of fun." So what's Widgipedia? That's a Web site dedicated to widgets of all kinds. There are several different kinds.


Influence: Using flawed expert opinion to influenc...

Influence: Using flawed expert opinion to influenc... Influence: Using flawed expert opinion to influence legislation : The same cannot be said of the testimony of Harvard Professors David Himmelstein and Elizabeth Warren, purported to be generally applicable social science. In fact, it was junk. Blandly entitled "Illness and Injury as Contributors to Bankruptcy," their long-discredited 2005 study ... (Read on Source)


Talk is Cheap for Colin Powell, Who Gives Cash to John McCai

Despite meeting with many of the '08 presidential candidates, general and former secretary of state only maxes out primary money giving for Airzona senator.


CDGcommerce Announces Free Online Payment Gateway Program

Merchants no longer have to pay gateway and gateway per transaction fees for online payment processing. (PRWeb Aug 22, 2007) Post Comment:Trackback URL: http://www.prweb.com/pingpr.php/SW5zZS1QaWdnLUZhbHUtSGFsZi1UaGlyLVplcm8=


Senator Edwards Knows What Is Good For Us By Betsy Newmark

The nanny state will get that much bigger under a President Edwards. He would require everyone to get preventative checkups. Democratic presidential hopeful John Edwards said on Sunday that his universal health care proposal would require that Americans go to... (Read on Source)


Linux Kernel ALSA snd_mem_proc_read Information Disclosure Vulnerability

... Linux Kernel ALSA snd_mem_proc_read Information Disclosure Vulnerability Posted on 26 September 2007 Sent to Full-Disclosure list ...


Real to Reel: A weekly film-flam session

Daunte Culpepper and Jamal Lewis made their points, while Matt Schaub and Darrell Jackson did not. It was a big week for reunions in the NFL, with seven key players and coaches facing their former teams for the first time. (Read on Source)


SearchBrains

On the cusp of one amazing week, TopRanks blogging team brings you another fine batch of SEO/SEM blogs to be inducted into the biglist. There are a few gems in here so be sure to fire up your RSS reader and start subscribing. Get Elastic Ecommerce Blog - The team at Vancouver BC based Elastic Path, [...]... (Read on Source)


A new Rails plugin for TextLinkAds (including support for Feedvertising)

Change of Strategy

Instead of updating my constantly breaking Typo sidebar plugin, and to implement Feedvertising from TextLinkAds, I?ve changed gears and chosen to implement just a regular plugin (very close to the new way of doing sidebar plugins in typo 4.1). This approach should work in all versions of typo, as well as any other Ruby on Rails?s application.

The support for feedvertising is slightly different than the one from the Wordpress plugin that is the only option offered so far, but should be fairly close.

Installation

Get the plugin from subversion:

script/plugin install http://svn.nanorails.com/plugins/textlinkads/

or to use svn:externals and get future updates via svn update

script/plugin install -x http://svn.nanorails.com/plugins/textlinkads/

The installation will copy a file textlinkads.yml into your config directory.

The file looks like this:
key: TLA_KEY affiliateid: 0 title: Sponsors advertisehere: Advertise here! testing: false caching: true 

Replace TLA_KEY with the one provided by TextLinkAds, set your affiliateid if you?d like to have a link to TextLinkAds with your affiliate id (so you can get credit if someone signs up for a TextLinkAds account). Change the title and advertisehere messages if you don?t like the defaults.

Set testing to false once you?ve verified it works (while testing=true, the plugin will use a special page provided by TextLinkAds that displays to links. However, that page does not contain any RSS links)

Finally, if the caching done by Rails is not enough, the plugin can cache the calls to retrieve the links. See the caching section for explanations on how to setup caching.

Integrating with Typo

Adding the display of regular links

To add the regular TextLinkAds links, you need to add a call to render_TLA anywhere in the rendering code. In typo, the most likely place is in your template?s default.rhtml

Here?s what my template looks like
 <div id="sidebar">   ...   <div class="sidebar-node"><%= render_TLA %></div>   <% response.lifetime = 6.hour %>   <%= render_sidebars %> </div>
to replace the original:
 <div id="sidebar">   <%= render_sidebars %> </div> 

Add the RSS links

For RSS2.0 for example, edit the file app/views/xml/_rss20_item_article.rxml to add a call to render_TLA_RSS(post_id)

here?s the original file:

   xm.item do     xm.title post_title(item)     if this_blog.show_extended_on_rss       content = item.full_html     else       content = item.body_html     end     xm.description content     xm.pubDate pub_date(item.published_at)     ... 
 xm.item do   xm.title post_title(item)   if this_blog.show_extended_on_rss     content = item.full_html   else     content = item.body_html   end   content += render_TLA_RSS(item.id)   response.lifetime = 6.hour   xm.description content   xm.pubDate pub_date(item.published_at) 

Depending of which format you need, you may need to edit a different file.

That?s it.

Integrating with other apps

For other apps, just take a similar approach and add calls to render_TLA and render_TLA_RSS where most appropriate. Both calls are accessible from any Controller or Helper class.

Caching

Set ?caching: true? in textlinkads.yml. Make sure Rails is configured with some caching. Typically, you need to have

 config.action_controller.perform_caching = true config.action_controller.fragment_cache_store = :file_store, "#{RAILS_ROOT}/tmp/cache"  

either set from config/environment.rb or config/environment/[CURRENT ENVIRONMENT].rb

This will cache the pages where the ads appear, and cache the feed pages. But to make sure these pages will update properly if the TextLinkAds ads inventory is updated, you must ensure the cache will expire.

The best way to do that is to use the expiring_cache_action plugin. To install:

script/plugin install http://typosphere.org/trac/browser/trunk/vendor/plugins/expiring_action_cache
Then where you added calls to render_TLA, just add:
response.lifetime = 6.hour

This way, the cached page will expire 6 hours later so that would be the lapse of time to wait to see the updated ads.

No need to expire the cache for RSS, it should get expired automatically every time an article is added.

If you use this plugin in other applications, add a comment or send me a not (psq_0×40_nanorails_0×2e_com) and I?ll add a link to your instructions or code.


Gears of War (GoW) Glitches: Host Out of Act 3 - Downpour

Tactical third-person shooter video game Gears of War Glitches: Host Out of Act 3 - Downpour


Website Architecture Questions Answered, Part III

Website Architecture Questions Answered, Part III Last week I was privileged to conduct a webinar on the topic of Website Architecture. Unfortunately I was only able to get to two of the three main topics due to time and my inability to not talk so much! Overall I think we covered the two areas we got to, URL & Domain Structure and Link Structure, pretty sufficiently. (Read on Source)


All Blacks and Boks in emergency ref summit

South Africa coach Peter de Villiers and his New Zealand counterpart Graham Henry will meet with Australian referee Matt Goddard tomorrow to discuss officiating standards in the Tri-Nations.


Dudes ready to abide at Lebowski Fest '08

Dudes ready to abide at Lebowski Fest '08 The latest incarnation of Lebowski Fest kicks off tonight in Louisville, Ky., celebrating all things Big Lebowski. Some of the posters for previous Lewbowski Fests had bowling themes (including one with bowling-ball boobs), which made sense even to those without an encyclopedic knowledge of the 1998 Coen brothers film. This year?s poster, above, (Read on Source)


Microsoft Sets the Record Straight - MarketWatch


Sify

Microsoft Sets the Record Straight
MarketWatch - 40 minutes ago
REDMOND, Wash., July 14, 2008 /PRNewswire-FirstCall via COMTEX/ -- On the evening of July 12, Yahoo! Inc. released a statement relating to recent discussions involving Yahoo!
Yahoo shares fall on rejection of Microsoft offer CNNMoney.com
Yahoo's Response to Icahn Wall Street Journal
Forbes - New York Times - Bloomberg - guardian.co.uk
all 1,401 news articles


Google Gadget Tries To Transcribe What Politicians Say (TechWeb)

TechWeb - InformationWeek - The Google Elections Video Search gadget uses speech recognition to transcribed and index speeches by politicians and others.


Direct mail tries to go green. No, really.

A group of direct-marketing companies, along with a handful of their corporate clients, are banding together to make an inherently unsustainable practice at least a little bit greener.


Climate change science and government action: Interview on KPFK-FM Los Angeles

CSW director Rick Piltz was interviewed on July 21 on the new federal scientific assessment of the effects of climate change on human health and welfare in the US, the Bush administration?s record, Al Gore?s speech on transforming the energy system, and the role of government. (Read on Source)


Astronomers Describe The Bar Scene At The Beginning Of The Universe

Bars abound in spiral galaxies today, but this was not always the case. Astronomers have found that bars tripled in number over the past seven billion years, indicating that spiral galaxies evolve in shape.


New: Quick Guide to Podcasts, Webcasts & Other Digital Media Files

New from the Science Reference Service at the Library of Congress: Podcasts, Webcasts & Other Digital Media Files in Science, Technology, and Medicine Source: LC (Read on Source)


SEOs Like Links From Blog

SEOs Like Links From Blog A week or so ago, I wrote a piece named Are Links From Blogs As Valuable These Days? In short, some SEOs are now against buying or obtaining links from most blogs. They feel that Google may be devaluing the once golden, blog link (yes, I am generalizing). So I decided to run a poll to see how our readers perceive links from blogs. The results ... (Read on Source)


Check contact info, registrar to see if Web site is legitimate

... are better than others in screening customers. Same goes for the companies that provide Web hosting. In fact, people often use the same company for both. People routinely provide false ...


Welcome to the new CNET

The yellow and green CNET pages are history as we have officially launched our new site design and several new features to millions of users.


Galápagos Album: Face to face

Galápagos Album: Face to face (Click for larger image) Read the comments on this post... (Read on Source)


Microsoft Adds More Perks to Live Search

Microsoft has gotten some flack for the perks it has offered via Live Search to gain ground in the search advertising market, but that isn't stopping the company from launching another search-rewards offer for the distant third most popular search engine.

Wired.com


Simpson jury explains guilty verdict

Simpson jury explains guilty verdict LAS VEGAS (AP) -- Jurors who convicted O.J. Simpson of armed robbery and kidnapping said Sunday that they did not trust witness testimony and instead relied on recordings and other documented evidence to convict the former football star. (Read on Source)


Writing For Someone Who Doesn't Have A Clue

What a great article written by Deb Ng over at FreelanceWritingGigs.com which is a little ranty at times but explains the perils of writing or working for someone who doesn't have a clue. In this piece, Deb explains what it's been like for her to write for someone who doesn't have a clue about blogging. Notable quotes from her story are: During ... (Read on Source)


Rays-Phillies - ESPN


CBC.ca

Rays-Phillies
ESPN - 46 minutes ago
Perhaps a return to their hitter-friendly park will help awaken the Philadelphia Phillies' slumbering bats. Garza is slated to take the mound Saturday night, when the Rays and Phillies try to dodge the raindrops at Citizens Bank Park in Game 3 of the ...
Moyer making a difference off the field USA Today
Soaking rains could wash out World Series game Houston Chronicle
Boston Globe - San Diego Union Tribune - Boston Herald - Rocky Mountain News
all 562 news articles


iNFRENION.com now offers VPS servers hosted in UK datacenter

... All US and UK VPS servers are fully managed VPS servers ideal for FFmpeg web hosting or shoutcast streaming applications. It is the perfect solution for customers who have outgrown ...